Class: ActiveMerchant::Billing::NcrSecurePayGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::NcrSecurePayGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/ncr_secure_pay.rb
Constant Summary
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, payment, options = {}) ⇒ Object
-
#capture(money, authorization, options = {}) ⇒ Object
-
#initialize(options = {}) ⇒ NcrSecurePayGateway
constructor
A new instance of NcrSecurePayGateway.
-
#purchase(money, payment, options = {}) ⇒ Object
-
#refund(money, authorization, options = {}) ⇒ Object
-
#scrub(transcript) ⇒ Object
-
#supports_scrubbing? ⇒ Boolean
-
#verify(credit_card, options = {}) ⇒ Object
-
#void(authorization, 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?, #test?
#expdate, #format
Methods included from PostsData
included, #raw_ssl_request, #ssl_get, #ssl_post, #ssl_request
Constructor Details
Returns a new instance of NcrSecurePayGateway.
16
17
18
19
|
# File 'lib/active_merchant/billing/gateways/ncr_secure_pay.rb', line 16
def initialize(options={})
requires!(options, :username, :password)
super
end
|
Instance Method Details
#authorize(money, payment, options = {}) ⇒ Object
30
31
32
33
34
35
36
37
|
# File 'lib/active_merchant/billing/gateways/ncr_secure_pay.rb', line 30
def authorize(money, payment, options={})
post = {}
add_invoice(post, money, options)
add_payment(post, payment)
add_address(post, payment, options)
commit('preauth', post)
end
|
#capture(money, authorization, options = {}) ⇒ Object
39
40
41
42
43
44
45
|
# File 'lib/active_merchant/billing/gateways/ncr_secure_pay.rb', line 39
def capture(money, authorization, options={})
post = {}
add_reference(post, authorization)
add_invoice(post, money, options)
commit('preauthcomplete', post)
end
|
#purchase(money, payment, options = {}) ⇒ Object
21
22
23
24
25
26
27
28
|
# File 'lib/active_merchant/billing/gateways/ncr_secure_pay.rb', line 21
def purchase(money, payment, options={})
post = {}
add_invoice(post, money, options)
add_payment(post, payment)
add_address(post, payment, options)
commit('sale', post)
end
|
#refund(money, authorization, options = {}) ⇒ Object
47
48
49
50
51
52
53
|
# File 'lib/active_merchant/billing/gateways/ncr_secure_pay.rb', line 47
def refund(money, authorization, options={})
post = {}
add_reference(post, authorization)
add_invoice(post, money, options)
commit('credit', post)
end
|
#scrub(transcript) ⇒ Object
72
73
74
75
76
|
# File 'lib/active_merchant/billing/gateways/ncr_secure_pay.rb', line 72
def scrub(transcript)
transcript.gsub(%r((<password>)[^<]*(</password>))i, '\1[FILTERED]\2').
gsub(%r((<account>)[^<]*(</account>))i, '\1[FILTERED]\2').
gsub(%r((<cv>)[^<]*(</cv>))i, '\1[FILTERED]\2')
end
|
#supports_scrubbing? ⇒ Boolean
68
69
70
|
# File 'lib/active_merchant/billing/gateways/ncr_secure_pay.rb', line 68
def supports_scrubbing?
true
end
|
#verify(credit_card, options = {}) ⇒ Object
61
62
63
64
65
66
|
# File 'lib/active_merchant/billing/gateways/ncr_secure_pay.rb', line 61
def verify(credit_card, options={})
MultiResponse.run(:use_first_response) do |r|
r.process { authorize(100, credit_card, options) }
r.process(:ignore_result) { void(r.authorization, options) }
end
end
|
#void(authorization, options = {}) ⇒ Object
55
56
57
58
59
|
# File 'lib/active_merchant/billing/gateways/ncr_secure_pay.rb', line 55
def void(authorization, options={})
post = {}
add_reference(post, authorization)
commit('void', post)
end
|