Sha256: 4f70439451037fa2b8477a5acc3b2bb4982978e35e37084b25223d698dce7bd2

Contents?: true

Size: 878 Bytes

Versions: 8

Compression:

Stored size: 878 Bytes

Contents

module BraintreeCommon
  def self.included(base)
    base.supported_countries = %w(US CA AD AT BE BG HR CY CZ DK EE FI FR GI DE GR GG HU IS IM IE IT JE LV LI LT LU MT MC NL NO PL PT RO SM SK SI ES SE CH TR GB SG HK MY AU NZ)
    base.supported_cardtypes = [:visa, :master, :american_express, :discover, :jcb, :diners_club, :maestro]
    base.homepage_url = 'http://www.braintreepaymentsolutions.com'
    base.display_name = 'Braintree'
    base.default_currency = 'USD'
    base.currencies_without_fractions = %w(BIF CLP DJF GNF JPY KMF KRW LAK PYG RWF UGX VND VUV XAF XOF XPF)
  end

  def supports_scrubbing
    true
  end

  def scrub(transcript)
    return '' if transcript.blank?

    transcript.
      gsub(%r((Authorization: Basic )\w+), '\1[FILTERED]').
      gsub(%r((&?ccnumber=)\d*(&?)), '\1[FILTERED]\2').
      gsub(%r((&?cvv=)\d*(&?)), '\1[FILTERED]\2')
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
activemerchant-1.108.0 lib/active_merchant/billing/gateways/braintree/braintree_common.rb
activemerchant-1.107.4 lib/active_merchant/billing/gateways/braintree/braintree_common.rb
activemerchant-1.107.3 lib/active_merchant/billing/gateways/braintree/braintree_common.rb
activemerchant-1.107.2 lib/active_merchant/billing/gateways/braintree/braintree_common.rb
activemerchant-1.107.1 lib/active_merchant/billing/gateways/braintree/braintree_common.rb
activemerchant-1.106.0 lib/active_merchant/billing/gateways/braintree/braintree_common.rb
activemerchant-1.105.0 lib/active_merchant/billing/gateways/braintree/braintree_common.rb
activemerchant-1.104.0 lib/active_merchant/billing/gateways/braintree/braintree_common.rb