Class: Gitlab::BitbucketImport::ProjectCreator

Inherits:
Object
  • Object
show all
Defined in:
lib/gitlab/bitbucket_import/project_creator.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(repo, name, namespace, current_user, session_data) ⇒ ProjectCreator

Returns a new instance of ProjectCreator.



8
9
10
11
12
13
14
# File 'lib/gitlab/bitbucket_import/project_creator.rb', line 8

def initialize(repo, name, namespace, current_user, session_data)
  @repo = repo
  @name = name
  @namespace = namespace
  @current_user = current_user
  @session_data = session_data
end

Instance Attribute Details

#current_userObject (readonly)

Returns the value of attribute current_user.



6
7
8
# File 'lib/gitlab/bitbucket_import/project_creator.rb', line 6

def current_user
  @current_user
end

#nameObject (readonly)

Returns the value of attribute name.



6
7
8
# File 'lib/gitlab/bitbucket_import/project_creator.rb', line 6

def name
  @name
end

#namespaceObject (readonly)

Returns the value of attribute namespace.



6
7
8
# File 'lib/gitlab/bitbucket_import/project_creator.rb', line 6

def namespace
  @namespace
end

#repoObject (readonly)

Returns the value of attribute repo.



6
7
8
# File 'lib/gitlab/bitbucket_import/project_creator.rb', line 6

def repo
  @repo
end

#session_dataObject (readonly)

Returns the value of attribute session_data.



6
7
8
# File 'lib/gitlab/bitbucket_import/project_creator.rb', line 6

def session_data
  @session_data
end

Instance Method Details

#executeObject



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/gitlab/bitbucket_import/project_creator.rb', line 16

def execute
  ::Projects::CreateService.new(
    current_user,
    name: name,
    path: name,
    description: repo.description,
    namespace_id: namespace.id,
    visibility_level: repo.visibility_level,
    import_type: 'bitbucket',
    import_source: repo.full_name,
    import_url: repo.clone_url(session_data[:token]),
    import_data: { credentials: session_data },
    skip_wiki: skip_wiki
  ).execute
end