2018-03-17 18:26:18 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module GithubImport
|
|
|
|
# The ParallelImporter schedules the importing of a GitHub project using
|
|
|
|
# Sidekiq.
|
|
|
|
class ParallelImporter
|
|
|
|
attr_reader :project
|
|
|
|
|
|
|
|
def self.async?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.imports_repository?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
# This is a workaround for a Ruby 2.3.7 bug. rspec-mocks cannot restore
|
|
|
|
# the visibility of prepended modules. See
|
|
|
|
# https://github.com/rspec/rspec-mocks/issues/1231 for more details.
|
|
|
|
if Rails.env.test?
|
|
|
|
def self.requires_ci_cd_setup?
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def initialize(project)
|
|
|
|
@project = project
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
|
|
|
jid = generate_jid
|
|
|
|
|
|
|
|
# The original import JID is the JID of the RepositoryImportWorker job,
|
|
|
|
# which will be removed once that job completes. Reusing that JID could
|
|
|
|
# result in StuckImportJobsWorker marking the job as stuck before we get
|
|
|
|
# to running Stage::ImportRepositoryWorker.
|
|
|
|
#
|
|
|
|
# We work around this by setting the JID to a custom generated one, then
|
|
|
|
# refreshing it in the various stages whenever necessary.
|
|
|
|
Gitlab::SidekiqStatus
|
|
|
|
.set(jid, StuckImportJobsWorker::IMPORT_JOBS_EXPIRATION)
|
|
|
|
|
2018-12-23 12:14:25 +05:30
|
|
|
project.import_state.update_column(:jid, jid)
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
Stage::ImportRepositoryWorker
|
|
|
|
.perform_async(project.id)
|
|
|
|
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def generate_jid
|
|
|
|
"github-importer/#{project.id}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|