summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/expire_o_auth_tokens.rb
blob: 08bcdb8a789e8f52eb047f727032cb142e18ab5b (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
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # Add expiry to all OAuth access tokens
    class ExpireOAuthTokens < ::Gitlab::BackgroundMigration::BatchedMigrationJob
      operation_name :update_oauth_tokens

      def perform
        each_sub_batch(
          batching_scope: ->(relation) { relation.where(expires_in: nil) }
        ) do |sub_batch|
          update_oauth_tokens(sub_batch)
        end
      end

      private

      def update_oauth_tokens(relation)
        relation.update_all(expires_in: 7_200)
      end
    end
  end
end