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

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

module Gitlab
  module Ci
    module SecureFiles
      class MigrationHelper
        class << self
          def migrate_to_remote_storage(&block)
            migrate_in_batches(
              ::Ci::SecureFile.with_files_stored_locally,
              ::Ci::SecureFileUploader::Store::REMOTE,
              &block
            )
          end

          private

          def batch_size
            ENV.fetch('MIGRATION_BATCH_SIZE', 10).to_i
          end

          def migrate_in_batches(files, store, &block)
            files.find_each(batch_size: batch_size) do |file| # rubocop:disable CodeReuse/ActiveRecord
              file.file.migrate!(store)

              yield file if block
            end
          end
        end
      end
    end
  end
end