Class: ActiveMerchant::Billing::NabTransactGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::NabTransactGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/nab_transact.rb
Overview
The National Australia Bank provide a payment gateway that seems to be a rebadged Securepay Australia service, though some differences exist.
Constant Summary
collapse
- API_VERSION =
'xml-4.2'
- PERIODIC_API_VERSION =
"spxml-4.2"
- TRANSACTIONS =
Transactions currently accepted by NAB Transact XML API
{
:purchase => 0, :refund => 4, :void => 6, :authorization => 10, :capture => 11 }
- PERIODIC_TYPES =
{
:addcrn => 5,
:editcrn => 5,
:deletecrn => 5,
:trigger => 8
}
- SUCCESS_CODES =
[ '00', '08', '11', '16', '77' ]
Constants inherited
from Gateway
Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::CURRENCIES_WITHOUT_FRACTIONS, Gateway::DEBIT_CARDS
Instance Attribute Summary
Attributes inherited from Gateway
#options
Instance Method Summary
collapse
-
#authorize(money, credit_card, options = {}) ⇒ Object
-
#capture(money, authorization, options = {}) ⇒ Object
-
#initialize(options = {}) ⇒ NabTransactGateway
constructor
A new instance of NabTransactGateway.
-
#purchase(money, credit_card_or_stored_id, options = {}) ⇒ Object
-
#refund(money, authorization, options = {}) ⇒ Object
-
#store(creditcard, options = {}) ⇒ Object
-
#unstore(identification, options = {}) ⇒ Object
Methods inherited from Gateway
#card_brand, card_brand, inherited, #supported_countries, supported_countries, supported_countries=, supports?, #test?
#format
Constructor Details
Returns a new instance of NabTransactGateway.
53
54
55
56
|
# File 'lib/active_merchant/billing/gateways/nab_transact.rb', line 53
def initialize(options = {})
requires!(options, :login, :password)
super
end
|
Instance Method Details
#authorize(money, credit_card, options = {}) ⇒ Object
73
74
75
|
# File 'lib/active_merchant/billing/gateways/nab_transact.rb', line 73
def authorize(money, credit_card, options = {})
commit :authorization, build_purchase_request(money, credit_card, options)
end
|
#capture(money, authorization, options = {}) ⇒ Object
77
78
79
|
# File 'lib/active_merchant/billing/gateways/nab_transact.rb', line 77
def capture(money, authorization, options = {})
commit :capture, build_reference_request(money, authorization, options)
end
|
#purchase(money, credit_card_or_stored_id, options = {}) ⇒ Object
58
59
60
61
62
63
64
65
66
67
|
# File 'lib/active_merchant/billing/gateways/nab_transact.rb', line 58
def purchase(money, credit_card_or_stored_id, options = {})
if credit_card_or_stored_id.respond_to?(:number)
commit :purchase, build_purchase_request(money, credit_card_or_stored_id, options)
else
options[:billing_id] = credit_card_or_stored_id.to_s
commit_periodic build_periodic_item(:trigger, money, nil, options)
end
end
|
#refund(money, authorization, options = {}) ⇒ Object
69
70
71
|
# File 'lib/active_merchant/billing/gateways/nab_transact.rb', line 69
def refund(money, authorization, options = {})
commit :refund, build_reference_request(money, authorization, options)
end
|
#store(creditcard, options = {}) ⇒ Object
81
82
83
84
|
# File 'lib/active_merchant/billing/gateways/nab_transact.rb', line 81
def store(creditcard, options = {})
requires!(options, :billing_id, :amount)
commit_periodic(build_periodic_item(:addcrn, options[:amount], creditcard, options))
end
|
#unstore(identification, options = {}) ⇒ Object
86
87
88
89
|
# File 'lib/active_merchant/billing/gateways/nab_transact.rb', line 86
def unstore(identification, options = {})
options[:billing_id] = identification
commit_periodic(build_periodic_item(:deletecrn, options[:amount], nil, options))
end
|