Class: Gitlab::GoogleCodeImport::ProjectCreator
- Inherits:
-
Object
- Object
- Gitlab::GoogleCodeImport::ProjectCreator
- Defined in:
- lib/gitlab/google_code_import/project_creator.rb
Instance Attribute Summary collapse
-
#current_user ⇒ Object
readonly
Returns the value of attribute current_user.
-
#namespace ⇒ Object
readonly
Returns the value of attribute namespace.
-
#repo ⇒ Object
readonly
Returns the value of attribute repo.
-
#user_map ⇒ Object
readonly
Returns the value of attribute user_map.
Instance Method Summary collapse
- #execute ⇒ Object
-
#initialize(repo, namespace, current_user, user_map = nil) ⇒ ProjectCreator
constructor
A new instance of ProjectCreator.
Constructor Details
#initialize(repo, namespace, current_user, user_map = nil) ⇒ ProjectCreator
Returns a new instance of ProjectCreator.
8 9 10 11 12 13 |
# File 'lib/gitlab/google_code_import/project_creator.rb', line 8 def initialize(repo, namespace, current_user, user_map = nil) @repo = repo @namespace = namespace @current_user = current_user @user_map = user_map end |
Instance Attribute Details
#current_user ⇒ Object (readonly)
Returns the value of attribute current_user
6 7 8 |
# File 'lib/gitlab/google_code_import/project_creator.rb', line 6 def current_user @current_user end |
#namespace ⇒ Object (readonly)
Returns the value of attribute namespace
6 7 8 |
# File 'lib/gitlab/google_code_import/project_creator.rb', line 6 def namespace @namespace end |
#repo ⇒ Object (readonly)
Returns the value of attribute repo
6 7 8 |
# File 'lib/gitlab/google_code_import/project_creator.rb', line 6 def repo @repo end |
#user_map ⇒ Object (readonly)
Returns the value of attribute user_map
6 7 8 |
# File 'lib/gitlab/google_code_import/project_creator.rb', line 6 def user_map @user_map end |
Instance Method Details
#execute ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/gitlab/google_code_import/project_creator.rb', line 15 def execute ::Projects::CreateService.new( current_user, name: repo.name, path: repo.name, description: repo.summary, namespace: namespace, creator: current_user, visibility_level: Gitlab::VisibilityLevel::PUBLIC, import_type: "google_code", import_source: repo.name, import_url: repo.import_url, import_data: { data: { 'repo' => repo.raw_data, 'user_map' => user_map } } ).execute end |