Class: Conjur::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/conjur/config.rb

Constant Summary collapse

@@attributes =
{}

Class Method Summary collapse

Class Method Details

.[](key) ⇒ Object



121
122
123
# File 'lib/conjur/config.rb', line 121

def [](key)
  @@attributes[key.to_s]
end

.applyObject



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
# File 'lib/conjur/config.rb', line 69

def apply
  require 'conjur/configuration'
  keys = Config.keys.dup
  keys.delete(:plugins)

  cfg = Conjur.configuration
  keys.each do |k|
    if Conjur.configuration.respond_to?("#{k}_env_var") && (env_var = Conjur.configuration.send("#{k}_env_var")) && (v = ENV[env_var])
      if Conjur.log
        Conjur.log << "Not overriding environment setting #{k}=#{v}\n"
      end
      next
    end
    value = Config[k]
    cfg.set k, value if value
  end

  if Conjur.log
    begin
      require 'conjur/api'
      Conjur.log << "Using authn host #{Conjur::Authn::API.host}\n"
    rescue RuntimeError
      raise $! unless $!.message == "Missing required option account"
    end
  end
  if Config[:cert_file]
    OpenSSL::SSL::SSLContext::DEFAULT_CERT_STORE.add_file Config[:cert_file]
  end
end

.clearObject



29
30
31
# File 'lib/conjur/config.rb', line 29

def clear
  @@attributes = {}
end

.default_config_filesObject



48
49
50
# File 'lib/conjur/config.rb', line 48

def default_config_files
  ['/etc/conjur.conf', user_config_files].flatten.uniq
end

.inspectObject



99
100
101
# File 'lib/conjur/config.rb', line 99

def inspect
  @@attributes.inspect
end

.keysObject



117
118
119
# File 'lib/conjur/config.rb', line 117

def keys
  @@attributes.keys.map(&:to_sym)
end

.load(config_files = default_config_files) ⇒ Object



52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/conjur/config.rb', line 52

def load(config_files = default_config_files)
  require 'yaml'
  require 'conjur/log'
  config_files.each do |f|
    if File.file?(f)
      if Conjur.log
        Conjur.log << "Loading #{f}\n"
      end
      config = YAML.load(IO.read(f)).stringify_keys rescue {}
      if config['cert_file']
        config['cert_file'] = File.expand_path(config['cert_file'], File.dirname(f))
      end
      Conjur::Config.merge config
    end
  end
end

.merge(a) ⇒ Object



112
113
114
115
# File 'lib/conjur/config.rb', line 112

def merge(a)
  a = {} unless a
  @@attributes.deep_merge!(a.stringify_keys)
end

.pluginsObject



103
104
105
106
107
108
109
110
# File 'lib/conjur/config.rb', line 103

def plugins
  plugins = @@attributes['plugins']
  if plugins
    plugins.is_a?(Array) ? plugins : plugins.split(',')
  else
    []
  end
end

.user_config_filesObject



33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/conjur/config.rb', line 33

def user_config_files
  if ENV['CONJURRC']
    return ENV['CONJURRC']
  else
    homefile = File.expand_path "~/.conjurrc"
    pwdfile = File.expand_path ".conjurrc"
    if homefile != pwdfile && File.file?(pwdfile)
      $stderr.puts "WARNING: .conjurrc file from current directory is " +
          "used. This behaviour is deprecated. Use ENV['CONJURRC'] to " +
          "explicitly define custom configuration file if needed"
    end
    [ homefile, pwdfile ]
  end
end