2020-05-20 14:08:00 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class PropagateIntegrationService
|
2020-09-08 11:08:41 -04:00
|
|
|
include PropagateService
|
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
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2020-08-27 11:10:21 -04:00
|
|
|
def update_inherited_integrations
|
2020-10-23 14:08:31 -04:00
|
|
|
propagate_integrations(
|
|
|
|
Service.by_type(integration.type).inherit_from_id(integration.id),
|
|
|
|
PropagateIntegrationInheritWorker
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_inherited_descendant_integrations
|
|
|
|
propagate_integrations(
|
|
|
|
Service.inherited_descendants_from_self_or_ancestors_from(integration),
|
|
|
|
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
|
2020-05-20 14:08:00 -04:00
|
|
|
end
|
|
|
|
end
|