Welcome to mirror list, hosted at ThFree Co, Russian Federation.

propagate_service.rb « admin « concerns « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 065ab6f7ff93023b22ce9c7594f9d4c2142aaa7b (plain)
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
# frozen_string_literal: true

module Admin
  module PropagateService
    extend ActiveSupport::Concern

    BATCH_SIZE = 10_000

    class_methods do
      def propagate(integration)
        new(integration).propagate
      end
    end

    def initialize(integration)
      @integration = integration
    end

    private

    attr_reader :integration

    def create_integration_for_projects_without_integration
      Project.without_integration(integration).each_batch(of: BATCH_SIZE) do |projects|
        min_id, max_id = projects.pick("MIN(projects.id), MAX(projects.id)")
        PropagateIntegrationProjectWorker.perform_async(integration.id, min_id, max_id)
      end
    end
  end
end