2015-02-10 11:25:24 -08:00

42 lines
1.1 KiB
Ruby

module Stripe
module APIOperations
module Request
module ClassMethods
@@opts_to_persist = Set.new([:api_key, :api_base, :stripe_account, :stripe_version])
def request(method, url, params={}, opts={})
opts = Util.normalize_opts(opts)
headers = opts.clone
api_key = headers.delete(:api_key)
api_base = headers.delete(:api_base)
# Assume all remaining opts must be headers
response, opts[:api_key] = Stripe.request(method, url, api_key, params, headers, api_base)
# Hash#select returns an array before 1.9
opts_to_persist = {}
opts.each do |k, v|
if @@opts_to_persist.include?(k)
opts_to_persist[k] = v
end
end
[response, opts_to_persist]
end
end
def self.included(base)
base.extend(ClassMethods)
end
protected
def request(method, url, params={}, opts={})
opts = @opts.merge(Util.normalize_opts(opts))
self.class.request(method, url, params, opts)
end
end
end
end