Class: ActiveMerchant::Billing::CardStreamGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::CardStreamGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/card_stream.rb
Constant Summary
collapse
- CURRENCY_CODES =
{
"AUD" => '036',
"CAD" => '124',
"CZK" => '203',
"DKK" => '208',
"HKD" => '344',
"ICK" => '352',
"JPY" => '392',
"NOK" => '578',
"SGD" => '702',
"SEK" => '752',
"CHF" => '756',
"GBP" => '826',
"USD" => '840',
"EUR" => '978'
}
- 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::CURRENCIES_WITHOUT_FRACTIONS, Gateway::DEBIT_CARDS, Gateway::RECURRING_DEPRECATION_MESSAGE, Gateway::STANDARD_ERROR_CODE
Instance Attribute Summary
Attributes inherited from Gateway
#options
Instance Method Summary
collapse
-
#authorize(money, creditcard, options = {}) ⇒ Object
-
#capture(money, authorization, options = {}) ⇒ Object
-
#initialize(options = {}) ⇒ CardStreamGateway
constructor
A new instance of CardStreamGateway.
-
#purchase(money, creditcard, options = {}) ⇒ Object
-
#refund(money, authorization, options = {}) ⇒ Object
-
#scrub(transcript) ⇒ Object
-
#supports_scrubbing? ⇒ Boolean
-
#verify(creditcard, options = {}) ⇒ Object
-
#void(authorization, options = {}) ⇒ Object
Methods inherited from Gateway
#card_brand, card_brand, #generate_unique_id, inherited, non_fractional_currency?, #supported_countries, supported_countries, supported_countries=, supports?, #supports_network_tokenization?, #test?
#expdate, #format
Methods included from PostsData
included, #raw_ssl_request, #ssl_get, #ssl_post, #ssl_request
Constructor Details
Returns a new instance of CardStreamGateway.
62
63
64
65
66
67
68
69
70
|
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 62
def initialize(options = {})
requires!(options, :login, :shared_secret)
if (options[:threeDSRequired])
@threeDSRequired = options[:threeDSRequired]
else
@threeDSRequired = 'N'
end
super
end
|
Instance Method Details
#authorize(money, creditcard, options = {}) ⇒ Object
72
73
74
75
76
77
78
79
80
|
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 72
def authorize(money, creditcard, options = {})
post = {}
add_amount(post, money, options)
add_invoice(post, creditcard, money, options)
add_creditcard(post, creditcard)
add_address(post, creditcard, options)
add_customer_data(post, options)
commit('PREAUTH', post)
end
|
#capture(money, authorization, options = {}) ⇒ Object
92
93
94
95
96
97
|
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 92
def capture(money, authorization, options = {})
post = {}
add_pair(post, :xref, authorization)
add_amount(post, money, options)
commit('SALE', post)
end
|
#purchase(money, creditcard, options = {}) ⇒ Object
82
83
84
85
86
87
88
89
90
|
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 82
def purchase(money, creditcard, options = {})
post = {}
add_amount(post, money, options)
add_invoice(post, creditcard, money, options)
add_creditcard(post, creditcard)
add_address(post, creditcard, options)
add_customer_data(post, options)
commit('SALE', post)
end
|
#refund(money, authorization, options = {}) ⇒ Object
99
100
101
102
103
104
|
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 99
def refund(money, authorization, options = {})
post = {}
add_pair(post, :xref, authorization)
add_amount(post, money, options)
commit('REFUND', post)
end
|
#scrub(transcript) ⇒ Object
123
124
125
126
127
128
|
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 123
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
119
120
121
|
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 119
def supports_scrubbing?
true
end
|
#verify(creditcard, options = {}) ⇒ Object
112
113
114
115
116
117
|
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 112
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
106
107
108
109
110
|
# File 'lib/active_merchant/billing/gateways/card_stream.rb', line 106
def void(authorization, options = {})
post = {}
add_pair(post, :xref, authorization)
commit('REFUND', post)
end
|