Newer
Older
Douglas Barbosa Alexandre
committed
attr_reader :client, :project, :repo, :repo_url
@project = project
@repo = project.import_source
Douglas Barbosa Alexandre
committed
@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
client.labels(repo).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
client.list_milestones(repo, 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(repo, state: :all, sort: :created, direction: :asc).each do |raw_data|
Douglas Barbosa Alexandre
committed
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) }
.select(&:valid?)
Douglas Barbosa Alexandre
committed
source_branches_removed = pull_requests.reject(&:source_branch_exists?).map { |pr| [pr.source_branch_name, pr.source_branch_sha] }
target_branches_removed = pull_requests.reject(&:target_branch_exists?).map { |pr| [pr.target_branch_name, pr.target_branch_sha] }
Douglas Barbosa Alexandre
committed
branches_removed = source_branches_removed | target_branches_removed
create_refs(branches_removed)
Douglas Barbosa Alexandre
committed
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
delete_refs(branches_removed)
Douglas Barbosa Alexandre
committed
Douglas Barbosa Alexandre
committed
rescue ActiveRecord::RecordInvalid => e
raise Projects::ImportService::Error, e.message
Douglas Barbosa Alexandre
committed
def create_refs(branches)
branches.each do |name, sha|
client.create_ref(repo, "refs/heads/#{name}", sha)
Douglas Barbosa Alexandre
committed
end
end
def delete_refs(branches)
branches.each do |name, _|
client.delete_ref(repo, "heads/#{name}")
Douglas Barbosa Alexandre
committed
end
end
def apply_labels(number, issuable)
issue = client.issue(repo, 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(repo, issue_number)
Douglas Barbosa Alexandre
committed
create_comments(comments, noteable)
end
Douglas Barbosa Alexandre
committed
def import_comments_on_diff(pull_request_number, merge_request)
comments = client.pull_request_comments(repo, pull_request_number)
Douglas Barbosa Alexandre
committed
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