summaryrefslogtreecommitdiff
path: root/lib/ci/backup/database.rb
blob: f7fa3f1833a1de0d0abcca27d31ddaec93496a3e (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
require 'yaml'

module Ci
  module Backup
    class Database
      attr_reader :config, :db_dir

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

      def dump
        success = case config["adapter"]
        when /^mysql/ then
          $progress.print "Dumping MySQL database #{config['database']} ... "
          system('mysqldump', *mysql_args, config['database'], out: db_file_name)
        when "postgresql" then
          $progress.print "Dumping PostgreSQL database #{config['database']} ... "
          pg_env
          system('pg_dump', config['database'], out: db_file_name)
        end
        report_success(success)
        abort 'Backup failed' unless success
      end

      def restore
        success = case config["adapter"]
        when /^mysql/ then
          $progress.print "Restoring MySQL database #{config['database']} ... "
          system('mysql', *mysql_args, config['database'], in: db_file_name)
        when "postgresql" then
          $progress.print "Restoring PostgreSQL database #{config['database']} ... "
          # Drop all tables because PostgreSQL DB dumps do not contain DROP TABLE
          # statements like MySQL.
          drop_all_tables
          drop_all_postgres_sequences
          pg_env
          system('psql', config['database'], '-f', db_file_name)
        end
        report_success(success)
        abort 'Restore failed' unless success
      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
      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

      def report_success(success)
        if success
          $progress.puts '[DONE]'.green
        else
          $progress.puts '[FAILED]'.red
        end
      end

      def drop_all_tables
        connection = ActiveRecord::Base.connection
        connection.tables.each do |table|
          connection.drop_table(table)
        end
      end

      def drop_all_postgres_sequences
        connection = ActiveRecord::Base.connection
        connection.execute("SELECT c.relname FROM pg_class c WHERE c.relkind = 'S';").each do |sequence|
          connection.execute("DROP SEQUENCE #{sequence['relname']}")
        end
      end
    end
  end
end