Class: ActiveMerchant::Billing::HpsGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::HpsGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/hps.rb
Constant Summary
collapse
- PAYMENT_DATA_SOURCE_MAPPING =
{
apple_pay: 'ApplePay',
master: 'MasterCard 3DSecure',
visa: 'Visa 3DSecure',
american_express: 'AMEX 3DSecure',
discover: 'Discover 3DSecure',
}
Constants inherited
from Gateway
Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::RECURRING_DEPRECATION_MESSAGE, Gateway::STANDARD_ERROR_CODE
Instance Attribute Summary
Attributes inherited from Gateway
#options
Instance Method Summary
collapse
-
#authorize(money, card_or_token, options = {}) ⇒ Object
-
#capture(money, transaction_id, options = {}) ⇒ Object
-
#initialize(options = {}) ⇒ HpsGateway
constructor
A new instance of HpsGateway.
-
#purchase(money, card_or_token, options = {}) ⇒ Object
-
#refund(money, transaction_id, options = {}) ⇒ Object
-
#scrub(transcript) ⇒ Object
-
#supports_scrubbing? ⇒ Boolean
-
#verify(card_or_token, options = {}) ⇒ Object
-
#void(transaction_id, options = {}) ⇒ Object
Methods inherited from Gateway
#add_field_to_post_if_present, #add_fields_to_post_if_present, #card_brand, card_brand, #generate_unique_id, inherited, #supported_countries, supported_countries, supported_countries=, supports?, #supports_network_tokenization?
#expdate, #format
Methods included from PostsData
included, #raw_ssl_request, #ssl_get, #ssl_post, #ssl_request
Constructor Details
#initialize(options = {}) ⇒ HpsGateway
Returns a new instance of HpsGateway.
26
27
28
29
|
# File 'lib/active_merchant/billing/gateways/hps.rb', line 26
def initialize(options={})
requires!(options, :secret_api_key)
super
end
|
Instance Method Details
#authorize(money, card_or_token, options = {}) ⇒ Object
31
32
33
34
35
36
37
38
39
40
41
|
# File 'lib/active_merchant/billing/gateways/hps.rb', line 31
def authorize(money, card_or_token, options={})
commit('CreditAuth') do |xml|
add_amount(xml, money)
add_allow_dup(xml)
add_customer_data(xml, card_or_token, options)
add_details(xml, options)
add_descriptor_name(xml, options)
add_payment(xml, card_or_token, options)
add_three_d_secure(xml, card_or_token, options)
end
end
|
#capture(money, transaction_id, options = {}) ⇒ Object
43
44
45
46
47
48
|
# File 'lib/active_merchant/billing/gateways/hps.rb', line 43
def capture(money, transaction_id, options={})
commit('CreditAddToBatch') do |xml|
add_amount(xml, money)
add_reference(xml, transaction_id)
end
end
|
#purchase(money, card_or_token, options = {}) ⇒ Object
50
51
52
53
54
55
56
57
58
59
60
|
# File 'lib/active_merchant/billing/gateways/hps.rb', line 50
def purchase(money, card_or_token, options={})
commit('CreditSale') do |xml|
add_amount(xml, money)
add_allow_dup(xml)
add_customer_data(xml, card_or_token, options)
add_details(xml, options)
add_descriptor_name(xml, options)
add_payment(xml, card_or_token, options)
add_three_d_secure(xml, card_or_token, options)
end
end
|
#refund(money, transaction_id, options = {}) ⇒ Object
62
63
64
65
66
67
68
69
70
|
# File 'lib/active_merchant/billing/gateways/hps.rb', line 62
def refund(money, transaction_id, options={})
commit('CreditReturn') do |xml|
add_amount(xml, money)
add_allow_dup(xml)
add_reference(xml, transaction_id)
add_customer_data(xml, transaction_id, options)
add_details(xml, options)
end
end
|
#scrub(transcript) ⇒ Object
90
91
92
93
94
95
96
|
# File 'lib/active_merchant/billing/gateways/hps.rb', line 90
def scrub(transcript)
transcript.
gsub(%r((<hps:CardNbr>)[^<]*(<\/hps:CardNbr>))i, '\1[FILTERED]\2').
gsub(%r((<hps:CVV2>)[^<]*(<\/hps:CVV2>))i, '\1[FILTERED]\2').
gsub(%r((<hps:SecretAPIKey>)[^<]*(<\/hps:SecretAPIKey>))i, '\1[FILTERED]\2').
gsub(%r((<hps:PaymentData>)[^<]*(<\/hps:PaymentData>))i, '\1[FILTERED]\2')
end
|
#supports_scrubbing? ⇒ Boolean
86
87
88
|
# File 'lib/active_merchant/billing/gateways/hps.rb', line 86
def supports_scrubbing?
true
end
|
#verify(card_or_token, options = {}) ⇒ Object
72
73
74
75
76
77
78
|
# File 'lib/active_merchant/billing/gateways/hps.rb', line 72
def verify(card_or_token, options={})
commit('CreditAccountVerify') do |xml|
add_customer_data(xml, card_or_token, options)
add_descriptor_name(xml, options)
add_payment(xml, card_or_token, options)
end
end
|
#void(transaction_id, options = {}) ⇒ Object
80
81
82
83
84
|
# File 'lib/active_merchant/billing/gateways/hps.rb', line 80
def void(transaction_id, options={})
commit('CreditVoid') do |xml|
add_reference(xml, transaction_id)
end
end
|