gitlab-org--gitlab-foss/lib/backup/database.rb

102 lines
3.3 KiB
Ruby
Raw Normal View History

2013-04-05 16:01:19 +00:00
require 'yaml'
module Backup
class Database
attr_reader :config, :db_dir
def initialize
@config = YAML.load_file(File.join(Rails.root,'config','database.yml'))[Rails.env]
@db_dir = File.join(Gitlab.config.backup.path, 'db')
end
def dump
FileUtils.rm_rf(@db_dir)
# Ensure the parent dir of @db_dir exists
FileUtils.mkdir_p(Gitlab.config.backup.path)
# Fail if somebody raced to create @db_dir before us
FileUtils.mkdir(@db_dir, mode: 0700)
2013-04-05 16:01:19 +00:00
2014-01-23 10:19:43 +00:00
success = case config["adapter"]
2013-04-05 16:01:19 +00:00
when /^mysql/ then
$progress.print "Dumping MySQL database #{config['database']} ... "
# Workaround warnings from MySQL 5.6 about passwords on cmd line
ENV['MYSQL_PWD'] = config["password"].to_s if config["password"]
2013-11-05 14:00:48 +00:00
system('mysqldump', *mysql_args, config['database'], out: db_file_name)
2013-04-05 16:01:19 +00:00
when "postgresql" then
$progress.print "Dumping PostgreSQL database #{config['database']} ... "
2013-04-05 16:01:19 +00:00
pg_env
2015-09-18 09:47:25 +00:00
pgsql_args = ["--clean"] # Pass '--clean' to include 'DROP TABLE' statements in the DB dump.
if Gitlab.config.backup.pg_schema
pgsql_args << "-n"
pgsql_args << Gitlab.config.backup.pg_schema
end
system('pg_dump', *pgsql_args, config['database'], out: db_file_name)
2013-04-05 16:01:19 +00:00
end
2014-01-23 10:19:43 +00:00
report_success(success)
abort 'Backup failed' unless success
2015-06-23 13:45:24 +00:00
$progress.print 'Compressing database ... '
success = system('gzip', db_file_name)
report_success(success)
abort 'Backup failed: compress error' unless success
2013-04-05 16:01:19 +00:00
end
def restore
2015-06-23 13:45:24 +00:00
$progress.print 'Decompressing database ... '
success = system('gzip', '-d', db_file_name_gz)
report_success(success)
abort 'Restore failed: decompress error' unless success
2014-01-23 10:19:43 +00:00
success = case config["adapter"]
2013-04-05 16:01:19 +00:00
when /^mysql/ then
$progress.print "Restoring MySQL database #{config['database']} ... "
# Workaround warnings from MySQL 5.6 about passwords on cmd line
ENV['MYSQL_PWD'] = config["password"].to_s if config["password"]
2013-11-05 14:00:48 +00:00
system('mysql', *mysql_args, config['database'], in: db_file_name)
2013-04-05 16:01:19 +00:00
when "postgresql" then
$progress.print "Restoring PostgreSQL database #{config['database']} ... "
2013-04-05 16:01:19 +00:00
pg_env
2013-11-05 14:00:48 +00:00
system('psql', config['database'], '-f', db_file_name)
2013-04-05 16:01:19 +00:00
end
2014-01-23 10:19:43 +00:00
report_success(success)
abort 'Restore failed' unless success
2013-04-05 16:01:19 +00:00
end
protected
def db_file_name
File.join(db_dir, 'database.sql')
end
2015-06-23 13:45:24 +00:00
def db_file_name_gz
File.join(db_dir, 'database.sql.gz')
end
2013-04-05 16:01:19 +00:00
def mysql_args
args = {
'host' => '--host',
'port' => '--port',
'socket' => '--socket',
'username' => '--user',
'encoding' => '--default-character-set'
2013-04-05 16:01:19 +00:00
}
2013-11-05 14:00:48 +00:00
args.map { |opt, arg| "#{arg}=#{config[opt]}" if config[opt] }.compact
2013-04-05 16:01:19 +00:00
end
def pg_env
ENV['PGUSER'] = config["username"] if config["username"]
ENV['PGHOST'] = config["host"] if config["host"]
ENV['PGPORT'] = config["port"].to_s if config["port"]
ENV['PGPASSWORD'] = config["password"].to_s if config["password"]
end
2014-01-23 10:19:43 +00:00
def report_success(success)
if success
$progress.puts '[DONE]'.green
2014-01-23 10:19:43 +00:00
else
$progress.puts '[FAILED]'.red
2014-01-23 10:19:43 +00:00
end
end
2013-04-05 16:01:19 +00:00
end
end