debian-mirror-gitlab/app/workers/propagate_integration_project_worker.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
732 B
Ruby
Raw Normal View History

2021-01-03 14:25:43 +05:30
# frozen_string_literal: true
class PropagateIntegrationProjectWorker
include ApplicationWorker
2021-10-27 15:23:28 +05:30
data_consistency :always
2021-06-08 01:23:25 +05:30
sidekiq_options retry: 3
2021-01-03 14:25:43 +05:30
feature_category :integrations
2021-10-27 15:23:28 +05:30
urgency :low
2021-01-03 14:25:43 +05:30
idempotent!
# rubocop: disable CodeReuse/ActiveRecord
def perform(integration_id, min_id, max_id)
2021-06-08 01:23:25 +05:30
integration = Integration.find_by_id(integration_id)
2021-01-03 14:25:43 +05:30
return unless integration
batch = Project.where(id: min_id..max_id).without_integration(integration)
2021-06-08 01:23:25 +05:30
batch = batch.in_namespace(integration.group.self_and_descendants) if integration.group_level?
2021-01-03 14:25:43 +05:30
return if batch.empty?
BulkCreateIntegrationService.new(integration, batch, 'project').execute
end
# rubocop: enable CodeReuse/ActiveRecord
end