gitlab-org--gitlab-foss/lib/gitlab/import_export/repo_bundler.rb

35 lines
754 B
Ruby
Raw Normal View History

module Gitlab
module ImportExport
class RepoBundler
include Gitlab::ImportExport::CommandLineUtil
attr_reader :full_path
2016-05-16 08:13:00 +00:00
def initialize(project:, shared:)
@project = project
@shared = shared
end
def bundle
return false if @project.empty_repo?
2016-05-13 15:39:03 +00:00
@full_path = File.join(@shared.export_path, ImportExport.project_bundle_filename)
bundle_to_disk
end
private
def bundle_to_disk
FileUtils.mkdir_p(@shared.export_path)
git_bundle(repo_path: path_to_repo, bundle_path: @full_path)
rescue => e
@shared.error(e.message)
false
end
def path_to_repo
@project.repository.path_to_repo
end
end
end
end