Class: ActiveMerchant::Billing::EwayGateway
- Defined in:
- lib/active_merchant/billing/gateways/eway.rb
Overview
First, make sure you have everything setup correctly and all of your dependencies in place with:
require 'rubygems'
require 'active_merchant'
ActiveMerchant expects the amounts to be given as an Integer in cents. In this case, $10 US becomes 1000.
tendollar = 1000
The transaction result is based on the cent value of the transaction. $10.15 will return a failed transaction with a response code of “15 – No Issuer”, while $10.00 will return “00 – Transaction Approved.”
Next, create a credit card object using a eWay approved test card number (4444333322221111).
creditcard = ActiveMerchant::Billing::CreditCard.new(
:number => '4444333322221111',
:month => 8,
:year => 2006,
:first_name => 'Longbob',
:last_name => 'Longsen',
:verification_value => '123'
)
= {
:order_id => '1230123',
:email => '[email protected]',
:address => { :address1 => '47 Bobway',
:city => 'Bobville',
:state => 'WA',
:country => 'Australia',
:zip => '2000'
},
:description => 'purchased items'
}
To finish setting up, create the active_merchant object you will be using, with the eWay gateway. If you have a functional eWay account, replace :login with your Customer ID.
gateway = ActiveMerchant::Billing::Base.gateway(:eway).new(:login => '87654321')
Now we are ready to process our transaction
response = gateway.purchase(tendollar, creditcard, )
Sending a transaction to eWay with active_merchant returns a Response object, which consistently allows you to:
1) Check whether the transaction was successful
response.success?
2) Retrieve any message returned by eWay, either a “transaction was successful” note or an explanation of why the transaction was rejected.
response.
3) Retrieve and store the unique transaction ID returned by eWway, for use in referencing the transaction in the future.
response.
This should be enough to get you started with eWay and active_merchant. For further information, review the methods below and the rest of active_merchant’s documentation.
Constant Summary collapse
- MESSAGES =
{ "00" => "Transaction Approved", "01" => "Refer to Issuer", "02" => "Refer to Issuer, special", "03" => "No Merchant", "04" => "Pick Up Card", "05" => "Do Not Honour", "06" => "Error", "07" => "Pick Up Card, Special", "08" => "Honour With Identification", "09" => "Request In Progress", "10" => "Approved For Partial Amount", "11" => "Approved, VIP", "12" => "Invalid Transaction", "13" => "Invalid Amount", "14" => "Invalid Card Number", "15" => "No Issuer", "16" => "Approved, Update Track 3", "19" => "Re-enter Last Transaction", "21" => "No Action Taken", "22" => "Suspected Malfunction", "23" => "Unacceptable Transaction Fee", "25" => "Unable to Locate Record On File", "30" => "Format Error", "31" => "Bank Not Supported By Switch", "33" => "Expired Card, Capture", "34" => "Suspected Fraud, Retain Card", "35" => "Card Acceptor, Contact Acquirer, Retain Card", "36" => "Restricted Card, Retain Card", "37" => "Contact Acquirer Security Department, Retain Card", "38" => "PIN Tries Exceeded, Capture", "39" => "No Credit Account", "40" => "Function Not Supported", "41" => "Lost Card", "42" => "No Universal Account", "43" => "Stolen Card", "44" => "No Investment Account", "51" => "Insufficient Funds", "52" => "No Cheque Account", "53" => "No Savings Account", "54" => "Expired Card", "55" => "Incorrect PIN", "56" => "No Card Record", "57" => "Function Not Permitted to Cardholder", "58" => "Function Not Permitted to Terminal", "59" => "Suspected Fraud", "60" => "Acceptor Contact Acquirer", "61" => "Exceeds Withdrawal Limit", "62" => "Restricted Card", "63" => "Security Violation", "64" => "Original Amount Incorrect", "66" => "Acceptor Contact Acquirer, Security", "67" => "Capture Card", "75" => "PIN Tries Exceeded", "82" => "CVV Validation Error", "90" => "Cutoff In Progress", "91" => "Card Issuer Unavailable", "92" => "Unable To Route Transaction", "93" => "Cannot Complete, Violation Of The Law", "94" => "Duplicate Transaction", "96" => "System Error" }
Constants inherited from Gateway
Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::CURRENCIES_WITHOUT_FRACTIONS, Gateway::DEBIT_CARDS
Instance Attribute Summary
Attributes inherited from Gateway
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ EwayGateway
constructor
A new instance of EwayGateway.
-
#purchase(money, creditcard, options = {}) ⇒ Object
ewayCustomerEmail, ewayCustomerAddress, ewayCustomerPostcode.
- #test? ⇒ Boolean
Methods inherited from Gateway
#card_brand, card_brand, inherited, supports?
Methods included from CreditCardFormatting
Constructor Details
#initialize(options = {}) ⇒ EwayGateway
Returns a new instance of EwayGateway.
143 144 145 146 147 |
# File 'lib/active_merchant/billing/gateways/eway.rb', line 143 def initialize( = {}) requires!(, :login) @options = super end |
Instance Method Details
#purchase(money, creditcard, options = {}) ⇒ Object
ewayCustomerEmail, ewayCustomerAddress, ewayCustomerPostcode
150 151 152 153 154 155 156 157 158 159 160 161 162 |
# File 'lib/active_merchant/billing/gateways/eway.rb', line 150 def purchase(money, creditcard, = {}) requires_address!() post = {} add_creditcard(post, creditcard) add_address(post, ) add_customer_data(post, ) add_invoice_data(post, ) # The request fails if all of the fields aren't present add_optional_data(post) commit(money, post) end |
#test? ⇒ Boolean
164 165 166 |
# File 'lib/active_merchant/billing/gateways/eway.rb', line 164 def test? @options[:test] || super end |