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
|
2015-08-07 03:06:20 -04:00
|
|
|
attr_reader :repo, :namespace, :current_user, :session_data
|
2014-12-31 08:07:48 -05:00
|
|
|
|
2015-08-07 03:06:20 -04:00
|
|
|
def initialize(repo, namespace, current_user, session_data)
|
2014-12-31 08:07:48 -05:00
|
|
|
@repo = repo
|
|
|
|
@namespace = namespace
|
|
|
|
@current_user = current_user
|
2015-08-07 03:06:20 -04:00
|
|
|
@session_data = session_data
|
2014-12-31 08:07:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
2016-03-21 08:15:51 -04:00
|
|
|
::Projects::CreateService.new(
|
2015-08-07 03:06:20 -04:00
|
|
|
current_user,
|
2014-12-31 08:07:48 -05:00
|
|
|
name: repo.name,
|
|
|
|
path: repo.name,
|
|
|
|
description: repo.description,
|
2015-04-06 08:51:09 -04:00
|
|
|
namespace_id: namespace.id,
|
2014-12-31 08:07:48 -05:00
|
|
|
visibility_level: repo.private ? Gitlab::VisibilityLevel::PRIVATE : Gitlab::VisibilityLevel::PUBLIC,
|
|
|
|
import_type: "github",
|
|
|
|
import_source: repo.full_name,
|
2016-03-21 08:15:51 -04:00
|
|
|
import_url: repo.clone_url.sub("https://", "https://#{@session_data[:github_access_token]}@"),
|
2016-01-06 18:15:37 -05:00
|
|
|
wiki_enabled: !repo.has_wiki? # If repo has wiki we'll import it later
|
2015-04-06 08:51:09 -04:00
|
|
|
).execute
|
2016-03-04 06:21:53 -05:00
|
|
|
end
|
2014-12-31 08:07:48 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|