Skip to content
Snippets Groups Projects

Unified Backups: Introduce `backup_information.json` metadata

Merged Gabriel Mazetto requested to merge 427337-unified-backups-metadata into master
2 files
+ 112
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -3,7 +3,17 @@
module Gitlab
module Backup
module Cli
# Backup Metadata includes information about the Backup
class BackupMetadata
# Metadata version number should always increase when:
# - field is added
# - field is removed
# - field format/type changes
METADATA_VERSION = 2
# Metadata filename used when writing or loading from a filesystem location
METADATA_FILENAME = 'backup_information.json'
# Unique ID for a backup
# @return [String]
attr_reader :backup_id
@@ -35,6 +45,33 @@ def self.build(gitlab_version:)
gitlab_version: gitlab_version
)
end
# Expose the information that will be part of the Metadata JSON file
def to_hash
{
metadata_version: METADATA_VERSION,
backup_id: backup_id,
created_at: created_at.iso8601,
gitlab_version: gitlab_version
}
end
def write!(basepath)
basepath = Pathname(basepath) unless basepath.is_a? Pathname
json_file = basepath.join(METADATA_FILENAME)
json = JSON.pretty_generate(to_hash)
json_file.open(File::RDWR | File::CREAT, 0o644) do |file|
file.write(json)
end
true
rescue IOError, Errno::ENOENT => e
Gitlab::Backup::Cli::Output.error("Failed to Backup information to: #{json_file} (#{e.message})")
false
end
end
end
end
Loading