summaryrefslogtreecommitdiff
path: root/app/workers/hashed_storage/project_migrate_worker.rb
blob: 0659c8a6a46fe5fc681490180de06ce13cb4ffdd (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
# frozen_string_literal: true

module HashedStorage
  class ProjectMigrateWorker < BaseWorker # rubocop:disable Scalability/IdempotentWorker
    include ApplicationWorker

    sidekiq_options retry: 3

    queue_namespace :hashed_storage
    loggable_arguments 1
    tags :exclude_from_gitlab_com

    attr_reader :project_id

    # rubocop: disable CodeReuse/ActiveRecord
    def perform(project_id, old_disk_path = nil)
      @project_id = project_id # we need to set this in order to create the lease_key

      try_obtain_lease do
        project = Project.without_deleted.find_by(id: project_id)
        break unless project && project.storage_upgradable?

        old_disk_path ||= Storage::LegacyProject.new(project).disk_path

        ::Projects::HashedStorage::MigrationService.new(project, old_disk_path, logger: logger).execute
      end
    end
    # rubocop: enable CodeReuse/ActiveRecord
  end
end