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

database_configuration.rb « backup « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a6a476f9c104baf62a8a6059b299144a378aadd (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
95
96
97
98
99
100
101
102
103
104
105
106
107
# frozen_string_literal: true

module Backup
  class DatabaseConfiguration
    # Connection name is the key used in `config/database.yml` for multi-database connection configuration
    #
    # @return [String]
    attr_reader :connection_name

    # ActiveRecord base model that is configured to connect to the database identified by connection_name key
    #
    # @return [ActiveRecord::Base]
    attr_reader :source_model

    # Initializes configuration
    #
    # @param [String] connection_name the key from `database.yml` for multi-database connection configuration
    def initialize(connection_name)
      @connection_name = connection_name
      @source_model = Gitlab::Database.database_base_models_with_gitlab_shared[connection_name] ||
        Gitlab::Database.database_base_models_with_gitlab_shared['main']
      @activerecord_database_config = ActiveRecord::Base.configurations.find_db_config(connection_name)
    end

    # ENV variables that can override each database configuration
    # These are used along with OVERRIDE_PREFIX and database name
    # @see #process_config_overrides!
    SUPPORTED_OVERRIDES = {
      username: 'PGUSER',
      host: 'PGHOST',
      port: 'PGPORT',
      password: 'PGPASSWORD',
      # SSL
      sslmode: 'PGSSLMODE',
      sslkey: 'PGSSLKEY',
      sslcert: 'PGSSLCERT',
      sslrootcert: 'PGSSLROOTCERT',
      sslcrl: 'PGSSLCRL',
      sslcompression: 'PGSSLCOMPRESSION'
    }.freeze

    # Prefixes used for ENV variables overriding database configuration
    OVERRIDE_PREFIXES = %w[GITLAB_BACKUP_ GITLAB_OVERRIDE_].freeze

    # Return the HashConfig for the database
    #
    # @return [ActiveRecord::DatabaseConfigurations::HashConfig]
    def activerecord_configuration
      ActiveRecord::DatabaseConfigurations::HashConfig.new(
        @activerecord_database_config.env_name,
        connection_name,
        activerecord_variables
      )
    end

    # Return postgres ENV variable values for current database with overrided values
    #
    # @return[Hash<String,String>] hash of postgres ENV variables
    def pg_env_variables
      process_config_overrides! unless @pg_env_variables

      @pg_env_variables
    end

    # Return activerecord configuration values for current database with overrided values
    #
    # @return[Hash<String,String>] activerecord database.yml configuration compatible values
    def activerecord_variables
      process_config_overrides! unless @activerecord_variables

      @activerecord_variables
    end

    private

    def process_config_overrides!
      @activerecord_variables = original_activerecord_config
      @pg_env_variables = {}

      SUPPORTED_OVERRIDES.each do |config_key, env_variable_name|
        # This enables the use of different PostgreSQL settings in
        # case PgBouncer is used. PgBouncer clears the search path,
        # which wreaks havoc on Rails if connections are reused.
        OVERRIDE_PREFIXES.each do |override_prefix|
          override_all = "#{override_prefix}#{env_variable_name}"
          override_db = "#{override_prefix}#{connection_name.upcase}_#{env_variable_name}"
          val = ENV[override_db].presence ||
            ENV[override_all].presence ||
            @activerecord_variables[config_key].to_s.presence

          next unless val

          @pg_env_variables[env_variable_name] = val
          @activerecord_variables[config_key] = val
        end
      end
    end

    # Return the database configuration from rails config/database.yml file
    # in the format expected by ActiveRecord::DatabaseConfigurations::HashConfig
    #
    # @return [Hash] configuration hash
    def original_activerecord_config
      @activerecord_database_config.configuration_hash.dup
    end
  end
end