1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
# frozen_string_literal: true
module Clusters
module Applications
class DeactivateIntegrationWorker # rubocop:disable Scalability/IdempotentWorker
include ApplicationWorker
data_consistency :always
sidekiq_options retry: 3
include ClusterQueue
loggable_arguments 1
def perform(cluster_id, integration_name)
cluster = Clusters::Cluster.find_by_id(cluster_id)
raise cluster_missing_error(integration_name) unless cluster
integration_class = Integration.integration_name_to_model(integration_name)
integration_association_name = ::Project.integration_association_name(integration_name).to_sym
projects = cluster.all_projects
.with_integration(integration_class)
.include_integration(integration_association_name)
projects.find_each do |project|
# This use of public_send is safe because we constructed the
# integration_association_name ourselves above.
project.public_send(integration_association_name).update!(active: false) # rubocop:disable GitlabSecurity/PublicSend
end
end
def cluster_missing_error(integration_name)
ActiveRecord::RecordNotFound.new(
"Can't deactivate #{integration_name} integrations, host cluster not found! " \
"Some inconsistent records may be left in database."
)
end
end
end
end
|