mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 13:16:09 +10:00
Export project functionality This is a MR for the export functionality of https://gitlab.com/gitlab-org/gitlab-ce/issues/3050, which adds the ability to export single projects. - [x] members - DB data - [x] issues - [x] issue comments - [x] merge requests - [x] merge request diff - [x] merge request comments - [x] labels - [x] milestones - [x] snippets - [x] releases - [x] events - [x] commit statuses - [x] CI builds - File system data - [x] Git repository - [x] wiki - [x] uploads - [ ] ~~CI build traces~~ - [ ] ~~CI build artifacts~~ - [ ] ~~LFS objects~~ - DB configuration - [x] services - [x] web hooks - [x] protected branches - [x] deploy keys - [x] CI variables - [x] CI triggers See merge request !3114
43 lines
892 B
Ruby
43 lines
892 B
Ruby
module Gitlab
|
|
module ImportExport
|
|
class Saver
|
|
include Gitlab::ImportExport::CommandLineUtil
|
|
|
|
def self.save(*args)
|
|
new(*args).save
|
|
end
|
|
|
|
def initialize(shared:)
|
|
@shared = shared
|
|
end
|
|
|
|
def save
|
|
if compress_and_save
|
|
remove_export_path
|
|
Rails.logger.info("Saved project export #{archive_file}")
|
|
archive_file
|
|
else
|
|
false
|
|
end
|
|
rescue => e
|
|
@shared.error(e)
|
|
false
|
|
end
|
|
|
|
private
|
|
|
|
def compress_and_save
|
|
tar_czf(archive: archive_file, dir: @shared.export_path)
|
|
end
|
|
|
|
def remove_export_path
|
|
FileUtils.rm_rf(@shared.export_path)
|
|
end
|
|
|
|
def archive_file
|
|
@archive_file ||= File.join(@shared.export_path, '..', "#{Time.now.strftime('%Y-%m-%d_%H-%M-%3N')}_project_export.tar.gz")
|
|
end
|
|
end
|
|
end
|
|
end
|