Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2015-12-22 02:17:57 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-01-05 20:24:55 +0300
commit6c846ef83d51a176002027e89245a4ea62b4f2bf (patch)
treebdf1ea57687336dd99928dc66a44d4fa992021c6 /lib
parentd72b25811e3f0b722ae1c0906e2fe7dffd312403 (diff)
Extract methods to import comments on a GitHub Pull Request
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/github_import/importer.rb52
1 files changed, 28 insertions, 24 deletions
diff --git a/lib/gitlab/github_import/importer.rb b/lib/gitlab/github_import/importer.rb
index f8a9e0d55ab..2c64f5cebc7 100644
--- a/lib/gitlab/github_import/importer.rb
+++ b/lib/gitlab/github_import/importer.rb
@@ -56,7 +56,6 @@ module Gitlab
target_branch = find_branch(pull_request.base.ref)
if source_branch && target_branch
- # Pull Request
merge_request = MergeRequest.create!(
title: pull_request.title,
description: format_body(pull_request.user.login, pull_request.body),
@@ -71,33 +70,38 @@ module Gitlab
updated_at: pull_request.updated_at
)
- # Comments on Pull Request
- client.issue_comments(project.import_source, pull_request.number).each do |c|
- merge_request.notes.create!(
- project: project,
- note: format_body(c.user.login, c.body),
- author_id: gl_author_id(project, c.user.id),
- created_at: c.created_at,
- updated_at: c.updated_at
- )
- end
-
- # Comments on Pull Request diff
- client.pull_request_comments(project.import_source, pull_request.number).each do |c|
- merge_request.notes.create!(
- project: project,
- note: format_body(c.user.login, c.body),
- commit_id: c.commit_id,
- line_code: generate_line_code(c.path, c.position),
- author_id: gl_author_id(project, c.user.id),
- created_at: c.created_at,
- updated_at: c.updated_at
- )
- end
+ import_comments_on_pull_request(merge_request, pull_request)
+ import_comments_on_pull_request_diff(merge_request, pull_request)
end
end
end
+ def import_comments_on_pull_request(merge_request, pull_request)
+ client.issue_comments(project.import_source, pull_request.number).each do |c|
+ merge_request.notes.create!(
+ project: project,
+ note: format_body(c.user.login, c.body),
+ author_id: gl_author_id(project, c.user.id),
+ created_at: c.created_at,
+ updated_at: c.updated_at
+ )
+ end
+ end
+
+ def import_comments_on_pull_request_diff(merge_request, pull_request)
+ client.pull_request_comments(project.import_source, pull_request.number).each do |c|
+ merge_request.notes.create!(
+ project: project,
+ note: format_body(c.user.login, c.body),
+ commit_id: c.commit_id,
+ line_code: generate_line_code(c.path, c.position),
+ author_id: gl_author_id(project, c.user.id),
+ created_at: c.created_at,
+ updated_at: c.updated_at
+ )
+ end
+ end
+
def find_branch(name)
project.repository.find_branch(name)
end