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

53 lines
1.4 KiB
Ruby
Raw Normal View History

2014-12-31 08:07:48 -05:00
module Gitlab
2015-02-02 17:26:29 -05:00
module GithubImport
2014-12-31 08:07:48 -05:00
class ProjectCreator
include Gitlab::CurrentSettings
2016-10-17 11:58:57 -04:00
attr_reader :repo, :name, :namespace, :current_user, :session_data, :type
2014-12-31 08:07:48 -05:00
2016-10-17 11:58:57 -04:00
def initialize(repo, name, namespace, current_user, session_data, type: 'github')
2014-12-31 08:07:48 -05:00
@repo = repo
@name = name
2014-12-31 08:07:48 -05:00
@namespace = namespace
@current_user = current_user
@session_data = session_data
2016-10-17 11:58:57 -04:00
@type = type
2014-12-31 08:07:48 -05:00
end
def execute
::Projects::CreateService.new(
current_user,
name: name,
path: name,
2014-12-31 08:07:48 -05:00
description: repo.description,
namespace_id: namespace.id,
visibility_level: visibility_level,
2016-10-17 11:58:57 -04:00
import_type: type,
2014-12-31 08:07:48 -05:00
import_source: repo.full_name,
import_url: import_url,
skip_wiki: skip_wiki
).execute
end
private
2016-08-01 18:31:21 -04:00
def import_url
2016-10-17 11:58:57 -04:00
repo.clone_url.sub('://', "://#{session_data[:github_access_token]}@")
end
def visibility_level
repo.private ? Gitlab::VisibilityLevel::PRIVATE : current_application_settings.default_project_visibility
end
2016-08-01 18:31:21 -04:00
#
# If the GitHub project repository has wiki, we should not create the
# default wiki. Otherwise the GitHub importer will fail because the wiki
# repository already exist.
#
def skip_wiki
repo.has_wiki?
end
2014-12-31 08:07:48 -05:00
end
end
end