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

remove_project_group_link_with_missing_groups.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 879e52c96bf70cb193abde1f73bc2e4ee13da256 (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
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # A job to remove `project_group_links` records whose associated group
    # does not exist in `namespaces` table anymore.
    class RemoveProjectGroupLinkWithMissingGroups < Gitlab::BackgroundMigration::BatchedMigrationJob
      scope_to ->(relation) { relation }
      operation_name :delete_all
      feature_category :subgroups

      def perform
        each_sub_batch do |sub_batch|
          records = sub_batch.joins(
            "LEFT OUTER JOIN namespaces ON namespaces.id = project_group_links.group_id AND namespaces.type = 'Group'"
          ).where(namespaces: { id: nil })

          ids = records.map(&:id)

          next if ids.empty?

          Gitlab::AppLogger.info({ message: 'Removing project group link with non-existent groups',
                                  deleted_count: ids.count,
                                  ids:  ids })

          records.delete_all
        end
      end
    end
  end
end