d391dfb4ac
We still rely on the Dirty API for project rename (before/after) values, but we don't access the dirty api from the service class anymore. The previous value is now part of the initialization, which makes it easier to test and the behavior is clearer. The same was done with the `rename_repo` on the Storage classes, we now provide before and after values as part of the method signature.
46 lines
1.2 KiB
Ruby
46 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Storage
|
|
class HashedProject
|
|
attr_accessor :project
|
|
delegate :gitlab_shell, :repository_storage, to: :project
|
|
|
|
REPOSITORY_PATH_PREFIX = '@hashed'
|
|
POOL_PATH_PREFIX = '@pools'
|
|
|
|
def initialize(project, prefix: REPOSITORY_PATH_PREFIX)
|
|
@project = project
|
|
@prefix = prefix
|
|
end
|
|
|
|
# Base directory
|
|
#
|
|
# @return [String] directory where repository is stored
|
|
def base_dir
|
|
"#{@prefix}/#{disk_hash[0..1]}/#{disk_hash[2..3]}" if disk_hash
|
|
end
|
|
|
|
# Disk path is used to build repository and project's wiki path on disk
|
|
#
|
|
# @return [String] combination of base_dir and the repository own name without `.git` or `.wiki.git` extensions
|
|
def disk_path
|
|
"#{base_dir}/#{disk_hash}" if disk_hash
|
|
end
|
|
|
|
def ensure_storage_path_exists
|
|
gitlab_shell.add_namespace(repository_storage, base_dir)
|
|
end
|
|
|
|
def rename_repo(old_full_path: nil, new_full_path: nil)
|
|
true
|
|
end
|
|
|
|
private
|
|
|
|
# Generates the hash for the project path and name on disk
|
|
# If you need to refer to the repository on disk, use the `#disk_path`
|
|
def disk_hash
|
|
@disk_hash ||= Digest::SHA2.hexdigest(project.id.to_s) if project.id
|
|
end
|
|
end
|
|
end
|