gitlab-org--gitlab-foss/lib/gitlab/gitlab_import/project_creator.rb

31 lines
948 B
Ruby
Raw Normal View History

2015-01-27 23:37:19 +00:00
module Gitlab
module GitlabImport
class ProjectCreator
attr_reader :repo, :namespace, :current_user, :session_data
2015-01-27 23:37:19 +00:00
def initialize(repo, namespace, current_user, session_data)
2015-01-27 23:37:19 +00:00
@repo = repo
@namespace = namespace
@current_user = current_user
@session_data = session_data
2015-01-27 23:37:19 +00:00
end
def execute
project = ::Projects::CreateService.new(current_user,
2015-01-27 23:37:19 +00:00
name: repo["name"],
path: repo["path"],
description: repo["description"],
namespace_id: namespace.id,
2015-01-27 23:37:19 +00:00
visibility_level: repo["visibility_level"],
import_type: "gitlab",
import_source: repo["path_with_namespace"],
import_url: repo["http_url_to_repo"].sub("://", "://oauth2:#{@session_data[:gitlab_access_token]}@")
).execute
project.create_import_data(data: { "gitlab_session" => session_data } )
project
2015-01-27 23:37:19 +00:00
end
end
end
end