35 lines
758 B
Ruby
35 lines
758 B
Ruby
module Gitlab
|
|
module ImportExport
|
|
class RepoSaver
|
|
include Gitlab::ImportExport::CommandLineUtil
|
|
|
|
attr_reader :full_path
|
|
|
|
def initialize(project:, shared:)
|
|
@project = project
|
|
@shared = shared
|
|
end
|
|
|
|
def save
|
|
return true if @project.empty_repo? # it's ok to have no repo
|
|
|
|
@full_path = File.join(@shared.export_path, ImportExport.project_bundle_filename)
|
|
bundle_to_disk
|
|
end
|
|
|
|
private
|
|
|
|
def bundle_to_disk
|
|
mkdir_p(@shared.export_path)
|
|
git_bundle(repo_path: path_to_repo, bundle_path: @full_path)
|
|
rescue => e
|
|
@shared.error(e)
|
|
false
|
|
end
|
|
|
|
def path_to_repo
|
|
@project.repository.path_to_repo
|
|
end
|
|
end
|
|
end
|
|
end
|