ebf98f27c4
Enables frozen string for the following: * lib/gitlab/fogbugz_import/**/*.rb * lib/gitlab/gfm/**/*.rb * lib/gitlab/git/**/*.rb * lib/gitlab/gitaly_client/**/*.rb * lib/gitlab/gitlab_import/**/*.rb * lib/gitlab/google_code_import/**/*.rb * lib/gitlab/gpg/**/*.rb * lib/gitlab/grape_logging/**/*.rb * lib/gitlab/graphql/**/*.rb * lib/gitlab/graphs/**/*.rb * lib/gitlab/hashed_storage/**/*.rb * lib/gitlab/health_checks/**/*.rb Partially address gitlab-org/gitlab-ce#47424.
30 lines
914 B
Ruby
30 lines
914 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module GitlabImport
|
|
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
|
|
::Projects::CreateService.new(
|
|
current_user,
|
|
name: repo["name"],
|
|
path: repo["path"],
|
|
description: repo["description"],
|
|
namespace_id: namespace.id,
|
|
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
|
|
end
|
|
end
|
|
end
|
|
end
|