debian-mirror-gitlab/lib/gitlab/github_import/parallel_importer.rb

50 lines
1.2 KiB
Ruby
Raw Normal View History

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
2021-11-18 22:05:49 +05:30
def self.track_start_import(project)
Gitlab::Import::Metrics.new(:github_importer, project).track_start_import
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
2020-04-22 19:07:51 +05:30
Gitlab::Import::SetAsyncJid.set_jid(project.import_state)
2018-03-17 18:26:18 +05:30
2022-01-26 12:08:38 +05:30
# We need to track this job's status for use by Gitlab::GithubImport::RefreshImportJidWorker.
2018-03-17 18:26:18 +05:30
Stage::ImportRepositoryWorker
2022-01-26 12:08:38 +05:30
.with_status
2018-03-17 18:26:18 +05:30
.perform_async(project.id)
true
end
end
end
end
2020-05-24 23:13:21 +05:30
2021-06-08 01:23:25 +05:30
Gitlab::GithubImport::ParallelImporter.prepend_mod_with('Gitlab::GithubImport::ParallelImporter')