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

37 lines
1.1 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
attr_reader :repo, :namespace, :current_user, :session_data
2014-12-31 08:07:48 -05:00
def initialize(repo, name, namespace, current_user, session_data)
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
2014-12-31 08:07:48 -05:00
end
def execute
2016-08-01 18:31:21 -04:00
project = ::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: repo.private ? Gitlab::VisibilityLevel::PRIVATE : ApplicationSetting.current.default_project_visibility,
2014-12-31 08:07:48 -05:00
import_type: "github",
import_source: repo.full_name,
2016-08-01 18:31:21 -04:00
import_url: repo.clone_url.sub("https://", "https://#{@session_data[:github_access_token]}@")
).execute
2016-08-01 18:31:21 -04:00
# If repo has wiki we'll import it later
if repo.has_wiki? && project
project.project_feature.update_attribute(:wiki_access_level, ProjectFeature::DISABLED)
end
project
end
2014-12-31 08:07:48 -05:00
end
end
end