Sha256: cd12d5406c60b12dd5808334b4d80404d5bbdfbf313aa6cba0b53eb5e01a8916
Contents?: true
Size: 1.28 KB
Versions: 15
Compression:
Stored size: 1.28 KB
Contents
module Stripe module APIOperations module Request module ClassMethods OPTS_KEYS_TO_PERSIST = Set[:api_key, :api_base, :client, :stripe_account, :stripe_version] def request(method, url, params={}, opts={}) opts = Util.normalize_opts(opts) opts[:client] ||= StripeClient.active_client headers = opts.clone api_key = headers.delete(:api_key) api_base = headers.delete(:api_base) client = headers.delete(:client) # Assume all remaining opts must be headers resp, opts[:api_key] = client.execute_request( method, url, api_base: api_base, api_key: api_key, headers: headers, params: params ) # Hash#select returns an array before 1.9 opts_to_persist = {} opts.each do |k, v| if OPTS_KEYS_TO_PERSIST.include?(k) opts_to_persist[k] = v end end [resp, 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
Version data entries
15 entries across 15 versions & 1 rubygems