class Braintree::ClientTokenGateway
Public Class Methods
Source
# File lib/braintree/client_token_gateway.rb, line 28 def self._generate_signature [ :address_id, :customer_id, :proxy_merchant_id, :merchant_account_id, :version, {:domains => [:_any_key_]}, {:options => [:fail_on_duplicate_payment_method, :fail_on_duplicate_payment_method_for_customer, :make_default, :verify_card]} ] end
Source
# File lib/braintree/client_token_gateway.rb, line 5 def initialize(gateway) @gateway = gateway @config = gateway.config @config.assert_has_access_token_or_keys end
Public Instance Methods
Source
# File lib/braintree/client_token_gateway.rb, line 37 def _validate_options(options) [:fail_on_duplicate_payment_method, :fail_on_duplicate_payment_method_for_customer, :make_default, :verify_card].each do |credit_card_option| if options[credit_card_option] raise ArgumentError.new("cannot specify #{credit_card_option} without a customer_id") unless options[:customer_id] end end end
Source
# File lib/braintree/client_token_gateway.rb, line 11 def generate(options={}) _validate_options(options) options[:version] ||= ClientToken::DEFAULT_VERSION Util.verify_keys(ClientTokenGateway._generate_signature, options) params = {:client_token => options} result = @config.http.post("#{@config.base_merchant_path}/client_token", params) if result[:client_token] result[:client_token][:value] else raise ArgumentError, result[:api_error_response][:message] end end