ec4423665c
Direct disk access is done through Gitaly now, so the legacy path was deprecated. This path was used in Gitlab::Shell however. This required the refactoring in this commit. Added is the removal of direct path access on the project model, as that lookup wasn't needed anymore is most cases. Closes https://gitlab.com/gitlab-org/gitaly/issues/1111
51 lines
1.5 KiB
Ruby
51 lines
1.5 KiB
Ruby
module Storage
|
|
class LegacyProject
|
|
attr_accessor :project
|
|
delegate :namespace, :gitlab_shell, :repository_storage, to: :project
|
|
|
|
def initialize(project)
|
|
@project = project
|
|
end
|
|
|
|
# Base directory
|
|
#
|
|
# @return [String] directory where repository is stored
|
|
def base_dir
|
|
namespace.full_path
|
|
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
|
|
project.full_path
|
|
end
|
|
|
|
def ensure_storage_path_exists
|
|
return unless namespace
|
|
|
|
gitlab_shell.add_namespace(repository_storage, base_dir)
|
|
end
|
|
|
|
def rename_repo
|
|
new_full_path = project.build_full_path
|
|
|
|
if gitlab_shell.mv_repository(repository_storage, project.full_path_was, new_full_path)
|
|
# If repository moved successfully we need to send update instructions to users.
|
|
# However we cannot allow rollback since we moved repository
|
|
# So we basically we mute exceptions in next actions
|
|
begin
|
|
gitlab_shell.mv_repository(repository_storage, "#{project.full_path_was}.wiki", "#{new_full_path}.wiki")
|
|
return true
|
|
rescue => e
|
|
Rails.logger.error "Exception renaming #{project.full_path_was} -> #{new_full_path}: #{e}"
|
|
# Returning false does not rollback after_* transaction but gives
|
|
# us information about failing some of tasks
|
|
return false
|
|
end
|
|
end
|
|
|
|
false
|
|
end
|
|
end
|
|
end
|