31 lines
1,006 B
Ruby
31 lines
1,006 B
Ruby
module Gitlab
|
|
module BitbucketImport
|
|
class ProjectCreator
|
|
attr_reader :repo, :namespace, :current_user, :session_data
|
|
|
|
def initialize(repo, namespace, current_user, session_data)
|
|
@repo = repo
|
|
@namespace = namespace
|
|
@current_user = current_user
|
|
@session_data = session_data
|
|
end
|
|
|
|
def execute
|
|
project = ::Projects::CreateService.new(
|
|
current_user,
|
|
name: repo["name"],
|
|
path: repo["slug"],
|
|
description: repo["description"],
|
|
namespace_id: namespace.id,
|
|
visibility_level: repo["is_private"] ? Gitlab::VisibilityLevel::PRIVATE : Gitlab::VisibilityLevel::PUBLIC,
|
|
import_type: "bitbucket",
|
|
import_source: "#{repo["owner"]}/#{repo["slug"]}",
|
|
import_url: "ssh://git@bitbucket.org/#{repo["owner"]}/#{repo["slug"]}.git",
|
|
).execute
|
|
|
|
project.create_import_data(data: { "bb_session" => session_data } )
|
|
project
|
|
end
|
|
end
|
|
end
|
|
end
|