feat: Enhance MySQL backup script with

customizable retention and logging

    Refactor backup method to dump each database individually
    Update delete_old_backups method to remove local backups based on user-defined retention days
    Add Loggman class for logging program actions to a logfile and implement log deletion for logs older than a week
    Modify MysqlDatabaseConfig class to ask the user for local and B2 backup retention days
    Update MysqlDatabaseBackup class to use user-defined retention days for local backups
    Refactor upload_to_b2 method to delete B2 backups based on user-defined retention days
    Implement various code improvements and refactoring for better readability and maintainability
This commit is contained in:
connorc@orbitnode.net 2023-03-19 16:49:18 -06:00
parent 5b9ce0e341
commit 3342da13c6
4 changed files with 218 additions and 149 deletions

44
loggman.rb Normal file
View File

@ -0,0 +1,44 @@
# frozen_string_literal: true
require 'time'
require 'fileutils'
# Loggman class
class Loggman
def initialize(logfile)
@logfile = logfile
end
def log(message, level = :info)
delete_old_logs
timestamp = Time.now.strftime('%Y-%m-%d %H:%M:%S')
File.open(@logfile, 'a') do |file|
file.puts "[#{timestamp}] [#{level.to_s.upcase}] #{message}"
end
end
def info(message)
log(message, :info)
end
def warn(message)
log(message, :warn)
end
def error(message)
log(message, :error)
end
def debug(message)
log(message, :debug)
end
def delete_old_logs
max_age_days = 7
max_age_seconds = max_age_days * 24 * 60 * 60
if File.exist?(@logfile) && Time.now - File.mtime(@logfile) > max_age_seconds
FileUtils.rm(@logfile)
end
end
end

View File

@ -1,75 +1,96 @@
# frozen_string_literal: true # frozen_string_literal: true
require 'json' require 'json'
# class for creating, managing and deleting backups both locally and in B2 # class for creating, managing and deleting backups both locally and in B2
class MysqlDatabaseBackup class MysqlDatabaseBackup
def initialize(config_file) def initialize(config_file)
config = JSON.parse(File.read(config_file)) config = JSON.parse(File.read(config_file))
@host = config['mysql']['host'] @host = config['mysql']['host']
@username = config['mysql']['username'] @username = config['mysql']['username']
@password = config['mysql']['password'] @password = config['mysql']['password']
@backup_dir = config['backup_dir'] || '.' @backup_dir = config['backup_dir'] || '.'
@b2_enabled = config['b2_enabled'] || false @b2_enabled = config['b2_enabled'] || false
@b2_key_id = config['b2']&.dig('key_id') @b2_key_id = config['b2']&.dig('key_id')
@b2_application_key = config['b2']&.dig('application_key') @b2_application_key = config['b2']&.dig('application_key')
@b2_bucket_name = config['b2']&.dig('bucket_name') @b2_bucket_name = config['b2']&.dig('bucket_name')
end @local_retention_days = config['local_retention_days'] || 30
@b2_retention_days = config['b2']&.dig('retention_days') || 30
def backup end
puts 'Backing up sql'
timestamp = Time.now.strftime('%Y-%m-%d_%H-%M-%S') def backup
puts "Timestamp = #{timestamp}" puts 'Backing up sql'
backup_file = File.join(@backup_dir, "database-backup_#{timestamp}.sql") timestamp = Time.now.strftime('%Y-%m-%d_%H-%M-%S')
puts "backup_file = #{backup_file}" puts "Timestamp = #{timestamp}"
puts "MySQL Info = #{@host} #{@username} #{@password} #{backup_file}"
databases = get_databases
`mysqldump --host=#{@host} --user=#{@username} --password='#{@password}' --all-databases > #{backup_file}`
databases.each do |database_name|
delete_old_backups backup_file = File.join(@backup_dir, "#{database_name}_#{timestamp}.sql")
puts "backup_file = #{backup_file}"
return unless @b2_enabled puts "MySQL Info = #{@host} #{@username} #{@password} #{backup_file}"
upload_to_b2(backup_file) `mysqldump --host=#{@host} --user=#{@username} --password='#{@password}' --databases #{database_name} > #{backup_file}`
end
delete_old_backups
def delete_old_backups
max_age_hours = 48 upload_to_b2(backup_file) if @b2_enabled
max_age_seconds = max_age_hours * 60 * 60 end
backups = Dir[File.join(@backup_dir, 'database-backup_*.sql')] end
return if backups.empty? def get_databases
databases_output = `mysql --host=#{@host} --user=#{@username} --password='#{@password}' --execute='SHOW DATABASES;'`
backups.each do |backup| databases = databases_output.split("\n")[1..] # Ignore the first line (header)
age_seconds = Time.now - File.mtime(backup) databases.reject { |db| %w[information_schema performance_schema mysql sys].include?(db) }
end
if age_seconds > max_age_seconds
puts "Deleted old backup: #{backup}" def delete_old_backups
File.delete(backup) max_age_days = @local_retention_days
end max_age_seconds = max_age_days * 24 * 60 * 60
end backups = Dir[File.join(@backup_dir, '*_*.sql')]
end
return if backups.empty?
def upload_to_b2(backup_file)
b2_file_name = File.basename(backup_file) backups.each do |backup|
b2_file_url = "b2://#{@b2_bucket_name}/#{b2_file_name}" age_seconds = Time.now - File.mtime(backup)
# Check if a backup file with the same name already exists in the B2 bucket
if age_seconds > max_age_seconds
existing_files = `b2 ls #{@b2_bucket_name}` puts "Deleted old backup: #{backup}"
unless existing_files.empty? File.delete(backup)
existing_files.each_line do |line| end
file_name = line.split(' ').last.strip end
next unless file_name != b2_file_name end
file_id = line.match(/"fileId": "([^"]+)"/)[1] def upload_to_b2(backup_file)
`b2 delete-file-version #{@b2_bucket_name} #{file_name} #{file_id}` b2_file_name = File.basename(backup_file)
puts "Deleted existing backup file from B2 bucket: #{file_name}" b2_file_url = "b2://#{@b2_bucket_name}/#{b2_file_name}"
end
end # Upload the backup file to the B2 bucket
`b2 upload-file #{@b2_bucket_name} #{backup_file} #{b2_file_name}`
# Upload the backup file to the B2 bucket puts "Uploaded backup file to B2 bucket: #{b2_file_url}"
`b2 upload-file #{@b2_bucket_name} #{backup_file} #{b2_file_name}`
puts "Uploaded backup file to B2 bucket: #{b2_file_url}" # Calculate the cutoff date based on b2_retention_days
end max_age_days = @b2_retention_days
cutoff_date = Time.now - (max_age_days * 24 * 60 * 60)
end
existing_files = `b2 ls #{@b2_bucket_name}`
return if existing_files.empty?
existing_files.each_line do |line|
file_name = line.split(' ').last.strip
file_timestamp_str = file_name.match(/_(\d{4}-\d{2}-\d{2}_\d{2}-\d{2}-\d{2})\.sql/)&.captures&.first
# Skip files that don't match the expected filename format
next if file_timestamp_str.nil?
file_timestamp = Time.strptime(file_timestamp_str, '%Y-%m-%d_%H-%M-%S')
next unless file_timestamp < cutoff_date
file_id = line.match(/"fileId": "([^"]+)"/)[1]
`b2 delete-file-version #{@b2_bucket_name} #{file_name} #{file_id}`
puts "Deleted old backup file from B2 bucket: #{file_name}"
end
end
end

View File

@ -1,62 +1,66 @@
# frozen_string_literal: true # frozen_string_literal: true
# class for generating the mysql config if it doesn't exist # class for generating the mysql config if it doesn't exist
require 'json' require 'json'
# class for generating our config # class for generating our config
class MysqlDatabaseConfig class MysqlDatabaseConfig
def initialize(config_file) def initialize(config_file)
@config_file = config_file @config_file = config_file
end end
def generate def generate
if File.exist?(@config_file) if File.exist?(@config_file)
puts 'Config file already exists, skipping generation.' puts 'Config file already exists, skipping generation.'
else else
mysql_host = prompt('MySQL Host') mysql_host = prompt('MySQL Host')
mysql_username = prompt('MySQL Username') mysql_username = prompt('MySQL Username')
mysql_password = prompt('MySQL Password') mysql_password = prompt('MySQL Password')
backup_dir = prompt('Backup Directory', default: '.') backup_dir = prompt('Backup Directory', default: '.')
@config = { local_retention_days = prompt('Local backup retention in days (1 day minimum)', default: '1').to_i
'mysql' => {
'host' => mysql_host, @config = {
'username' => mysql_username, 'mysql' => {
'password' => mysql_password 'host' => mysql_host,
}, 'username' => mysql_username,
'backup_dir' => backup_dir 'password' => mysql_password
} },
'backup_dir' => backup_dir,
b2_enabled = prompt_bool('Enable Backblaze B2?', default: false) 'local_retention_days' => local_retention_days
@config['b2_enabled'] = b2_enabled }
if b2_enabled b2_enabled = prompt_bool('Enable Backblaze B2?', default: false)
@b2_key_id = prompt('B2 Key ID') @config['b2_enabled'] = b2_enabled
@b2_application_key = prompt('B2 Application Key') if b2_enabled
@b2_bucket_name = prompt('B2 Bucket Name') @b2_key_id = prompt('B2 Key ID')
@config['b2'] = { @b2_application_key = prompt('B2 Application Key')
'key_id' => @b2_key_id, @b2_bucket_name = prompt('B2 Bucket Name')
'application_key' => @b2_application_key, b2_retention_days = prompt('B2 backup retention in days (1 day minimum)', default: '1').to_i
'bucket_name' => @b2_bucket_name @config['b2'] = {
} 'key_id' => @b2_key_id,
end 'application_key' => @b2_application_key,
'bucket_name' => @b2_bucket_name,
File.write(@config_file, JSON.pretty_generate(@config)) 'retention_days' => b2_retention_days
puts "Config file generated: #{@config_file}" }
end end
end
File.write(@config_file, JSON.pretty_generate(@config))
private puts "Config file generated: #{@config_file}"
end
def prompt(message, default: nil) end
print message.to_s
print " [#{default}]" if default private
print ': '
value = gets.chomp def prompt(message, default: nil)
value.empty? ? default : value print message.to_s
end print " [#{default}]" if default
print ': '
def prompt_bool(message, default: false) value = gets.chomp
prompt("#{message} (y/n)", default: default) =~ /y|yes/i value.empty? ? default : value
end end
end
def prompt_bool(message, default: false)
prompt("#{message} (y/n)", default: default) =~ /y|yes/i
end
end

View File

@ -1,12 +1,12 @@
# frozen_string_literal: true # frozen_string_literal: true
require_relative 'mysql_database_config' require_relative 'mysql_database_config'
require_relative 'mysql_database_backup' require_relative 'mysql_database_backup'
config_file = 'config.json' config_file = 'config.json'
config_generator = MysqlDatabaseConfig.new(config_file) config_generator = MysqlDatabaseConfig.new(config_file)
config_generator.generate config_generator.generate
backup = MysqlDatabaseBackup.new(config_file) backup = MysqlDatabaseBackup.new(config_file)
backup.backup backup.backup