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

26 lines
722 B
Ruby
Raw Normal View History

2021-01-03 14:25:43 +05:30
# frozen_string_literal: true
class PropagateIntegrationProjectWorker
include ApplicationWorker
2021-06-08 01:23:25 +05:30
sidekiq_options retry: 3
2021-01-03 14:25:43 +05:30
feature_category :integrations
2021-06-08 01:23:25 +05:30
tags :exclude_from_kubernetes
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