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",
  "ALL" => "008",
  "AMD" => "051",
  "ANG" => "532",
  "ARS" => "032",
  "AUD" => "036",
  "AWG" => "533",
  "BAM" => "977",
  "BBD" => "052",
  "BGN" => "975",
  "BMD" => "060",
  "BOB" => "068",
  "BRL" => "986",
  "BSD" => "044",
  "BWP" => "072",
  "BZD" => "084",
  "CAD" => "124",
  "CHF" => "756",
  "CLP" => "152",
  "CNY" => "156",
  "COP" => "170",
  "CRC" => "188",
  "CZK" => "203",
  "DKK" => "208",
  "DOP" => "214",
  "EGP" => "818",
  "EUR" => "978",
  "GBP" => "826",
  "GEL" => "981",
  "GIP" => "292",
  "GTQ" => "320",
  "GYD" => "328",
  "HKD" => "344",
  "HNL" => "340",
  "HRK" => "191",
  "HUF" => "348",
  "ISK" => "352",
  "IDR" => "360",
  "ILS" => "376",
  "INR" => "356",
  "JPY" => "392",
  "JMD" => "388",
  "KES" => "404",
  "KRW" => "410",
  "KYD" => "136",
  "LBP" => "422",
  "LKR" => "144",
  "MAD" => "504",
  "MVR" => "462",
  "MWK" => "454",
  "MXN" => "484",
  "MYR" => "458",
  "NAD" => "516",
  "NGN" => "566",
  "NIO" => "558",
  "NOK" => "578",
  "NPR" => "524",
  "NZD" => "554",
  "PAB" => "590",
  "PEN" => "604",
  "PGK" => "598",
  "PHP" => "608",
  "PKR" => "586",
  "PLN" => "985",
  "PYG" => "600",
  "QAR" => "634",
  "RON" => "946",
  "RSD" => "941",
  "RUB" => "643",
  "RWF" => "646",
  "SAR" => "682",
  "SEK" => "752",
  "SGD" => "702",
  "SRD" => "968",
  "THB" => "764",
  "TND" => "788",
  "TRY" => "949",
  "TTD" => "780",
  "TWD" => "901",
  "TZS" => "834",
  "UAH" => "980",
  "UGX" => "800",
  "USD" => "840",
  "UYU" => "858",
  "VND" => "704",
  "WST" => "882",
  "XAF" => "950",
  "XCD" => "951",
  "XOF" => "952",
  "ZAR" => "710"
}
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.



141
142
143
144
145
146
147
148
149
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 141

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



151
152
153
154
155
156
157
158
159
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 151

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



171
172
173
174
175
176
177
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 171

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



161
162
163
164
165
166
167
168
169
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 161

def purchase(money, credit_card_or_reference, options = {})
  post = {}
  add_pair(post, :captureDelay, 0)
  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



179
180
181
182
183
184
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 179

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

#scrub(transcript) ⇒ Object



203
204
205
206
207
208
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 203

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)


199
200
201
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 199

def supports_scrubbing?
  true
end

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



192
193
194
195
196
197
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 192

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



186
187
188
189
190
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 186

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