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

project_update_repository_storage_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb40107494bc3ac4732d87be6134f66e0a1f3cdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

class ProjectUpdateRepositoryStorageWorker # rubocop:disable Scalability/IdempotentWorker
  include ApplicationWorker

  SameFilesystemError = Class.new(StandardError)

  feature_category :gitaly

  def perform(project_id, new_repository_storage_key)
    project = Project.find(project_id)

    raise SameFilesystemError if same_filesystem?(project.repository.storage, new_repository_storage_key)

    ::Projects::UpdateRepositoryStorageService.new(project).execute(new_repository_storage_key)
  end

  private

  def same_filesystem?(old_storage, new_storage)
    Gitlab::GitalyClient.filesystem_id(old_storage) == Gitlab::GitalyClient.filesystem_id(new_storage)
  end
end