Class: ActiveMerchant::Billing::MonerisUsGateway
- Defined in:
- lib/active_merchant/billing/gateways/moneris_us.rb
Overview
To learn more about the Moneris (US) gateway, please contact [email protected] for a copy of their integration guide. For information on remote testing, please see “Test Environment Penny Value Response Table”, and “Test Environment eFraud (AVS and CVD) Penny Response Values”, available at Moneris’ eSelect Plus Documentation Centre.
Constant Summary
Constants inherited from Gateway
Gateway::CREDIT_DEPRECATION_MESSAGE, Gateway::DEBIT_CARDS, Gateway::RECURRING_DEPRECATION_MESSAGE, Gateway::STANDARD_ERROR_CODE
Instance Attribute Summary
Attributes inherited from Gateway
Instance Method Summary collapse
-
#authorize(money, creditcard_or_datakey, options = {}) ⇒ Object
Referred to as “PreAuth” in the Moneris integration guide, this action verifies and locks funds on a customer’s card, which then must be captured at a later date.
-
#capture(money, authorization, options = {}) ⇒ Object
This method retrieves locked funds from a customer’s account (from a PreAuth) and prepares them for deposit in a merchant’s account.
-
#credit(money, authorization, options = {}) ⇒ Object
Performs a refund.
-
#initialize(options = {}) ⇒ MonerisUsGateway
constructor
Initialize the Gateway.
-
#purchase(money, creditcard_or_datakey, options = {}) ⇒ Object
This action verifies funding on a customer’s card and readies them for deposit in a merchant’s account.
- #refund(money, authorization, options = {}) ⇒ Object
- #scrub(transcript) ⇒ Object
- #store(credit_card, options = {}) ⇒ Object
- #supports_scrubbing? ⇒ Boolean
- #unstore(data_key, options = {}) ⇒ Object
- #update(data_key, credit_card, options = {}) ⇒ Object
- #verify(creditcard_or_datakey, options = {}) ⇒ Object
-
#void(authorization, options = {}) ⇒ Object
Voiding requires the original transaction ID and order ID of some open transaction.
Methods inherited from Gateway
#card_brand, card_brand, #generate_unique_id, inherited, supported_countries, #supported_countries, supported_countries=, supports?, #supports_network_tokenization?, #test?
Methods included from CreditCardFormatting
Methods included from PostsData
included, #raw_ssl_request, #ssl_get, #ssl_post, #ssl_request
Constructor Details
#initialize(options = {}) ⇒ MonerisUsGateway
Initialize the Gateway
The gateway requires that a valid login and password be passed in the options
hash.
Options
-
:login
– Your Store ID -
:password
– Your API Token -
:cvv_enabled
– Specify that you would like the CVV passed to the gateway.Only particular account types at Moneris will allow this. Defaults to false. (optional)
33 34 35 36 37 38 39 |
# File 'lib/active_merchant/billing/gateways/moneris_us.rb', line 33 def initialize( = {}) requires!(, :login, :password) @cvv_enabled = [:cvv_enabled] @avs_enabled = [:avs_enabled] = { :crypt_type => 7 }.merge() super end |
Instance Method Details
#authorize(money, creditcard_or_datakey, options = {}) ⇒ Object
Referred to as “PreAuth” in the Moneris integration guide, this action verifies and locks funds on a customer’s card, which then must be captured at a later date.
Pass in order_id
and optionally a customer
parameter.
53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/active_merchant/billing/gateways/moneris_us.rb', line 53 def (money, creditcard_or_datakey, = {}) requires!(, :order_id) post = {} add_payment_source(post, creditcard_or_datakey, ) post[:amount] = amount(money) post[:order_id] = [:order_id] post[:address] = [:billing_address] || [:address] post[:crypt_type] = [:crypt_type] || @options[:crypt_type] action = (post[:data_key].blank?) ? 'us_preauth' : 'us_res_preauth_cc' commit(action, post) end |
#capture(money, authorization, options = {}) ⇒ Object
This method retrieves locked funds from a customer’s account (from a PreAuth) and prepares them for deposit in a merchant’s account.
Note: Moneris requires both the order_id and the transaction number of the original authorization. To maintain the same interface as the other gateways the two numbers are concatenated together with a ; separator as the authorization number returned by authorization
88 89 90 |
# File 'lib/active_merchant/billing/gateways/moneris_us.rb', line 88 def capture(money, , = {}) commit 'us_completion', crediting_params(, :comp_amount => amount(money)) end |
#credit(money, authorization, options = {}) ⇒ Object
Performs a refund. This method requires that the original transaction number and order number be included. Concatenate your transaction number and order_id by using a semicolon (‘;’). This is to keep the Moneris interface consistent with other gateways. (See capture
for details.)
108 109 110 111 |
# File 'lib/active_merchant/billing/gateways/moneris_us.rb', line 108 def credit(money, , = {}) ActiveMerchant.deprecated CREDIT_DEPRECATION_MESSAGE refund(money, , ) end |
#purchase(money, creditcard_or_datakey, options = {}) ⇒ Object
This action verifies funding on a customer’s card and readies them for deposit in a merchant’s account.
Pass in order_id
and optionally a customer
parameter
69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/active_merchant/billing/gateways/moneris_us.rb', line 69 def purchase(money, creditcard_or_datakey, = {}) requires!(, :order_id) post = {} add_payment_source(post, creditcard_or_datakey, ) post[:amount] = amount(money) post[:order_id] = [:order_id] post[:address] = [:billing_address] || [:address] post[:crypt_type] = [:crypt_type] || @options[:crypt_type] action = (post[:data_key].blank?) ? 'us_purchase' : 'us_res_purchase_cc' commit(action, post) end |
#refund(money, authorization, options = {}) ⇒ Object
113 114 115 |
# File 'lib/active_merchant/billing/gateways/moneris_us.rb', line 113 def refund(money, , = {}) commit 'us_refund', crediting_params(, :amount => amount(money)) end |
#scrub(transcript) ⇒ Object
144 145 146 147 148 149 |
# File 'lib/active_merchant/billing/gateways/moneris_us.rb', line 144 def scrub(transcript) transcript. gsub(%r((<pan>)[^<]*(</pan>))i, '\1[FILTERED]\2'). gsub(%r((<api_token>)[^<]*(</api_token>))i, '\1[FILTERED]\2'). gsub(%r((<cvd_value>)[^<]*(</cvd_value>))i, '\1[FILTERED]\2') end |
#store(credit_card, options = {}) ⇒ Object
117 118 119 120 121 122 123 |
# File 'lib/active_merchant/billing/gateways/moneris_us.rb', line 117 def store(credit_card, = {}) post = {} post[:pan] = credit_card.number post[:expdate] = expdate(credit_card) post[:crypt_type] = [:crypt_type] || @options[:crypt_type] commit('us_res_add_cc', post) end |
#supports_scrubbing? ⇒ Boolean
140 141 142 |
# File 'lib/active_merchant/billing/gateways/moneris_us.rb', line 140 def supports_scrubbing? true end |
#unstore(data_key, options = {}) ⇒ Object
125 126 127 128 129 |
# File 'lib/active_merchant/billing/gateways/moneris_us.rb', line 125 def unstore(data_key, = {}) post = {} post[:data_key] = data_key commit('us_res_delete', post) end |
#update(data_key, credit_card, options = {}) ⇒ Object
131 132 133 134 135 136 137 138 |
# File 'lib/active_merchant/billing/gateways/moneris_us.rb', line 131 def update(data_key, credit_card, = {}) post = {} post[:pan] = credit_card.number post[:expdate] = expdate(credit_card) post[:data_key] = data_key post[:crypt_type] = [:crypt_type] || @options[:crypt_type] commit('us_res_update_cc', post) end |
#verify(creditcard_or_datakey, options = {}) ⇒ Object
41 42 43 44 45 46 |
# File 'lib/active_merchant/billing/gateways/moneris_us.rb', line 41 def verify(creditcard_or_datakey, = {}) MultiResponse.run(:use_first_response) do |r| r.process { (100, creditcard_or_datakey, ) } r.process(:ignore_result) { capture(0, r.) } end end |
#void(authorization, options = {}) ⇒ Object
Voiding requires the original transaction ID and order ID of some open transaction. Closed transactions must be refunded. Note that the only methods which may be voided are capture
and purchase
.
Concatenate your transaction number and order_id by using a semicolon (‘;’). This is to keep the Moneris interface consistent with other gateways. (See capture
for details.)
99 100 101 |
# File 'lib/active_merchant/billing/gateways/moneris_us.rb', line 99 def void(, = {}) commit 'us_purchasecorrection', crediting_params() end |