Welcome to mirror list, hosted at ThFree Co, Russian Federation.

backup.rb « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad80ab1c7f70a77beba082816b35a965f85ecd85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
require 'yaml'

class Backup
  attr_reader :config, :db_dir

  def initialize
    @config = YAML.load_file(File.join(Rails.root,'config','database.yml'))[Rails.env]
    @db_dir = File.join(Gitlab.config.backup.path, 'db')
    FileUtils.mkdir_p(@db_dir) unless Dir.exists?(@db_dir)
  end

  def backup_db
    case config["adapter"]
    when /^mysql/ then
      system("mysqldump #{mysql_args} #{config['database']} > #{db_file_name}")
    when "postgresql" then
      pg_env
      system("pg_dump #{config['database']} > #{db_file_name}")
    end
  end

  def restore_db
    case config["adapter"]
    when /^mysql/ then
      system("mysql #{mysql_args} #{config['database']} < #{db_file_name}")
    when "postgresql" then
      pg_env
      system("pg_restore #{config['database']} #{db_file_name}")
    end
  end

  protected

  def db_file_name
    File.join(db_dir, 'database.sql')
  end

  def mysql_args
    args = {
      'host'      => '--host',
      'port'      => '--port',
      'socket'    => '--socket',
      'username'  => '--user',
      'encoding'  => '--default-character-set',
      'password'  => '--password'
    }
    args.map { |opt, arg| "#{arg}=#{config[opt]}" if config[opt] }.compact.join(' ')
  end

  def pg_env
    ENV['PGUSER']     = config["username"] if config["username"]
    ENV['PGHOST']     = config["host"] if config["host"]
    ENV['PGPORT']     = config["port"].to_s if config["port"]
    ENV['PGPASSWORD'] = config["password"].to_s if config["password"]
  end
end