manager.rb 5.4 KB
Newer Older
1 2 3
module Backup
  class Manager
    def pack
4 5 6
      # Make sure there is a connection
      ActiveRecord::Base.connection.reconnect!

7 8 9 10
      # saving additional informations
      s = {}
      s[:db_version]         = "#{ActiveRecord::Migrator.current_version}"
      s[:backup_created_at]  = Time.now
11
      s[:gitlab_version]     = Gitlab::VERSION
12
      s[:tar_version]        = tar_version
13
      s[:skipped]            = ENV["SKIP"]
14
      tar_file = "#{s[:backup_created_at].to_i}_gitlab_backup.tar"
15

V
Vinnie Okada 已提交
16 17 18 19 20 21 22 23
      Dir.chdir(Gitlab.config.backup.path) do
        File.open("#{Gitlab.config.backup.path}/backup_information.yml",
                  "w+") do |file|
          file << s.to_yaml.gsub(/^---\n/,'')
        end

        # create archive
        $progress.print "Creating backup archive: #{tar_file} ... "
24 25 26
        # Set file permissions on open to prevent chmod races.
        tar_system_options = {out: [tar_file, 'w', Gitlab.config.backup.archive_permissions]}
        if Kernel.system('tar', '-cf', '-', *backup_contents, tar_system_options)
V
Vinnie Okada 已提交
27 28 29 30 31 32 33
          $progress.puts "done".green
        else
          puts "creating archive #{tar_file} failed".red
          abort 'Backup failed'
        end

        upload(tar_file)
34
      end
35 36 37 38
    end

    def upload(tar_file)
      remote_directory = Gitlab.config.backup.upload.remote_directory
39
      $progress.print "Uploading backup archive to remote storage #{remote_directory} ... "
40 41 42

      connection_settings = Gitlab.config.backup.upload.connection
      if connection_settings.blank?
43
        $progress.puts "skipped".yellow
44 45 46 47 48
        return
      end

      connection = ::Fog::Storage.new(connection_settings)
      directory = connection.directories.get(remote_directory)
49

50
      if directory.files.create(key: tar_file, body: File.open(tar_file), public: false,
51 52
          multipart_chunk_size: Gitlab.config.backup.upload.multipart_chunk_size,
          encryption: Gitlab.config.backup.upload.encryption)
53
        $progress.puts "done".green
54
      else
55
        puts "uploading backup to #{remote_directory} failed".red
J
Jacob Vosmaer 已提交
56
        abort 'Backup failed'
57 58 59 60
      end
    end

    def cleanup
61
      $progress.print "Deleting tmp directories ... "
62

63 64 65
      backup_contents.each do |dir|
        next unless File.exist?(File.join(Gitlab.config.backup.path, dir))

66 67 68 69 70 71
        if FileUtils.rm_rf(File.join(Gitlab.config.backup.path, dir))
          $progress.puts "done".green
        else
          puts "deleting tmp directory '#{dir}' failed".red
          abort 'Backup failed'
        end
72 73 74 75 76
      end
    end

    def remove_old
      # delete backups
77
      $progress.print "Deleting old backups ... "
78 79 80 81
      keep_time = Gitlab.config.backup.keep_time.to_i

      if keep_time > 0
        removed = 0
82

83 84 85 86 87 88 89 90
        Dir.chdir(Gitlab.config.backup.path) do
          file_list = Dir.glob('*_gitlab_backup.tar')
          file_list.map! { |f| $1.to_i if f =~ /(\d+)_gitlab_backup.tar/ }
          file_list.sort.each do |timestamp|
            if Time.at(timestamp) < (Time.now - keep_time)
              if Kernel.system(*%W(rm #{timestamp}_gitlab_backup.tar))
                removed += 1
              end
91 92 93
            end
          end
        end
94

95
        $progress.puts "done. (#{removed} removed)".green
96
      else
97
        $progress.puts "skipping".yellow
98 99 100 101 102 103 104 105 106
      end
    end

    def unpack
      Dir.chdir(Gitlab.config.backup.path)

      # check for existing backups in the backup dir
      file_list = Dir.glob("*_gitlab_backup.tar").each.map { |f| f.split(/_/).first.to_i }
      puts "no backups found" if file_list.count == 0
107

108 109 110 111 112 113 114 115 116 117 118 119 120
      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"
        exit 1
      end

      tar_file = ENV["BACKUP"].nil? ? File.join("#{file_list.first}_gitlab_backup.tar") : File.join(ENV["BACKUP"] + "_gitlab_backup.tar")

      unless File.exists?(tar_file)
        puts "The specified backup doesn't exist!"
        exit 1
      end

121
      $progress.print "Unpacking backup ... "
122

123
      unless Kernel.system(*%W(tar -xf #{tar_file}))
124
        puts "unpacking backup failed".red
125 126
        exit 1
      else
127
        $progress.puts "done".green
128 129 130 131
      end

      ENV["VERSION"] = "#{settings[:db_version]}" if settings[:db_version].to_i > 0

132 133 134 135 136 137 138 139 140
      # restoring mismatching backups can lead to unexpected problems
      if settings[:gitlab_version] != Gitlab::VERSION
        puts "GitLab version mismatch:".red
        puts "  Your current GitLab version (#{Gitlab::VERSION}) differs from the GitLab version in the backup!".red
        puts "  Please switch to the following version and try again:".red
        puts "  version: #{settings[:gitlab_version]}".red
        puts
        puts "Hint: git checkout v#{settings[:gitlab_version]}"
        exit 1
141 142
      end
    end
143 144 145

    def tar_version
      tar_version, _ = Gitlab::Popen.popen(%W(tar --version))
146
      tar_version.force_encoding('locale').split("\n").first
147
    end
148 149 150 151 152 153 154 155

    def skipped?(item)
      settings[:skipped] && settings[:skipped].include?(item)
    end

    private

    def backup_contents
156
      folders_to_backup + archives_to_backup + ["backup_information.yml"]
157 158
    end

159
    def archives_to_backup
160
      %w{uploads builds artifacts lfs}.map{ |name| (name + ".tar.gz") unless skipped?(name) }.compact
161
    end
162

163
    def folders_to_backup
M
Marin Jankovski 已提交
164
      %w{repositories db}.reject{ |name| skipped?(name) }
165 166 167 168 169
    end

    def settings
      @settings ||= YAML.load_file("backup_information.yml")
    end
170 171
  end
end