2016-04-14 10:57:25 -04:00
|
|
|
module Gitlab
|
|
|
|
module ImportExport
|
|
|
|
class Saver
|
|
|
|
include Gitlab::ImportExport::CommandLineUtil
|
|
|
|
|
|
|
|
def self.save(*args)
|
|
|
|
new(*args).save
|
|
|
|
end
|
|
|
|
|
2016-05-10 11:15:20 -04:00
|
|
|
def initialize(shared:)
|
|
|
|
@shared = shared
|
2016-04-14 10:57:25 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def save
|
|
|
|
if compress_and_save
|
2016-05-11 08:51:25 -04:00
|
|
|
remove_export_path
|
2016-05-03 05:13:10 -04:00
|
|
|
Rails.logger.info("Saved project export #{archive_file}")
|
2016-04-14 10:57:25 -04:00
|
|
|
archive_file
|
|
|
|
else
|
2016-07-07 03:49:46 -04:00
|
|
|
@shared.error(Gitlab::ImportExport::Error.new("Unable to save #{archive_file} into #{@shared.export_path}"))
|
2016-04-14 10:57:25 -04:00
|
|
|
false
|
|
|
|
end
|
2016-05-10 11:15:20 -04:00
|
|
|
rescue => e
|
2016-05-13 06:33:13 -04:00
|
|
|
@shared.error(e)
|
2016-05-10 11:15:20 -04:00
|
|
|
false
|
2016-04-14 10:57:25 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def compress_and_save
|
2016-05-11 08:51:25 -04:00
|
|
|
tar_czf(archive: archive_file, dir: @shared.export_path)
|
2016-04-14 10:57:25 -04:00
|
|
|
end
|
|
|
|
|
2016-05-11 08:51:25 -04:00
|
|
|
def remove_export_path
|
|
|
|
FileUtils.rm_rf(@shared.export_path)
|
2016-04-14 10:57:25 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def archive_file
|
2016-05-11 08:51:25 -04:00
|
|
|
@archive_file ||= File.join(@shared.export_path, '..', "#{Time.now.strftime('%Y-%m-%d_%H-%M-%3N')}_project_export.tar.gz")
|
2016-04-14 10:57:25 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|