2013-02-26 16:14:32 -05:00
|
|
|
# ProjectTransferService class
|
|
|
|
#
|
|
|
|
# Used for transfer project to another namespace
|
|
|
|
#
|
|
|
|
class ProjectTransferService
|
2013-03-21 15:01:14 -04:00
|
|
|
include Gitlab::ShellAdapter
|
2013-03-12 06:37:53 -04:00
|
|
|
|
2013-03-25 04:47:47 -04:00
|
|
|
class TransferError < StandardError; end
|
|
|
|
|
2013-02-26 16:14:32 -05:00
|
|
|
attr_accessor :project
|
|
|
|
|
|
|
|
def transfer(project, new_namespace)
|
|
|
|
Project.transaction do
|
2013-03-12 06:37:53 -04:00
|
|
|
old_path = project.path_with_namespace
|
|
|
|
new_path = File.join(new_namespace.try(:path) || '', project.path)
|
2013-02-26 16:14:32 -05:00
|
|
|
|
|
|
|
if Project.where(path: project.path, namespace_id: new_namespace.try(:id)).present?
|
|
|
|
raise TransferError.new("Project with same path in target namespace already exists")
|
|
|
|
end
|
|
|
|
|
2013-11-20 04:06:42 -05:00
|
|
|
# Remove old satellite
|
|
|
|
project.satellite.destroy
|
|
|
|
|
|
|
|
# Apply new namespace id
|
2013-03-12 06:37:53 -04:00
|
|
|
project.namespace = new_namespace
|
2013-02-27 05:27:10 -05:00
|
|
|
project.save!
|
2013-03-12 06:37:53 -04:00
|
|
|
|
2013-03-25 04:47:47 -04:00
|
|
|
# Move main repository
|
2013-03-12 06:37:53 -04:00
|
|
|
unless gitlab_shell.mv_repository(old_path, new_path)
|
|
|
|
raise TransferError.new('Cannot move project')
|
|
|
|
end
|
|
|
|
|
2013-03-25 04:47:47 -04:00
|
|
|
# Move wiki repo also if present
|
2013-03-25 09:52:54 -04:00
|
|
|
gitlab_shell.mv_repository("#{old_path}.wiki", "#{new_path}.wiki")
|
2013-03-25 04:47:47 -04:00
|
|
|
|
2013-11-20 04:06:42 -05:00
|
|
|
# Create a new satellite (reload project from DB)
|
|
|
|
Project.find(project.id).ensure_satellite_exists
|
2013-08-22 07:49:57 -04:00
|
|
|
|
2013-08-29 12:12:22 -04:00
|
|
|
# clear project cached events
|
|
|
|
project.reset_events_cache
|
|
|
|
|
2013-03-12 06:37:53 -04:00
|
|
|
true
|
2013-02-26 16:14:32 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|