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

20230310213308_sync_security_policy_rule_schedules_that_may_have_been_deleted_by_a_bug.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3435f889fa7bfbf5bc3cdc84d9b033d9ad45ce7e (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
31
32
33
34
35
36
37
# frozen_string_literal: true

class SyncSecurityPolicyRuleSchedulesThatMayHaveBeenDeletedByABug < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!
  restrict_gitlab_migration gitlab_schema: :gitlab_main

  class OrchestrationPolicyRuleSchedule < MigrationRecord
    self.table_name = 'security_orchestration_policy_rule_schedules'
  end

  def up
    return unless Gitlab.ee?
    return unless sync_scan_policies_worker

    OrchestrationPolicyRuleSchedule
      .select(:security_orchestration_policy_configuration_id)
      .distinct
      .where(policy_index: 1..)
      .pluck(:security_orchestration_policy_configuration_id)
      .map { |policy_configuration_id| [policy_configuration_id] }
      .then { |args_list| sync_scan_policies_worker.bulk_perform_async(args_list) }
  end

  def down
    # no-op
  end

  private

  def sync_scan_policies_worker
    unless defined?(@sync_scan_policies_worker)
      @sync_scan_policies_worker = 'Security::SyncScanPoliciesWorker'.safe_constantize
    end

    @sync_scan_policies_worker
  end
end