Newer
Older
Douglas Barbosa Alexandre
committed
attr_reader :client, :project, :repo, :repo_url
Douglas Barbosa Alexandre
committed
@repo = project.import_source
@repo_url = project.import_url
if credentials
@client = Client.new(credentials[:user])
@formatter = Gitlab::ImportFormatter.new
else
raise Projects::ImportService::Error, "Unable to find project import data credentials for project ID: #{@project.id}"
end
import_labels && import_milestones && import_issues &&
import_pull_requests && import_wiki
Douglas Barbosa Alexandre
committed
def credentials
@credentials ||= project.import_data.credentials if project.import_data
def import_labels
client.labels(project.import_source).each do |raw_data|
Label.create!(LabelFormatter.new(project, raw_data).attributes)
end
true
rescue ActiveRecord::RecordInvalid => e
raise Projects::ImportService::Error, e.message
end
def import_milestones
client.list_milestones(project.import_source, state: :all).each do |raw_data|
Milestone.create!(MilestoneFormatter.new(project, raw_data).attributes)
end
true
rescue ActiveRecord::RecordInvalid => e
raise Projects::ImportService::Error, e.message
end
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)
apply_labels(gh_issue.number, issue)
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
Douglas Barbosa Alexandre
committed
pull_requests = client.pull_requests(repo, state: :all, sort: :created, direction: :asc)
.map { |raw| PullRequestFormatter.new(project, raw) }
.reject(&:cross_project?)
source_branches_removed = pull_requests.reject(&:source_branch_exists?)
source_branches_removed.each do |pull_request|
client.create_ref(repo, "refs/heads/#{pull_request.source_branch}", pull_request.source_sha)
end
project.repository.fetch_ref(repo_url, '+refs/heads/*', 'refs/heads/*')
pull_requests.each do |pull_request|
merge_request = MergeRequest.new(pull_request.attributes)
if merge_request.save
apply_labels(pull_request.number, merge_request)
import_comments(pull_request.number, merge_request)
import_comments_on_diff(pull_request.number, merge_request)
Douglas Barbosa Alexandre
committed
end
Douglas Barbosa Alexandre
committed
source_branches_removed.each do |pull_request|
client.delete_ref(repo, "heads/#{pull_request.source_branch}")
end
Douglas Barbosa Alexandre
committed
rescue ActiveRecord::RecordInvalid => e
raise Projects::ImportService::Error, e.message
def apply_labels(number, issuable)
issue = client.issue(project.import_source, number)
if issue.labels.count > 0
label_ids = issue.labels.map do |raw|
Label.find_by(LabelFormatter.new(project, raw).attributes).try(:id)
end
issuable.update_attribute(:label_ids, label_ids)
end
end
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