Permalink
Cannot retrieve contributors at this time
70 lines (56 sloc)
1.72 KB
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rom/support/configurable' | |
require 'rom/gateway' | |
module ROM | |
# Core gateway configuration interface | |
# | |
# @api public | |
class Environment | |
include Configurable | |
attr_reader :gateways, :gateways_map | |
# @api public | |
def initialize(*args) | |
@gateways = {} | |
@gateways_map = {} | |
configure_gateways(*args) unless args.empty? | |
end | |
private | |
def configure_gateways(*args) | |
normalized_gateway_args = normalize_gateway_args(*args) | |
normalized_gateways = normalize_gateways(normalized_gateway_args) | |
@gateways, @gateways_map = normalized_gateways.values_at(:gateways, :map) | |
normalized_gateway_args.each_with_object(config) do |(name, gateway_config), config| | |
options = gateway_config.is_a?(Array) && gateway_config.last | |
load_config(config.gateways[name], options) if options.is_a?(Hash) | |
end | |
end | |
# @api private | |
def normalize_gateway_args(*args) | |
args.first.is_a?(Hash) ? args.first : {default: args} | |
end | |
# Build gateways using the setup interface | |
# | |
# @api private | |
def normalize_gateways(gateways_config) | |
gateways_config.each_with_object({map: {}, gateways: {}}) do |(name, spec), hash| | |
identifier, *args = Array(spec) | |
if identifier.is_a?(Gateway) | |
gateway = identifier | |
else | |
gateway = Gateway.setup(identifier, *(args.flatten)) | |
hash[:map][gateway] = identifier | |
end | |
hash[:gateways][name] = gateway | |
end | |
end | |
# @api private | |
def load_config(config, hash) | |
hash.each do |key, value| | |
if value.is_a?(Hash) | |
load_config(config[key], value) | |
else | |
config.send("#{key}=", value) | |
end | |
end | |
end | |
end | |
end |