Sha256: e99e5fb5070e21e3184f35a00181509a962963bcfd664017c78196b0b081d12e

Contents?: true

Size: 1.27 KB

Versions: 4

Compression:

Stored size: 1.27 KB

Contents

require 'pathname'
require 'yaml'
require 'erb'

module Honeybadger
  class Config
    class Yaml < ::Hash
      def initialize(path, env = 'production')
        @path = path.kind_of?(Pathname) ? path : Pathname.new(path)

        if !@path.exist?
          raise ConfigError, "The configuration file #{@path} was not found."
        elsif !@path.file?
          raise ConfigError, "The configuration file #{@path} is not a file."
        elsif !@path.readable?
          raise ConfigError, "The configuration file #{@path} is not readable."
        else
          yaml = YAML.load(ERB.new(@path.read).result)
          yaml.merge!(yaml[env]) if yaml[env].kind_of?(Hash)
          update(dotify_keys(yaml))
        end

      rescue StandardError => e
        raise ConfigError, "An unknown error occured: #{e.class} -- #{e.message}\n\t#{e.backtrace.first}"
      end

      private

      def dotify_keys(hash, key_prefix = nil)
        {}.tap do |new_hash|
          hash.each_pair do |k,v|
            k = [key_prefix, k].compact.join('.')
            if v.kind_of?(Hash)
              new_hash.update(dotify_keys(v, k))
            else
              next if DISALLOWED_KEYS.include?(k.to_sym)
              new_hash[k.to_sym] = v
            end
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
honeybadger-2.0.6 lib/honeybadger/config/yaml.rb
honeybadger-2.0.5 lib/honeybadger/config/yaml.rb
honeybadger-2.0.4 lib/honeybadger/config/yaml.rb
honeybadger-2.0.3 lib/honeybadger/config/yaml.rb