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

125 lines
3.3 KiB
Ruby
Raw Normal View History

2013-04-05 16:01:19 +00:00
require 'yaml'
module Backup
class Repository
attr_reader :repos_path
def dump
prepare
Project.find_each(batch_size: 1000) do |project|
print " * #{project.path_with_namespace} ... "
# Create namespace dir if missing
FileUtils.mkdir_p(File.join(backup_repos_path, project.namespace.path)) if project.namespace
if project.empty_repo?
puts "[SKIPPED]".cyan
2013-04-05 16:01:19 +00:00
else
output, status = Gitlab::Popen.popen(%W(git --git-dir=#{path_to_repo(project)} bundle create #{path_to_bundle(project)} --all))
if status.zero?
puts "[DONE]".green
else
puts "[FAILED]".red
puts output
abort 'Backup failed'
end
2013-04-05 16:01:19 +00:00
end
2013-04-05 18:20:11 +00:00
wiki = ProjectWiki.new(project)
2013-04-05 18:20:11 +00:00
if File.exists?(path_to_repo(wiki))
print " * #{wiki.path_with_namespace} ... "
if wiki.repository.empty?
puts " [SKIPPED]".cyan
2013-04-05 18:20:11 +00:00
else
output, status = Gitlab::Popen.popen(%W(git --git-dir=#{path_to_repo(wiki)} bundle create #{path_to_bundle(wiki)} --all))
if status.zero?
puts " [DONE]".green
else
puts " [FAILED]".red
abort 'Backup failed'
end
2013-04-05 18:20:11 +00:00
end
end
2013-04-05 16:01:19 +00:00
end
end
def restore
if File.exists?(repos_path)
# Move repos dir to 'repositories.old' dir
bk_repos_path = File.join(repos_path, '..', 'repositories.old.' + Time.now.to_i.to_s)
2013-04-05 16:01:19 +00:00
FileUtils.mv(repos_path, bk_repos_path)
end
FileUtils.mkdir_p(repos_path)
Project.find_each(batch_size: 1000) do |project|
print "#{project.path_with_namespace} ... "
project.namespace.ensure_dir_exist if project.namespace
if File.exists?(path_to_bundle(project))
cmd = %W(git clone --bare #{path_to_bundle(project)} #{path_to_repo(project)})
else
cmd = %W(git init --bare #{path_to_repo(project)})
end
if system(*cmd, silent)
2013-04-05 16:01:19 +00:00
puts "[DONE]".green
else
puts "[FAILED]".red
abort 'Restore failed'
2013-04-05 16:01:19 +00:00
end
2013-04-05 18:20:11 +00:00
wiki = ProjectWiki.new(project)
2013-04-05 18:20:11 +00:00
if File.exists?(path_to_bundle(wiki))
print " * #{wiki.path_with_namespace} ... "
2013-11-05 14:00:48 +00:00
if system(*%W(git clone --bare #{path_to_bundle(wiki)} #{path_to_repo(wiki)}), silent)
2013-04-05 18:20:11 +00:00
puts " [DONE]".green
else
puts " [FAILED]".red
abort 'Restore failed'
2013-04-05 18:20:11 +00:00
end
end
2013-04-05 16:01:19 +00:00
end
2013-04-10 12:11:45 +00:00
print 'Put GitLab hooks in repositories dirs'.yellow
if system("#{Gitlab.config.gitlab_shell.path}/bin/create-hooks")
2013-04-10 12:11:45 +00:00
puts " [DONE]".green
else
puts " [FAILED]".red
end
2013-04-05 16:01:19 +00:00
end
protected
def path_to_repo(project)
2014-11-05 16:51:08 +00:00
project.repository.path_to_repo
2013-04-05 16:01:19 +00:00
end
def path_to_bundle(project)
File.join(backup_repos_path, project.path_with_namespace + ".bundle")
end
def repos_path
Gitlab.config.gitlab_shell.repos_path
end
def backup_repos_path
File.join(Gitlab.config.backup.path, "repositories")
end
def prepare
FileUtils.rm_rf(backup_repos_path)
FileUtils.mkdir_p(backup_repos_path)
end
2013-11-05 14:00:48 +00:00
def silent
{err: '/dev/null', out: '/dev/null'}
end
2013-04-05 16:01:19 +00:00
end
end