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

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

module Gitlab
  module BackgroundMigration
    class DestroyInvalidProjectMembers < Gitlab::BackgroundMigration::BatchedMigrationJob # rubocop:disable Style/Documentation
      scope_to ->(relation) { relation.where(source_type: 'Project') }

      def perform
        each_sub_batch(operation_name: :delete_all) do |sub_batch|
          invalid_project_members = sub_batch
                                      .joins('LEFT OUTER JOIN projects ON members.source_id = projects.id')
                                      .where(projects: { id: nil })
          invalid_ids = invalid_project_members.pluck(:id)

          # the actual delete
          deleted_count = invalid_project_members.delete_all

          Gitlab::AppLogger.info({ message: 'Removing invalid project member records',
                                   deleted_count: deleted_count,
                                   ids: invalid_ids })
        end
      end
    end
  end
end