gitlab-org--gitlab-foss/lib/tasks/gitlab/backup.rake

167 lines
5.2 KiB
Ruby
Raw Normal View History

require 'active_record/fixtures'
namespace :gitlab do
namespace :backup do
2012-09-26 11:18:10 +00:00
# Create backup of GitLab system
desc "GITLAB | Create a backup of the GitLab system"
task create: :environment do
2012-12-23 20:15:25 +00:00
warn_user_is_not_gitlab
Rake::Task["gitlab:backup:db:create"].invoke
Rake::Task["gitlab:backup:repo:create"].invoke
2013-04-10 12:41:47 +00:00
Rake::Task["gitlab:backup:uploads:create"].invoke
2013-05-06 23:58:10 +00:00
# saving additional informations
2012-09-26 11:18:10 +00:00
s = {}
s[:db_version] = "#{ActiveRecord::Migrator.current_version}"
2013-05-08 20:39:31 +00:00
s[:backup_created_at] = Time.now
2012-09-26 11:18:10 +00:00
s[:gitlab_version] = %x{git rev-parse HEAD}.gsub(/\n/,"")
s[:tar_version] = %x{tar --version | head -1}.gsub(/\n/,"")
Dir.chdir(Gitlab.config.backup.path)
File.open("#{Gitlab.config.backup.path}/backup_information.yml", "w+") do |file|
file << s.to_yaml.gsub(/^---\n/,'')
end
# create archive
2013-05-08 20:39:31 +00:00
print "Creating backup archive: #{s[:backup_created_at].to_i}_gitlab_backup.tar ... "
if Kernel.system("tar -cf #{s[:backup_created_at].to_i}_gitlab_backup.tar repositories/ db/ uploads/ backup_information.yml")
2012-12-23 20:15:25 +00:00
puts "done".green
else
2012-12-23 20:15:25 +00:00
puts "failed".red
end
# cleanup: remove tmp files
2012-12-23 20:15:25 +00:00
print "Deleting tmp directories ... "
2013-04-10 12:41:47 +00:00
if Kernel.system("rm -rf repositories/ db/ uploads/ backup_information.yml")
2012-12-23 20:15:25 +00:00
puts "done".green
else
2012-12-23 20:15:25 +00:00
puts "failed".red
end
# delete backups
2012-12-23 20:15:25 +00:00
print "Deleting old backups ... "
if Gitlab.config.backup.keep_time > 0
file_list = Dir.glob("*_gitlab_backup.tar").map { |f| f.split(/_/).first.to_i }
file_list.sort.each do |timestamp|
if Time.at(timestamp) < (Time.now - Gitlab.config.backup.keep_time)
%x{rm #{timestamp}_gitlab_backup.tar}
end
end
2012-12-23 20:15:25 +00:00
puts "done".green
else
2012-12-23 20:15:25 +00:00
puts "skipping".yellow
end
end
2012-09-26 11:18:10 +00:00
# Restore backup of GitLab system
desc "GITLAB | Restore a previously created backup"
task restore: :environment do
2012-12-23 20:15:25 +00:00
warn_user_is_not_gitlab
Dir.chdir(Gitlab.config.backup.path)
2012-07-10 14:12:19 +00:00
# check for existing backups in the backup dir
file_list = Dir.glob("*_gitlab_backup.tar").each.map { |f| f.split(/_/).first.to_i }
2012-09-26 11:18:10 +00:00
puts "no backups found" if file_list.count == 0
if file_list.count > 1 && ENV["BACKUP"].nil?
puts "Found more than one backup, please specify which one you want to restore:"
puts "rake gitlab:backup:restore BACKUP=timestamp_of_backup"
2012-12-23 20:15:25 +00:00
exit 1
end
2012-09-26 11:18:10 +00:00
tar_file = ENV["BACKUP"].nil? ? File.join("#{file_list.first}_gitlab_backup.tar") : File.join(ENV["BACKUP"] + "_gitlab_backup.tar")
2012-07-10 14:12:19 +00:00
unless File.exists?(tar_file)
puts "The specified backup doesn't exist!"
2012-12-23 20:15:25 +00:00
exit 1
end
2012-12-23 20:15:25 +00:00
print "Unpacking backup ... "
2012-07-10 14:12:19 +00:00
unless Kernel.system("tar -xf #{tar_file}")
2012-12-23 20:15:25 +00:00
puts "failed".red
exit 1
else
2012-12-23 20:15:25 +00:00
puts "done".green
end
settings = YAML.load_file("backup_information.yml")
2012-11-19 19:58:54 +00:00
ENV["VERSION"] = "#{settings[:db_version]}" if settings[:db_version].to_i > 0
# backups directory is not always sub of Rails root and able to execute the git rev-parse below
begin
Dir.chdir(Rails.root)
# restoring mismatching backups can lead to unexpected problems
if settings[:gitlab_version] != %x{git rev-parse HEAD}.gsub(/\n/, "")
puts "GitLab version mismatch:".red
puts " Your current HEAD differs from the HEAD in the backup!".red
puts " Please switch to the following revision and try again:".red
puts " revision: #{settings[:gitlab_version]}".red
exit 1
end
ensure
# chdir back to original intended dir
Dir.chdir(Gitlab.config.backup.path)
end
Rake::Task["gitlab:backup:db:restore"].invoke
Rake::Task["gitlab:backup:repo:restore"].invoke
2013-04-10 12:41:47 +00:00
Rake::Task["gitlab:backup:uploads:restore"].invoke
Rake::Task["gitlab:shell:setup"].invoke
# cleanup: remove tmp files
2012-12-23 20:15:25 +00:00
print "Deleting tmp directories ... "
2013-04-10 12:41:47 +00:00
if Kernel.system("rm -rf repositories/ db/ uploads/ backup_information.yml")
2012-12-23 20:15:25 +00:00
puts "done".green
else
2012-12-23 20:15:25 +00:00
puts "failed".red
end
end
namespace :repo do
task create: :environment do
puts "Dumping repositories ...".blue
2013-04-05 16:01:19 +00:00
Backup::Repository.new.dump
puts "done".green
end
task restore: :environment do
2013-04-05 16:01:19 +00:00
puts "Restoring repositories ...".blue
Backup::Repository.new.restore
puts "done".green
end
end
namespace :db do
task create: :environment do
puts "Dumping database ... ".blue
2013-04-05 16:01:19 +00:00
Backup::Database.new.dump
puts "done".green
end
task restore: :environment do
puts "Restoring database ... ".blue
2013-04-05 16:01:19 +00:00
Backup::Database.new.restore
puts "done".green
end
end
2013-04-10 12:41:47 +00:00
namespace :uploads do
task create: :environment do
2013-04-10 12:41:47 +00:00
puts "Dumping uploads ... ".blue
Backup::Uploads.new.dump
puts "done".green
end
task restore: :environment do
2013-04-10 12:41:47 +00:00
puts "Restoring uploads ... ".blue
Backup::Uploads.new.restore
puts "done".green
end
end
end # namespace end: backup
end # namespace end: gitlab