2020-05-20 14:08:00 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-11-18 04:10:16 -05:00
|
|
|
module Integrations
|
|
|
|
class PropagateService
|
|
|
|
BATCH_SIZE = 10_000
|
|
|
|
|
|
|
|
def initialize(integration)
|
|
|
|
@integration = integration
|
|
|
|
end
|
2020-05-20 14:08:00 -04:00
|
|
|
|
|
|
|
def propagate
|
2021-04-26 05:09:53 -04:00
|
|
|
if integration.instance_level?
|
2020-10-23 14:08:31 -04:00
|
|
|
update_inherited_integrations
|
2020-12-10 01:09:47 -05:00
|
|
|
create_integration_for_groups_without_integration
|
2020-10-06 20:08:24 -04:00
|
|
|
create_integration_for_projects_without_integration
|
|
|
|
else
|
2020-10-23 14:08:31 -04:00
|
|
|
update_inherited_descendant_integrations
|
2020-10-06 20:08:24 -04:00
|
|
|
create_integration_for_groups_without_integration_belonging_to_group
|
|
|
|
create_integration_for_projects_without_integration_belonging_to_group
|
|
|
|
end
|
2020-05-20 14:08:00 -04:00
|
|
|
end
|
|
|
|
|
2021-11-18 04:10:16 -05:00
|
|
|
def self.propagate(integration)
|
|
|
|
new(integration).propagate
|
|
|
|
end
|
|
|
|
|
2020-05-20 14:08:00 -04:00
|
|
|
private
|
|
|
|
|
2021-11-18 04:10:16 -05:00
|
|
|
attr_reader :integration
|
|
|
|
|
|
|
|
def create_integration_for_projects_without_integration
|
|
|
|
propagate_integrations(
|
|
|
|
Project.without_integration(integration),
|
|
|
|
PropagateIntegrationProjectWorker
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2020-08-27 11:10:21 -04:00
|
|
|
def update_inherited_integrations
|
2020-10-23 14:08:31 -04:00
|
|
|
propagate_integrations(
|
2021-05-12 08:10:24 -04:00
|
|
|
Integration.by_type(integration.type).inherit_from_id(integration.id),
|
2020-10-23 14:08:31 -04:00
|
|
|
PropagateIntegrationInheritWorker
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_inherited_descendant_integrations
|
|
|
|
propagate_integrations(
|
2021-05-12 08:10:24 -04:00
|
|
|
Integration.inherited_descendants_from_self_or_ancestors_from(integration),
|
2020-10-23 14:08:31 -04:00
|
|
|
PropagateIntegrationInheritDescendantWorker
|
|
|
|
)
|
2020-05-20 14:08:00 -04:00
|
|
|
end
|
|
|
|
|
2020-09-15 11:10:08 -04:00
|
|
|
def create_integration_for_groups_without_integration
|
2020-10-23 14:08:31 -04:00
|
|
|
propagate_integrations(
|
|
|
|
Group.without_integration(integration),
|
|
|
|
PropagateIntegrationGroupWorker
|
|
|
|
)
|
2020-09-15 11:10:08 -04:00
|
|
|
end
|
2020-10-06 20:08:24 -04:00
|
|
|
|
|
|
|
def create_integration_for_groups_without_integration_belonging_to_group
|
2020-10-23 14:08:31 -04:00
|
|
|
propagate_integrations(
|
|
|
|
integration.group.descendants.without_integration(integration),
|
|
|
|
PropagateIntegrationGroupWorker
|
|
|
|
)
|
2020-10-06 20:08:24 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def create_integration_for_projects_without_integration_belonging_to_group
|
2020-10-23 14:08:31 -04:00
|
|
|
propagate_integrations(
|
|
|
|
Project.without_integration(integration).in_namespace(integration.group.self_and_descendants),
|
|
|
|
PropagateIntegrationProjectWorker
|
|
|
|
)
|
2020-10-06 20:08:24 -04:00
|
|
|
end
|
2021-11-18 04:10:16 -05:00
|
|
|
|
|
|
|
def propagate_integrations(relation, worker_class)
|
|
|
|
relation.each_batch(of: BATCH_SIZE) do |records|
|
|
|
|
min_id, max_id = records.pick("MIN(#{relation.table_name}.id), MAX(#{relation.table_name}.id)")
|
|
|
|
worker_class.perform_async(integration.id, min_id, max_id)
|
|
|
|
end
|
|
|
|
end
|
2020-05-20 14:08:00 -04:00
|
|
|
end
|
|
|
|
end
|