Class: ActiveMerchant::Billing::CardStreamGateway

Inherits:
Gateway
  • Object
show all
Defined in:
lib/active_merchant/billing/gateways/card_stream.rb

Constant Summary collapse

THREEDSECURE_REQUIRED_DEPRECATION_MESSAGE =
"Specifying the :threeDSRequired initialization option is deprecated. Please use the `:threeds_required => true` *transaction* option instead."
CURRENCY_CODES =
{
  "AED" => "784",
  "AUD" => "036",
  "BRL" => "986",
  "CAD" => "124",
  "CHF" => "756",
  "CZK" => "203",
  "DKK" => "208",
  "EUR" => "978",
  "GBP" => "826",
  "HKD" => "344",
  "ICK" => "352",
  "JPY" => "392",
  "NOK" => "578",
  "NZD" => "554",
  "SEK" => "752",
  "SGD" => "702",
  "USD" => "840",
}
CVV_CODE =
{
  '0' => 'U',
  '1' => 'P',
  '2' => 'M',
  '4' => 'N'
}
AVS_POSTAL_MATCH =

0 - No additional information available. 1 - Postcode not checked. 2 - Postcode matched. 4 - Postcode not matched. 8 - Postcode partially matched.

{
  "0" => nil,
  "1" => nil,
  "2" => "Y",
  "4" => "N",
  "8" => "N"
}
AVS_STREET_MATCH =

0 - No additional information available. 1 - Address numeric not checked. 2 - Address numeric matched. 4 - Address numeric not matched. 8 - Address numeric partially matched.

{
  "0" => nil,
  "1" => nil,
  "2" => "Y",
  "4" => "N",
  "8" => "N"
}

Constants inherited from Gateway

Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::DEBIT_CARDS, Gateway::RECURRING_DEPRECATION_MESSAGE, Gateway::STANDARD_ERROR_CODE

Instance Attribute Summary

Attributes inherited from Gateway

#options

Instance Method Summary collapse

Methods inherited from Gateway

#card_brand, card_brand, #generate_unique_id, inherited, supported_countries, #supported_countries, supported_countries=, supports?, #supports_network_tokenization?, #test?

Methods included from CreditCardFormatting

#expdate, #format

Methods included from PostsData

included, #raw_ssl_request, #ssl_get, #ssl_post, #ssl_request

Constructor Details

#initialize(options = {}) ⇒ CardStreamGateway

Returns a new instance of CardStreamGateway.



68
69
70
71
72
73
74
75
76
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 68

def initialize(options = {})
  requires!(options, :login, :shared_secret)
  @threeds_required = false
  if (options[:threeDSRequired])
    ActiveMerchant.deprecated(THREEDSECURE_REQUIRED_DEPRECATION_MESSAGE)
    @threeds_required = options[:threeDSRequired]
  end
  super
end

Instance Method Details

#authorize(money, credit_card_or_reference, options = {}) ⇒ Object



78
79
80
81
82
83
84
85
86
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 78

def authorize(money, credit_card_or_reference, options = {})
  post = {}
  add_pair(post, :captureDelay, -1)
  add_amount(post, money, options)
  add_invoice(post, credit_card_or_reference, money, options)
  add_credit_card_or_reference(post, credit_card_or_reference)
  add_customer_data(post, options)
  commit('SALE', post)
end

#capture(money, authorization, options = {}) ⇒ Object



97
98
99
100
101
102
103
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 97

def capture(money, authorization, options = {})
  post = {}
  add_pair(post, :xref, authorization)
  add_pair(post, :amount, amount(money), :required => true)

  commit('CAPTURE', post)
end

#purchase(money, credit_card_or_reference, options = {}) ⇒ Object



88
89
90
91
92
93
94
95
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 88

def purchase(money, credit_card_or_reference, options = {})
  post = {}
  add_amount(post, money, options)
  add_invoice(post, credit_card_or_reference, money, options)
  add_credit_card_or_reference(post, credit_card_or_reference)
  add_customer_data(post, options)
  commit('SALE', post)
end

#refund(money, authorization, options = {}) ⇒ Object



105
106
107
108
109
110
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 105

def refund(money, authorization, options = {})
  post = {}
  add_pair(post, :xref, authorization)
  add_amount(post, money, options)
  commit('REFUND', post)
end

#scrub(transcript) ⇒ Object



129
130
131
132
133
134
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 129

def scrub(transcript)
  transcript.
    gsub(%r((Authorization: Basic )\w+), '\1[FILTERED]').
    gsub(%r((cardNumber=)\d+), '\1[FILTERED]').
    gsub(%r((CVV=)\d+), '\1[FILTERED]')
end

#supports_scrubbing?Boolean

Returns:

  • (Boolean)


125
126
127
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 125

def supports_scrubbing?
  true
end

#verify(creditcard, options = {}) ⇒ Object



118
119
120
121
122
123
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 118

def verify(creditcard, options={})
  MultiResponse.run(:use_first_response) do |r|
    r.process { authorize(100, creditcard, options) }
    r.process(:ignore_result) { void(r.authorization, options) }
  end
end

#void(authorization, options = {}) ⇒ Object



112
113
114
115
116
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 112

def void(authorization, options = {})
  post = {}
  add_pair(post, :xref, authorization)
  commit('CANCEL', post)
end