Class: ActiveMerchant::Billing::PaySecureGateway
- Defined in:
- lib/active_merchant/billing/gateways/pay_secure.rb
Constant Summary collapse
- URL =
'https://clearance.commsecure.com.au/cgi-bin/PSDirect'
- TRANSACTIONS =
Currently Authorization and Capture is not implemented because capturing requires the original credit card information
{ :purchase => 'PURCHASE', :authorization => 'AUTHORISE', :capture => 'ADVICE', :credit => 'REFUND' }
- SUCCESS =
'Accepted'
- SUCCESS_MESSAGE =
'The transaction was approved'
Constants inherited from Gateway
Instance Attribute Summary
Attributes inherited from Gateway
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ PaySecureGateway
constructor
A new instance of PaySecureGateway.
- #purchase(money, credit_card, options = {}) ⇒ Object
Methods inherited from Gateway
#card_brand, card_brand, inherited, supports?, #test?
Methods included from Utils
Methods included from CreditCardFormatting
Methods included from RequiresParameters
Methods included from PostsData
Constructor Details
#initialize(options = {}) ⇒ PaySecureGateway
Returns a new instance of PaySecureGateway.
25 26 27 28 29 |
# File 'lib/active_merchant/billing/gateways/pay_secure.rb', line 25 def initialize( = {}) requires!(, :login, :password) @options = super end |
Instance Method Details
#purchase(money, credit_card, options = {}) ⇒ Object
31 32 33 34 35 36 37 38 39 40 |
# File 'lib/active_merchant/billing/gateways/pay_secure.rb', line 31 def purchase(money, credit_card, = {}) requires!(, :order_id) post = {} add_amount(post, money) add_invoice(post, ) add_credit_card(post, credit_card) commit(:purchase, money, post) end |