summaryrefslogtreecommitdiff
path: root/lib/github
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2017-10-03 21:07:52 +0200
committerRémy Coutable <remy@rymai.me>2017-10-05 10:48:26 +0200
commitf96b4f41412b4e974fe77a1b58d6570252fd62d9 (patch)
tree7350f49840ef9a23d4ae5f4ca60fc7e6dcbf078c /lib/github
parent80e4fee782b8903d8f16dfc34548cc137a82dba2 (diff)
downloadgitlab-ce-f96b4f41412b4e974fe77a1b58d6570252fd62d9.tar.gz
Fetch the remote if a PR has been created/updated after the last fetch
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'lib/github')
-rw-r--r--lib/github/import.rb18
1 files changed, 14 insertions, 4 deletions
diff --git a/lib/github/import.rb b/lib/github/import.rb
index 38b7f349c2b..239cf53075c 100644
--- a/lib/github/import.rb
+++ b/lib/github/import.rb
@@ -9,7 +9,7 @@ module Github
include Gitlab::ShellAdapter
attr_reader :project, :repository, :repo, :repo_url, :wiki_url,
- :options, :errors, :cached, :verbose
+ :options, :errors, :cached, :verbose, :last_fetched_at
def initialize(project, options = {})
@project = project
@@ -21,12 +21,13 @@ module Github
@verbose = options.fetch(:verbose, false)
@cached = Hash.new { |hash, key| hash[key] = Hash.new }
@errors = []
+ @last_fetched_at = nil
end
# rubocop: disable Rails/Output
def execute
puts 'Fetching repository...'.color(:aqua) if verbose
- fetch_repository
+ setup_and_fetch_repository
puts 'Fetching labels...'.color(:aqua) if verbose
fetch_labels
puts 'Fetching milestones...'.color(:aqua) if verbose
@@ -52,19 +53,24 @@ module Github
private
- def fetch_repository
+ def setup_and_fetch_repository
begin
project.ensure_repository
project.repository.add_remote('github', repo_url)
project.repository.set_import_remote_as_mirror('github')
project.repository.add_remote_fetch_config('github', '+refs/pull/*/head:refs/merge-requests/*/head')
- project.repository.fetch_remote('github', forced: true)
+ fetch_remote(forced: true)
rescue Gitlab::Git::Repository::NoRepository, Gitlab::Shell::Error => e
error(:project, repo_url, e.message)
raise Github::RepositoryFetchError
end
end
+ def fetch_remote(forced: false)
+ @last_fetched_at = Time.now
+ project.repository.fetch_remote('github', forced: forced)
+ end
+
def fetch_wiki_repository
return if project.wiki.repository_exists?
@@ -144,6 +150,10 @@ module Github
next unless merge_request.new_record? && pull_request.valid?
begin
+ # If the PR has been created/updated after we last fetched the
+ # remote, we fetch again to get the up-to-date refs.
+ fetch_remote if pull_request.updated_at > last_fetched_at
+
author_id = user_id(pull_request.author, project.creator_id)
description = format_description(pull_request.description, pull_request.author)