Newer
Older
credentials = project.import_data.credentials if import_data
@client = Client.new(credentials[:user])
@formatter = Gitlab::ImportFormatter.new
import_issues && import_pull_requests && import_wiki
end
private
def import_issues
client.list_issues(project.import_source, state: :all,
sort: :created,
Douglas Barbosa Alexandre
committed
direction: :asc).each do |raw_data|
gh_issue = IssueFormatter.new(project, raw_data)
Douglas Barbosa Alexandre
committed
if gh_issue.valid?
issue = Issue.create!(gh_issue.attributes)
Douglas Barbosa Alexandre
committed
if gh_issue.has_comments?
import_comments(gh_issue.number, issue)
Douglas Barbosa Alexandre
committed
rescue ActiveRecord::RecordInvalid => e
raise Projects::ImportService::Error, e.message
def import_pull_requests
client.pull_requests(project.import_source, state: :all,
sort: :created,
direction: :asc).each do |raw_data|
Douglas Barbosa Alexandre
committed
pull_request = PullRequestFormatter.new(project, raw_data)
Douglas Barbosa Alexandre
committed
if pull_request.valid?
merge_request = MergeRequest.new(pull_request.attributes)
if merge_request.save
import_comments(pull_request.number, merge_request)
import_comments_on_diff(pull_request.number, merge_request)
end
Douglas Barbosa Alexandre
committed
end
Douglas Barbosa Alexandre
committed
rescue ActiveRecord::RecordInvalid => e
raise Projects::ImportService::Error, e.message
Douglas Barbosa Alexandre
committed
def import_comments(issue_number, noteable)
comments = client.issue_comments(project.import_source, issue_number)
create_comments(comments, noteable)
end
Douglas Barbosa Alexandre
committed
def import_comments_on_diff(pull_request_number, merge_request)
comments = client.pull_request_comments(project.import_source, pull_request_number)
create_comments(comments, merge_request)
Douglas Barbosa Alexandre
committed
def create_comments(comments, noteable)
comments.each do |raw_data|
comment = CommentFormatter.new(project, raw_data)
noteable.notes.create!(comment.attributes)
def import_wiki
unless project.wiki_enabled?
wiki = WikiFormatter.new(project)
gitlab_shell.import_repository(wiki.path_with_namespace, wiki.import_url)
project.update_attribute(:wiki_enabled, true)
end
Douglas Barbosa Alexandre
committed
rescue Gitlab::Shell::Error => e
Douglas Barbosa Alexandre
committed
# GitHub error message when the wiki repo has not been created,
# this means that repo has wiki enabled, but have no pages. So,
# we can skip the import.
if e.message !~ /repository not exported/
raise Projects::ImportService::Error, e.message
Douglas Barbosa Alexandre
committed
else
Douglas Barbosa Alexandre
committed
true
Douglas Barbosa Alexandre
committed
end