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

54 lines
1.0 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
module Gitlab
2016-03-07 17:26:15 +00:00
module ImportExport
extend self
# For every version update, the version history in import_export.md has to be kept up to date.
VERSION = '0.2.4'.freeze
FILENAME_LIMIT = 50
2016-05-16 10:04:31 +00:00
def export_path(relative_path:)
2016-04-22 10:18:11 +00:00
File.join(storage_path, relative_path)
2016-03-07 17:26:15 +00:00
end
def storage_path
File.join(Settings.shared['path'], 'tmp/project_exports')
end
2016-05-13 15:39:03 +00:00
def import_upload_path(filename:)
File.join(storage_path, 'uploads', filename)
end
2016-05-13 15:39:03 +00:00
def project_filename
"project.json"
end
def project_bundle_filename
"project.bundle"
end
2016-05-16 10:04:31 +00:00
def config_file
2016-06-20 07:17:07 +00:00
Rails.root.join('lib/gitlab/import_export/import_export.yml')
end
2016-05-16 10:04:31 +00:00
def version_filename
'VERSION'
end
2016-05-16 11:28:11 +00:00
def export_filename(project:)
basename = "#{Time.now.strftime('%Y-%m-%d_%H-%M-%3N')}_#{project.full_path.tr('/', '_')}"
"#{basename[0..FILENAME_LIMIT]}_export.tar.gz"
end
2016-05-16 11:28:11 +00:00
def version
VERSION
end
def reset_tokens?
true
end
2016-03-07 17:26:15 +00:00
end
end