debian-mirror-gitlab/lib/gitlab/github_import/importer.rb

182 lines
5.8 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
module Gitlab
module GithubImport
class Importer
include Gitlab::ShellAdapter
2016-09-13 17:45:13 +05:30
attr_reader :client, :errors, :project, :repo, :repo_url
2015-04-26 12:48:37 +05:30
def initialize(project)
2016-06-02 11:05:42 +05:30
@project = project
@repo = project.import_source
@repo_url = project.import_url
2016-09-13 17:45:13 +05:30
@errors = []
2016-06-02 11:05:42 +05:30
if credentials
@client = Client.new(credentials[:user])
else
raise Projects::ImportService::Error, "Unable to find project import data credentials for project ID: #{@project.id}"
end
2015-04-26 12:48:37 +05:30
end
def execute
2016-09-13 17:45:13 +05:30
import_labels
import_milestones
import_issues
import_pull_requests
import_wiki
handle_errors
true
end
private
2016-06-02 11:05:42 +05:30
def credentials
@credentials ||= project.import_data.credentials if project.import_data
end
2016-09-13 17:45:13 +05:30
def handle_errors
return unless errors.any?
project.update_column(:import_error, {
message: 'The remote data could not be fully imported.',
errors: errors
}.to_json)
end
2016-06-02 11:05:42 +05:30
def import_labels
labels = client.labels(repo, per_page: 100)
2016-06-02 11:05:42 +05:30
2016-09-13 17:45:13 +05:30
labels.each do |raw|
begin
LabelFormatter.new(project, raw).create!
rescue => e
errors << { type: :label, url: Gitlab::UrlSanitizer.sanitize(raw.url), errors: e.message }
end
end
2016-06-02 11:05:42 +05:30
end
def import_milestones
milestones = client.milestones(repo, state: :all, per_page: 100)
2016-06-02 11:05:42 +05:30
2016-09-13 17:45:13 +05:30
milestones.each do |raw|
begin
MilestoneFormatter.new(project, raw).create!
rescue => e
errors << { type: :milestone, url: Gitlab::UrlSanitizer.sanitize(raw.url), errors: e.message }
end
end
2016-06-02 11:05:42 +05:30
end
def import_issues
issues = client.issues(repo, state: :all, sort: :created, direction: :asc, per_page: 100)
2015-04-26 12:48:37 +05:30
issues.each do |raw|
gh_issue = IssueFormatter.new(project, raw)
2015-04-26 12:48:37 +05:30
if gh_issue.valid?
2016-09-13 17:45:13 +05:30
begin
issue = gh_issue.create!
apply_labels(issue)
import_comments(issue) if gh_issue.has_comments?
rescue => e
errors << { type: :issue, url: Gitlab::UrlSanitizer.sanitize(raw.url), errors: e.message }
end
end
end
end
def import_pull_requests
pull_requests = client.pull_requests(repo, state: :all, sort: :created, direction: :asc, per_page: 100)
pull_requests = pull_requests.map { |raw| PullRequestFormatter.new(project, raw) }.select(&:valid?)
2016-06-02 11:05:42 +05:30
pull_requests.each do |pull_request|
2016-09-13 17:45:13 +05:30
begin
restore_source_branch(pull_request) unless pull_request.source_branch_exists?
restore_target_branch(pull_request) unless pull_request.target_branch_exists?
merge_request = pull_request.create!
apply_labels(merge_request)
import_comments(merge_request)
import_comments_on_diff(merge_request)
rescue => e
errors << { type: :pull_request, url: Gitlab::UrlSanitizer.sanitize(pull_request.url), errors: e.message }
ensure
clean_up_restored_branches(pull_request)
end
2015-04-26 12:48:37 +05:30
end
end
2016-09-13 17:45:13 +05:30
def restore_source_branch(pull_request)
project.repository.fetch_ref(repo_url, "pull/#{pull_request.number}/head", pull_request.source_branch_name)
end
2016-09-13 17:45:13 +05:30
def restore_target_branch(pull_request)
project.repository.create_branch(pull_request.target_branch_name, pull_request.target_branch_sha)
2016-06-22 15:30:34 +05:30
end
2016-09-13 17:45:13 +05:30
def remove_branch(name)
project.repository.delete_branch(name)
rescue Rugged::ReferenceError
errors << { type: :remove_branch, name: name }
2015-04-26 12:48:37 +05:30
end
2016-09-13 17:45:13 +05:30
def clean_up_restored_branches(pull_request)
remove_branch(pull_request.source_branch_name) unless pull_request.source_branch_exists?
remove_branch(pull_request.target_branch_name) unless pull_request.target_branch_exists?
2016-08-24 12:49:21 +05:30
project.repository.after_remove_branch
2016-06-02 11:05:42 +05:30
end
def apply_labels(issuable)
issue = client.issue(repo, issuable.iid)
2016-06-02 11:05:42 +05:30
if issue.labels.count > 0
2016-09-13 17:45:13 +05:30
label_ids = issue.labels
.map { |raw| LabelFormatter.new(project, raw).attributes }
.map { |attrs| Label.find_by(attrs).try(:id) }
.compact
2016-06-02 11:05:42 +05:30
issuable.update_attribute(:label_ids, label_ids)
end
end
def import_comments(issuable)
comments = client.issue_comments(repo, issuable.iid, per_page: 100)
create_comments(issuable, comments)
end
2015-04-26 12:48:37 +05:30
def import_comments_on_diff(merge_request)
comments = client.pull_request_comments(repo, merge_request.iid, per_page: 100)
create_comments(merge_request, comments)
end
def create_comments(issuable, comments)
comments.each do |raw|
2016-09-13 17:45:13 +05:30
begin
comment = CommentFormatter.new(project, raw)
issuable.notes.create!(comment.attributes)
rescue => e
errors << { type: :comment, url: Gitlab::UrlSanitizer.sanitize(raw.url), errors: e.message }
end
end
2015-04-26 12:48:37 +05:30
end
def import_wiki
unless project.wiki_enabled?
wiki = WikiFormatter.new(project)
2016-08-24 12:49:21 +05:30
gitlab_shell.import_repository(project.repository_storage_path, wiki.path_with_namespace, wiki.import_url)
project.update_attribute(:wiki_enabled, true)
end
2016-01-29 22:53:50 +05:30
rescue Gitlab::Shell::Error => e
2016-04-02 18:10:28 +05:30
# 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/
2016-09-13 17:45:13 +05:30
errors << { type: :wiki, errors: e.message }
2016-01-29 22:53:50 +05:30
end
end
2015-04-26 12:48:37 +05:30
end
end
end