Sha256: a62e8d02a6dc6edaff0a03c8e6b7baa59dff8a250d2859b2f5356f2fe38168db

Contents?: true

Size: 1.57 KB

Versions: 2

Compression:

Stored size: 1.57 KB

Contents

module OmiseGO
  class Configuration
    OPTIONS = {
      access_key: -> { ENV['OMISEGO_ACCESS_KEY'] },
      secret_key: -> { ENV['OMISEGO_SECRET_KEY'] },
      base_url: -> { ENV['OMISEGO_BASE_URL'] },
      logger: nil
    }.freeze

    OMISEGO_OPTIONS = {
      api_version: '1',
      auth_scheme: 'OMGProvider',
      api_prefix: '/api/admin',
      models: {
        user: OmiseGO::User,
        error: OmiseGO::Error,
        authentication_token: OmiseGO::AuthenticationToken,
        wallet: OmiseGO::Wallet,
        balance: OmiseGO::Wallet,
        token: OmiseGO::Token,
        list: OmiseGO::List,
        setting: OmiseGO::Setting,
        transaction: OmiseGO::Transaction,
        exchange: OmiseGO::Exchange,
        transaction_source: OmiseGO::TransactionSource
      }
    }.freeze

    attr_accessor(*OPTIONS.keys)
    attr_reader(*OMISEGO_OPTIONS.keys)

    def initialize(options = {})
      OPTIONS.each do |name, val|
        value = options ? options[name] || options[name.to_sym] : nil
        value ||= val.call if val.respond_to?(:call)
        instance_variable_set("@#{name}", value)
      end

      OMISEGO_OPTIONS.each do |name, value|
        instance_variable_set("@#{name}", value)
      end
    end

    def [](option)
      instance_variable_get("@#{option}")
    end

    def to_hash
      OPTIONS.keys.each_with_object({}) do |option, hash|
        hash[option.to_sym] = self[option]
      end
    end

    def merge(options)
      OPTIONS.each_key do |name|
        instance_variable_set("@#{name}", options[name]) if options[name]
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
omisego-0.12.0 lib/omisego/configuration.rb
omisego-0.11.0 lib/omisego/configuration.rb