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
diff options
context:
space:
mode:
authorGabriel Mazetto <brodock@gmail.com>2017-03-16 12:42:58 +0300
committerGabriel Mazetto <brodock@gmail.com>2017-04-03 13:45:31 +0300
commita3e65ef021c3c1ba90adf58654c2856001cf009a (patch)
treec3848b29ecb6e90c049dc4540ff809f510fb1f02 /lib/gitlab/github_import
parentfee8dcde1960470b6c9890993f0dfd08dfc63ed1 (diff)
Fix GitHub importer for PRs of deleted forked repositories
Diffstat (limited to 'lib/gitlab/github_import')
-rw-r--r--lib/gitlab/github_import/branch_formatter.rb4
-rw-r--r--lib/gitlab/github_import/pull_request_formatter.rb20
2 files changed, 20 insertions, 4 deletions
diff --git a/lib/gitlab/github_import/branch_formatter.rb b/lib/gitlab/github_import/branch_formatter.rb
index 5d29e698b27..48bed8fc296 100644
--- a/lib/gitlab/github_import/branch_formatter.rb
+++ b/lib/gitlab/github_import/branch_formatter.rb
@@ -11,6 +11,10 @@ module Gitlab
sha.present? && ref.present?
end
+ def user
+ raw_data.user.login
+ end
+
private
def branch_exists?
diff --git a/lib/gitlab/github_import/pull_request_formatter.rb b/lib/gitlab/github_import/pull_request_formatter.rb
index add7236e339..3326fe4bf18 100644
--- a/lib/gitlab/github_import/pull_request_formatter.rb
+++ b/lib/gitlab/github_import/pull_request_formatter.rb
@@ -1,8 +1,8 @@
module Gitlab
module GithubImport
class PullRequestFormatter < IssuableFormatter
- delegate :exists?, :project, :ref, :repo, :sha, to: :source_branch, prefix: true
- delegate :exists?, :project, :ref, :repo, :sha, to: :target_branch, prefix: true
+ delegate :user, :exists?, :project, :ref, :repo, :sha, to: :source_branch, prefix: true
+ delegate :user, :exists?, :project, :ref, :repo, :sha, to: :target_branch, prefix: true
def attributes
{
@@ -39,13 +39,23 @@ module Gitlab
def source_branch_name
@source_branch_name ||= begin
if cross_project?
- "pull/#{number}/#{source_branch_repo.full_name}/#{source_branch_ref}"
+ if source_branch_repo
+ "pull/#{number}/#{source_branch_repo.full_name}/#{source_branch_ref}"
+ else
+ "pull/#{number}/#{source_branch_user}/#{source_branch_ref}"
+ end
else
source_branch_exists? ? source_branch_ref : "pull/#{number}/#{source_branch_ref}"
end
end
end
+ def source_branch_exists?
+ return false if cross_project?
+
+ source_branch.exists?
+ end
+
def target_branch
@target_branch ||= BranchFormatter.new(project, raw_data.base)
end
@@ -57,7 +67,9 @@ module Gitlab
end
def cross_project?
- source_branch.repo.id != target_branch.repo.id
+ return true if source_branch_repo.nil?
+
+ source_branch_repo.id != target_branch_repo.id
end
def opened?