2013-04-05 12:01:19 -04:00
|
|
|
require 'yaml'
|
|
|
|
|
|
|
|
module Backup
|
|
|
|
class Repository
|
|
|
|
attr_reader :repos_path
|
|
|
|
|
|
|
|
def dump
|
|
|
|
prepare
|
|
|
|
|
|
|
|
Project.find_each(batch_size: 1000) do |project|
|
2014-11-20 09:46:04 -05:00
|
|
|
$progress.print " * #{project.path_with_namespace} ... "
|
2013-04-05 12:01:19 -04:00
|
|
|
|
|
|
|
# Create namespace dir if missing
|
|
|
|
FileUtils.mkdir_p(File.join(backup_repos_path, project.namespace.path)) if project.namespace
|
|
|
|
|
2014-05-08 16:49:27 -04:00
|
|
|
if project.empty_repo?
|
2014-11-20 09:46:04 -05:00
|
|
|
$progress.puts "[SKIPPED]".cyan
|
2013-04-05 12:01:19 -04:00
|
|
|
else
|
2015-03-18 14:40:16 -04:00
|
|
|
cmd = %W(tar -cf #{path_to_bundle(project)} -C #{path_to_repo(project)} .)
|
2014-11-20 09:46:04 -05:00
|
|
|
output, status = Gitlab::Popen.popen(cmd)
|
2014-10-01 09:43:27 -04:00
|
|
|
if status.zero?
|
2014-11-20 09:46:04 -05:00
|
|
|
$progress.puts "[DONE]".green
|
2014-10-01 09:43:27 -04:00
|
|
|
else
|
|
|
|
puts "[FAILED]".red
|
2014-11-20 09:46:04 -05:00
|
|
|
puts "failed: #{cmd.join(' ')}"
|
2014-10-01 09:43:27 -04:00
|
|
|
puts output
|
|
|
|
abort 'Backup failed'
|
|
|
|
end
|
2013-04-05 12:01:19 -04:00
|
|
|
end
|
2013-04-05 14:20:11 -04:00
|
|
|
|
2014-04-09 07:35:58 -04:00
|
|
|
wiki = ProjectWiki.new(project)
|
2013-04-05 14:20:11 -04:00
|
|
|
|
|
|
|
if File.exists?(path_to_repo(wiki))
|
2014-11-20 09:46:04 -05:00
|
|
|
$progress.print " * #{wiki.path_with_namespace} ... "
|
2014-10-20 04:52:29 -04:00
|
|
|
if wiki.repository.empty?
|
2014-11-20 09:46:04 -05:00
|
|
|
$progress.puts " [SKIPPED]".cyan
|
2013-04-05 14:20:11 -04:00
|
|
|
else
|
2015-11-03 17:10:38 -05:00
|
|
|
cmd = %W(#{Gitlab.config.git.bin_path} --git-dir=#{path_to_repo(wiki)} bundle create #{path_to_bundle(wiki)} --all)
|
2014-11-20 09:46:04 -05:00
|
|
|
output, status = Gitlab::Popen.popen(cmd)
|
2014-10-01 09:43:27 -04:00
|
|
|
if status.zero?
|
2014-11-20 09:46:04 -05:00
|
|
|
$progress.puts " [DONE]".green
|
2014-10-01 09:43:27 -04:00
|
|
|
else
|
|
|
|
puts " [FAILED]".red
|
2014-11-20 09:46:04 -05:00
|
|
|
puts "failed: #{cmd.join(' ')}"
|
2014-10-01 09:43:27 -04:00
|
|
|
abort 'Backup failed'
|
|
|
|
end
|
2013-04-05 14:20:11 -04:00
|
|
|
end
|
|
|
|
end
|
2013-04-05 12:01:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def restore
|
|
|
|
if File.exists?(repos_path)
|
|
|
|
# Move repos dir to 'repositories.old' dir
|
2013-04-05 12:48:56 -04:00
|
|
|
bk_repos_path = File.join(repos_path, '..', 'repositories.old.' + Time.now.to_i.to_s)
|
2013-04-05 12:01:19 -04:00
|
|
|
FileUtils.mv(repos_path, bk_repos_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
FileUtils.mkdir_p(repos_path)
|
|
|
|
|
|
|
|
Project.find_each(batch_size: 1000) do |project|
|
2014-11-30 11:24:05 -05:00
|
|
|
$progress.print " * #{project.path_with_namespace} ... "
|
2013-04-05 12:01:19 -04:00
|
|
|
|
|
|
|
project.namespace.ensure_dir_exist if project.namespace
|
|
|
|
|
2014-11-13 07:09:47 -05:00
|
|
|
if File.exists?(path_to_bundle(project))
|
2015-03-18 14:40:16 -04:00
|
|
|
FileUtils.mkdir_p(path_to_repo(project))
|
|
|
|
cmd = %W(tar -xf #{path_to_bundle(project)} -C #{path_to_repo(project)})
|
2014-11-13 07:09:47 -05:00
|
|
|
else
|
2015-11-03 17:10:38 -05:00
|
|
|
cmd = %W(#{Gitlab.config.git.bin_path} init --bare #{path_to_repo(project)})
|
2014-11-13 07:09:47 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
if system(*cmd, silent)
|
2014-11-20 09:46:04 -05:00
|
|
|
$progress.puts "[DONE]".green
|
2013-04-05 12:01:19 -04:00
|
|
|
else
|
|
|
|
puts "[FAILED]".red
|
2014-11-20 09:46:04 -05:00
|
|
|
puts "failed: #{cmd.join(' ')}"
|
2014-10-01 09:43:27 -04:00
|
|
|
abort 'Restore failed'
|
2013-04-05 12:01:19 -04:00
|
|
|
end
|
2013-04-05 14:20:11 -04:00
|
|
|
|
2014-04-09 07:35:58 -04:00
|
|
|
wiki = ProjectWiki.new(project)
|
2013-04-05 14:20:11 -04:00
|
|
|
|
|
|
|
if File.exists?(path_to_bundle(wiki))
|
2014-11-30 11:24:05 -05:00
|
|
|
$progress.print " * #{wiki.path_with_namespace} ... "
|
|
|
|
|
|
|
|
# If a wiki bundle exists, first remove the empty repo
|
|
|
|
# that was initialized with ProjectWiki.new() and then
|
|
|
|
# try to restore with 'git clone --bare'.
|
|
|
|
FileUtils.rm_rf(path_to_repo(wiki))
|
2015-11-03 17:10:38 -05:00
|
|
|
cmd = %W(#{Gitlab.config.git.bin_path} clone --bare #{path_to_bundle(wiki)} #{path_to_repo(wiki)})
|
2014-11-29 14:59:28 -05:00
|
|
|
|
2014-11-30 11:24:05 -05:00
|
|
|
if system(*cmd, silent)
|
|
|
|
$progress.puts " [DONE]".green
|
|
|
|
else
|
|
|
|
puts " [FAILED]".red
|
|
|
|
puts "failed: #{cmd.join(' ')}"
|
|
|
|
abort 'Restore failed'
|
|
|
|
end
|
2013-04-05 14:20:11 -04:00
|
|
|
end
|
2013-04-05 12:01:19 -04:00
|
|
|
end
|
2013-04-10 08:11:45 -04:00
|
|
|
|
2014-11-20 09:46:04 -05:00
|
|
|
$progress.print 'Put GitLab hooks in repositories dirs'.yellow
|
|
|
|
cmd = "#{Gitlab.config.gitlab_shell.path}/bin/create-hooks"
|
|
|
|
if system(cmd)
|
|
|
|
$progress.puts " [DONE]".green
|
2013-04-10 08:11:45 -04:00
|
|
|
else
|
|
|
|
puts " [FAILED]".red
|
2014-11-20 09:46:04 -05:00
|
|
|
puts "failed: #{cmd}"
|
2013-04-10 08:11:45 -04:00
|
|
|
end
|
|
|
|
|
2013-04-05 12:01:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def path_to_repo(project)
|
2014-11-05 11:51:08 -05:00
|
|
|
project.repository.path_to_repo
|
2013-04-05 12:01:19 -04: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)
|
2015-07-30 04:17:34 -04:00
|
|
|
# Ensure the parent dir of backup_repos_path exists
|
|
|
|
FileUtils.mkdir_p(Gitlab.config.backup.path)
|
|
|
|
# Fail if somebody raced to create backup_repos_path before us
|
|
|
|
FileUtils.mkdir(backup_repos_path, mode: 0700)
|
2013-04-05 12:01:19 -04:00
|
|
|
end
|
2013-11-05 09:00:48 -05:00
|
|
|
|
|
|
|
def silent
|
|
|
|
{err: '/dev/null', out: '/dev/null'}
|
|
|
|
end
|
2013-04-05 12:01:19 -04:00
|
|
|
end
|
|
|
|
end
|