Sha256: 729e4b51f08a93a0ecaca153f9b085155d4710288f9e37cd1b2399712afc1cd4

Contents?: true

Size: 1.65 KB

Versions: 16

Compression:

Stored size: 1.65 KB

Contents

# frozen_string_literal: true

module Anyway
  # Parses environment variables and provides
  # method-like access
  class Env
    using RubyNext
    using Anyway::Ext::DeepDup
    using Anyway::Ext::Hash

    class << self
      def from_hash(hash, prefix: nil, memo: {})
        hash.each do |key, value|
          prefix_with_key = (prefix && !prefix.empty?) ? "#{prefix}_#{key.to_s.upcase}" : key.to_s.upcase

          if value.is_a?(Hash)
            from_hash(value, prefix: "#{prefix_with_key}_", memo:)
          else
            memo[prefix_with_key] = value.to_s
          end
        end

        memo
      end
    end

    include Tracing

    attr_reader :data, :traces, :type_cast, :env_container

    def initialize(type_cast: AutoCast, env_container: ENV)
      @type_cast = type_cast
      @data = {}
      @traces = {}
      @env_container = env_container
    end

    def clear
      data.clear
      traces.clear
    end

    def fetch(prefix)
      return data[prefix].deep_dup if data.key?(prefix)

      Tracing.capture do
        data[prefix] = parse_env(prefix)
      end.then do |trace|
        traces[prefix] = trace
      end

      data[prefix].deep_dup
    end

    def fetch_with_trace(prefix)
      [fetch(prefix), traces[prefix]]
    end

    private

    def parse_env(prefix)
      match_prefix = prefix.empty? ? prefix : "#{prefix}_"
      env_container.each_pair.with_object({}) do |(key, val), data|
        next unless key.start_with?(match_prefix)

        path = key.sub(/^#{match_prefix}/, "").downcase

        paths = path.split("__")
        trace!(:env, *paths, key:) { data.bury(type_cast.call(val), *paths) }
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
anyway_config-2.6.4 lib/anyway/env.rb
anyway_config-2.6.3 lib/anyway/env.rb
anyway_config-2.6.2 lib/anyway/env.rb
anyway_config-2.6.1 lib/anyway/env.rb
anyway_config-2.6.0 lib/anyway/env.rb
runger_config-2.7.0 lib/anyway/env.rb
runger_config-2.6.1 lib/anyway/env.rb
runger_config-2.6.0 lib/anyway/env.rb
anyway_config-2.5.4 lib/anyway/env.rb
anyway_config-2.5.3 lib/anyway/env.rb
anyway_config-2.5.2 lib/anyway/env.rb
anyway_config-2.5.1 lib/anyway/env.rb
anyway_config-2.5.0 lib/anyway/env.rb
anyway_config-2.4.2 lib/anyway/env.rb
anyway_config-2.4.1 lib/anyway/env.rb
anyway_config-2.4.0 lib/anyway/env.rb