repository.rb 4.2 KB
Newer Older
D
Dmitriy Zaporozhets 已提交
1 2 3 4 5 6 7 8 9 10
require 'yaml'

module Backup
  class Repository
    attr_reader :repos_path

    def dump
      prepare

      Project.find_each(batch_size: 1000) do |project|
11
        $progress.print " * #{project.path_with_namespace} ... "
D
Dmitriy Zaporozhets 已提交
12 13 14 15

        # Create namespace dir if missing
        FileUtils.mkdir_p(File.join(backup_repos_path, project.namespace.path)) if project.namespace

16
        if project.empty_repo?
17
          $progress.puts "[SKIPPED]".cyan
D
Dmitriy Zaporozhets 已提交
18
        else
19
          cmd = %W(tar -cf #{path_to_bundle(project)} -C #{path_to_repo(project)} .)
20
          output, status = Gitlab::Popen.popen(cmd)
J
Jacob Vosmaer 已提交
21
          if status.zero?
22
            $progress.puts "[DONE]".green
J
Jacob Vosmaer 已提交
23 24
          else
            puts "[FAILED]".red
25
            puts "failed: #{cmd.join(' ')}"
J
Jacob Vosmaer 已提交
26 27 28
            puts output
            abort 'Backup failed'
          end
D
Dmitriy Zaporozhets 已提交
29
        end
30

31
        wiki = ProjectWiki.new(project)
32 33

        if File.exists?(path_to_repo(wiki))
34
          $progress.print " * #{wiki.path_with_namespace} ... "
35
          if wiki.repository.empty?
36
            $progress.puts " [SKIPPED]".cyan
37
          else
38
            cmd = %W(#{Gitlab.config.git.bin_path} --git-dir=#{path_to_repo(wiki)} bundle create #{path_to_bundle(wiki)} --all)
39
            output, status = Gitlab::Popen.popen(cmd)
J
Jacob Vosmaer 已提交
40
            if status.zero?
41
              $progress.puts " [DONE]".green
J
Jacob Vosmaer 已提交
42 43
            else
              puts " [FAILED]".red
44
              puts "failed: #{cmd.join(' ')}"
J
Jacob Vosmaer 已提交
45 46
              abort 'Backup failed'
            end
47 48
          end
        end
D
Dmitriy Zaporozhets 已提交
49 50 51 52 53 54
      end
    end

    def restore
      if File.exists?(repos_path)
        # Move repos dir to 'repositories.old' dir
55
        bk_repos_path = File.join(repos_path, '..', 'repositories.old.' + Time.now.to_i.to_s)
D
Dmitriy Zaporozhets 已提交
56 57 58 59 60 61
        FileUtils.mv(repos_path, bk_repos_path)
      end

      FileUtils.mkdir_p(repos_path)

      Project.find_each(batch_size: 1000) do |project|
A
Achilleas Pipinellis 已提交
62
        $progress.print " * #{project.path_with_namespace} ... "
D
Dmitriy Zaporozhets 已提交
63 64 65

        project.namespace.ensure_dir_exist if project.namespace

66
        if File.exists?(path_to_bundle(project))
67 68
          FileUtils.mkdir_p(path_to_repo(project))
          cmd = %W(tar -xf #{path_to_bundle(project)} -C #{path_to_repo(project)})
69
        else
70
          cmd = %W(#{Gitlab.config.git.bin_path} init --bare #{path_to_repo(project)})
71 72 73
        end

        if system(*cmd, silent)
74
          $progress.puts "[DONE]".green
D
Dmitriy Zaporozhets 已提交
75 76
        else
          puts "[FAILED]".red
77
          puts "failed: #{cmd.join(' ')}"
J
Jacob Vosmaer 已提交
78
          abort 'Restore failed'
D
Dmitriy Zaporozhets 已提交
79
        end
80

81
        wiki = ProjectWiki.new(project)
82 83

        if File.exists?(path_to_bundle(wiki))
A
Achilleas Pipinellis 已提交
84 85 86 87 88 89
          $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))
90
          cmd = %W(#{Gitlab.config.git.bin_path} clone --bare #{path_to_bundle(wiki)} #{path_to_repo(wiki)})
91

A
Achilleas Pipinellis 已提交
92 93 94 95 96 97 98
          if system(*cmd, silent)
            $progress.puts " [DONE]".green
          else
            puts " [FAILED]".red
            puts "failed: #{cmd.join(' ')}"
            abort 'Restore failed'
          end
99
        end
D
Dmitriy Zaporozhets 已提交
100
      end
101

102 103 104 105
      $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
106 107
      else
        puts " [FAILED]".red
108
        puts "failed: #{cmd}"
109 110
      end

D
Dmitriy Zaporozhets 已提交
111 112 113 114 115
    end

    protected

    def path_to_repo(project)
116
      project.repository.path_to_repo
D
Dmitriy Zaporozhets 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
    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)
133 134 135 136
      # 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)
D
Dmitriy Zaporozhets 已提交
137
    end
138 139 140 141

    def silent
      {err: '/dev/null', out: '/dev/null'}
    end
D
Dmitriy Zaporozhets 已提交
142 143
  end
end