2015-04-26 12:48:37 +05:30
|
|
|
module Gitlab
|
|
|
|
module GithubImport
|
|
|
|
class Importer
|
|
|
|
attr_reader :project, :client
|
|
|
|
|
|
|
|
def initialize(project)
|
|
|
|
@project = project
|
2015-09-25 12:07:36 +05:30
|
|
|
import_data = project.import_data.try(:data)
|
|
|
|
github_session = import_data["github_session"] if import_data
|
|
|
|
@client = Client.new(github_session["github_access_token"])
|
2015-04-26 12:48:37 +05:30
|
|
|
@formatter = Gitlab::ImportFormatter.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
2016-01-14 18:37:52 +05:30
|
|
|
import_issues
|
|
|
|
import_pull_requests
|
|
|
|
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def import_issues
|
2015-09-11 14:41:01 +05:30
|
|
|
client.list_issues(project.import_source, state: :all,
|
|
|
|
sort: :created,
|
2016-01-14 18:37:52 +05:30
|
|
|
direction: :asc).each do |raw_data|
|
|
|
|
gh_issue = IssueFormatter.new(project, raw_data)
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
if gh_issue.valid?
|
|
|
|
issue = Issue.create!(gh_issue.attributes)
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
if gh_issue.has_comments?
|
|
|
|
import_comments(gh_issue.number, issue)
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
2016-01-14 18:37:52 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def import_pull_requests
|
|
|
|
client.pull_requests(project.import_source, state: :all,
|
|
|
|
sort: :created,
|
|
|
|
direction: :asc).each do |raw_data|
|
|
|
|
pull_request = PullRequestFormatter.new(project, raw_data)
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
if !pull_request.cross_project? && pull_request.valid?
|
|
|
|
merge_request = MergeRequest.create!(pull_request.attributes)
|
|
|
|
import_comments(pull_request.number, merge_request)
|
|
|
|
import_comments_on_diff(pull_request.number, merge_request)
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
def import_comments(issue_number, noteable)
|
|
|
|
comments = client.issue_comments(project.import_source, issue_number)
|
|
|
|
create_comments(comments, noteable)
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
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)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_comments(comments, noteable)
|
|
|
|
comments.each do |raw_data|
|
|
|
|
comment = CommentFormatter.new(project, raw_data)
|
|
|
|
noteable.notes.create!(comment.attributes)
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|