6b9177ca02
This also makes that 'mv: cannot stat `/ho..' is not shown in the test :) consistent spacing require fileutils Revert "require fileutils" This reverts commit 54313d3bbaa60cfc5b405be50cc00b7f6b0cb715. new hash notation FileUtils.mv in begin/rescue block
46 lines
1.3 KiB
Ruby
46 lines
1.3 KiB
Ruby
# ProjectMover class
|
|
#
|
|
# Used for moving project repositories from one subdir to another
|
|
module Gitlab
|
|
class ProjectMover
|
|
class ProjectMoveError < StandardError; end
|
|
|
|
attr_reader :project, :old_dir, :new_dir
|
|
|
|
def initialize(project, old_dir, new_dir)
|
|
@project = project
|
|
@old_dir = old_dir
|
|
@new_dir = new_dir
|
|
end
|
|
|
|
def execute
|
|
# Create new dir if missing
|
|
new_dir_path = File.join(Gitlab.config.gitolite.repos_path, new_dir)
|
|
FileUtils.mkdir( new_dir_path, mode: 0770 ) unless File.exists?(new_dir_path)
|
|
|
|
old_path = File.join(Gitlab.config.gitolite.repos_path, old_dir, "#{project.path}.git")
|
|
new_path = File.join(new_dir_path, "#{project.path}.git")
|
|
|
|
if File.exists? new_path
|
|
raise ProjectMoveError.new("Destination #{new_path} already exists")
|
|
end
|
|
|
|
begin
|
|
FileUtils.mv( old_path, new_path )
|
|
log_info "Project #{project.name} was moved from #{old_path} to #{new_path}"
|
|
true
|
|
rescue Exception => e
|
|
message = "Project #{project.name} cannot be moved from #{old_path} to #{new_path}"
|
|
log_info "Error! #{message} (#{e.message})"
|
|
raise ProjectMoveError.new(message)
|
|
end
|
|
end
|
|
|
|
protected
|
|
|
|
def log_info message
|
|
Gitlab::AppLogger.info message
|
|
end
|
|
end
|
|
end
|