2018-03-17 18:26:18 +05:30
|
|
|
module Storage
|
|
|
|
class HashedProject
|
|
|
|
attr_accessor :project
|
2018-10-15 14:42:47 +05:30
|
|
|
delegate :gitlab_shell, :repository_storage, to: :project
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
ROOT_PATH_PREFIX = '@hashed'.freeze
|
|
|
|
|
|
|
|
def initialize(project)
|
|
|
|
@project = project
|
|
|
|
end
|
|
|
|
|
|
|
|
# Base directory
|
|
|
|
#
|
|
|
|
# @return [String] directory where repository is stored
|
|
|
|
def base_dir
|
|
|
|
"#{ROOT_PATH_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
|
2018-10-15 14:42:47 +05:30
|
|
|
gitlab_shell.add_namespace(repository_storage, base_dir)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def rename_repo
|
|
|
|
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
|