Class: Config::Options

Inherits:
OpenStruct
  • Object
show all
Includes:
Validation::Validate, Enumerable
Defined in:
lib/config/options.rb

Constant Summary collapse

SETTINGS_RESERVED_NAMES =

Some keywords that don’t play nicely with OpenStruct

%w[select collect test count zip min max exit!].freeze

Instance Method Summary collapse

Methods included from Validation::Validate

#validate!

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method_name, *args) ⇒ Object



182
183
184
185
186
187
# File 'lib/config/options.rb', line 182

def method_missing(method_name, *args)
  if Config.fail_on_missing && method_name !~ /.*(?==\z)/m
    raise KeyError, "key not found: #{method_name.inspect}" unless key?(method_name)
  end
  super
end

Instance Method Details

#[](param) ⇒ Object

An alternative mechanism for property access. This let’s you do foo along with foo.bar.



159
160
161
162
# File 'lib/config/options.rb', line 159

def [](param)
  return super if SETTINGS_RESERVED_NAMES.include?(param)
  send("#{param}")
end

#[]=(param, value) ⇒ Object



164
165
166
# File 'lib/config/options.rb', line 164

def []=(param, value)
  send("#{param}=", value)
end

#add_source!(source) ⇒ Object



17
18
19
20
21
22
23
24
# File 'lib/config/options.rb', line 17

def add_source!(source)
  # handle yaml file paths
  source = (Sources::YAMLSource.new(source)) if source.is_a?(String)
  source = (Sources::HashSource.new(source)) if source.is_a?(Hash)

  @config_sources ||= []
  @config_sources << source
end

#as_json(options = nil) ⇒ Object



135
136
137
# File 'lib/config/options.rb', line 135

def as_json(options = nil)
  to_hash.as_json(options)
end

#each(*args, &block) ⇒ Object



126
127
128
# File 'lib/config/options.rb', line 126

def each(*args, &block)
  marshal_dump.each(*args, &block)
end

#empty?Boolean

Returns:

  • (Boolean)


13
14
15
# File 'lib/config/options.rb', line 13

def empty?
  marshal_dump.empty?
end

#has_key?(key) ⇒ Boolean

Returns:

  • (Boolean)


178
179
180
# File 'lib/config/options.rb', line 178

def has_key?(key)
  table.has_key?(key)
end

#key?(key) ⇒ Boolean

Returns:

  • (Boolean)


174
175
176
# File 'lib/config/options.rb', line 174

def key?(key)
  table.key?(key)
end

#keysObject



9
10
11
# File 'lib/config/options.rb', line 9

def keys
  marshal_dump.keys
end

#merge!(hash) ⇒ Object



139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/config/options.rb', line 139

def merge!(hash)
  current = to_hash
  DeepMerge.deep_merge!(
                        hash.dup,
                        current,
                        preserve_unmergeables: false,
                        knockout_prefix:       Config.knockout_prefix,
                        overwrite_arrays:      Config.overwrite_arrays,
                        merge_nil_values:      Config.merge_nil_values,
                        merge_hash_arrays:     Config.merge_hash_arrays
                       )
  marshal_load(__convert(current).marshal_dump)
  self
end

#prepend_source!(source) ⇒ Object



26
27
28
29
30
31
32
# File 'lib/config/options.rb', line 26

def prepend_source!(source)
  source = (Sources::YAMLSource.new(source)) if source.is_a?(String)
  source = (Sources::HashSource.new(source)) if source.is_a?(Hash)

  @config_sources ||= []
  @config_sources.unshift(source)
end

#reload!Object Also known as: load!

look through all our sources and rebuild the configuration



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

def reload!
  conf = {}
  @config_sources.each do |source|
    source_conf = source.load

    if conf.empty?
      conf = source_conf
    else
      DeepMerge.deep_merge!(
                            source_conf,
                            conf,
                            preserve_unmergeables: false,
                            knockout_prefix:       Config.knockout_prefix,
                            overwrite_arrays:      Config.overwrite_arrays,
                            merge_nil_values:      Config.merge_nil_values,
                            merge_hash_arrays:     Config.merge_hash_arrays
                           )
    end
  end

  # swap out the contents of the OStruct with a hash (need to recursively convert)
  marshal_load(__convert(conf).marshal_dump)

  reload_env! if Config.use_env
  validate!

  self
end

#reload_env!Object Also known as: load_env!



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

def reload_env!
  return self if ENV.nil? || ENV.empty?

  hash = Hash.new

  ENV.each do |variable, value|
    separator = Config.env_separator
    prefix = (Config.env_prefix || Config.const_name).to_s.split(separator)

    keys = variable.to_s.split(separator)

    next if keys.shift(prefix.size) != prefix

    keys.map! { |key|
      case Config.env_converter
        when :downcase then
          key.downcase.to_sym
        when nil then
          key.to_sym
        else
          raise "Invalid ENV variables name converter: #{Config.env_converter}"
      end
    }

    leaf = keys[0...-1].inject(hash) { |h, key|
      h[key] ||= {}
    }

    unless leaf.is_a?(Hash)
      conflicting_key = (prefix + keys[0...-1]).join(separator)
      raise "Environment variable #{variable} conflicts with variable #{conflicting_key}"
    end

    leaf[keys.last] = Config.env_parse_values ? __value(value) : value
  end

  merge!(hash)
end

#reload_from_files(*files) ⇒ Object



107
108
109
110
# File 'lib/config/options.rb', line 107

def reload_from_files(*files)
  Config.load_and_set_settings(files)
  reload!
end

#respond_to_missing?(*args) ⇒ Boolean

Returns:

  • (Boolean)


189
190
191
# File 'lib/config/options.rb', line 189

def respond_to_missing?(*args)
  super
end

#to_hashObject



112
113
114
115
116
117
118
119
120
121
122
123
124
# File 'lib/config/options.rb', line 112

def to_hash
  result = {}
  marshal_dump.each do |k, v|
    if v.instance_of? Config::Options
      result[k] = v.to_hash
    elsif v.instance_of? Array
      result[k] = descend_array(v)
    else
      result[k] = v
    end
  end
  result
end

#to_json(*args) ⇒ Object



130
131
132
133
# File 'lib/config/options.rb', line 130

def to_json(*args)
  require "json" unless defined?(JSON)
  to_hash.to_json(*args)
end