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

31 lines
914 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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)
@repo = repo
@namespace = namespace
2015-01-27 23:37:19 +00:00
@current_user = current_user
@session_data = session_data
2015-01-27 23:37:19 +00:00
end
def execute
::Projects::CreateService.new(
2015-12-15 02:53:52 +00:00
current_user,
name: repo["name"],
path: repo["path"],
description: repo["description"],
namespace_id: namespace.id,
2018-05-15 13:39:33 +00:00
visibility_level: Gitlab::VisibilityLevel.level_value(repo["visibility"]),
import_type: "gitlab",
import_source: repo["path_with_namespace"],
import_url: repo["http_url_to_repo"].sub("://", "://oauth2:#{@session_data[:gitlab_access_token]}@")
).execute
2015-01-27 23:37:19 +00:00
end
end
end
end