2018-11-09 13:39:43 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-01-27 18:37:19 -05:00
|
|
|
module Gitlab
|
|
|
|
module GitlabImport
|
|
|
|
class ProjectCreator
|
2015-08-07 03:06:20 -04:00
|
|
|
attr_reader :repo, :namespace, :current_user, :session_data
|
2015-01-27 18:37:19 -05:00
|
|
|
|
2016-06-14 10:31:03 -04:00
|
|
|
def initialize(repo, namespace, current_user, session_data)
|
|
|
|
@repo = repo
|
|
|
|
@namespace = namespace
|
2015-01-27 18:37:19 -05:00
|
|
|
@current_user = current_user
|
2016-06-14 10:31:03 -04:00
|
|
|
@session_data = session_data
|
2015-01-27 18:37:19 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
2016-06-13 14:35:57 -04:00
|
|
|
::Projects::CreateService.new(
|
2015-12-14 21:53:52 -05:00
|
|
|
current_user,
|
2016-06-14 10:31:03 -04:00
|
|
|
name: repo["name"],
|
|
|
|
path: repo["path"],
|
|
|
|
description: repo["description"],
|
|
|
|
namespace_id: namespace.id,
|
2018-05-15 09:39:33 -04:00
|
|
|
visibility_level: Gitlab::VisibilityLevel.level_value(repo["visibility"]),
|
2016-06-14 10:31:03 -04:00
|
|
|
import_type: "gitlab",
|
|
|
|
import_source: repo["path_with_namespace"],
|
|
|
|
import_url: repo["http_url_to_repo"].sub("://", "://oauth2:#{@session_data[:gitlab_access_token]}@")
|
2015-04-06 08:51:09 -04:00
|
|
|
).execute
|
2015-01-27 18:37:19 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|