swiss-crm-activemerchant 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG +4033 -0
- data/CONTRIBUTORS +568 -0
- data/MIT-LICENSE +20 -0
- data/README.md +252 -0
- data/lib/active_merchant/billing/apple_pay_payment_token.rb +22 -0
- data/lib/active_merchant/billing/avs_result.rb +95 -0
- data/lib/active_merchant/billing/base.rb +48 -0
- data/lib/active_merchant/billing/check.rb +112 -0
- data/lib/active_merchant/billing/compatibility.rb +118 -0
- data/lib/active_merchant/billing/credit_card.rb +451 -0
- data/lib/active_merchant/billing/credit_card_formatting.rb +24 -0
- data/lib/active_merchant/billing/credit_card_methods.rb +512 -0
- data/lib/active_merchant/billing/cvv_result.rb +37 -0
- data/lib/active_merchant/billing/gateway.rb +332 -0
- data/lib/active_merchant/billing/gateways/adyen.rb +774 -0
- data/lib/active_merchant/billing/gateways/airwallex.rb +370 -0
- data/lib/active_merchant/billing/gateways/alelo.rb +256 -0
- data/lib/active_merchant/billing/gateways/allied_wallet.rb +205 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +1125 -0
- data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +424 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +977 -0
- data/lib/active_merchant/billing/gateways/axcessms.rb +242 -0
- data/lib/active_merchant/billing/gateways/balanced.rb +263 -0
- data/lib/active_merchant/billing/gateways/bambora_apac.rb +222 -0
- data/lib/active_merchant/billing/gateways/bank_frick.rb +225 -0
- data/lib/active_merchant/billing/gateways/banwire.rb +116 -0
- data/lib/active_merchant/billing/gateways/barclaycard_smartpay.rb +397 -0
- data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +15 -0
- data/lib/active_merchant/billing/gateways/be2bill.rb +131 -0
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +474 -0
- data/lib/active_merchant/billing/gateways/beanstream.rb +238 -0
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +57 -0
- data/lib/active_merchant/billing/gateways/blue_pay.rb +549 -0
- data/lib/active_merchant/billing/gateways/blue_snap.rb +644 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +190 -0
- data/lib/active_merchant/billing/gateways/borgun.rb +272 -0
- data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
- data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +28 -0
- data/lib/active_merchant/billing/gateways/braintree/token_nonce.rb +113 -0
- data/lib/active_merchant/billing/gateways/braintree.rb +19 -0
- data/lib/active_merchant/billing/gateways/braintree_blue.rb +952 -0
- data/lib/active_merchant/billing/gateways/braintree_orange.rb +19 -0
- data/lib/active_merchant/billing/gateways/bridge_pay.rb +244 -0
- data/lib/active_merchant/billing/gateways/cams.rb +230 -0
- data/lib/active_merchant/billing/gateways/card_connect.rb +338 -0
- data/lib/active_merchant/billing/gateways/card_save.rb +21 -0
- data/lib/active_merchant/billing/gateways/card_stream.rb +394 -0
- data/lib/active_merchant/billing/gateways/cardknox.rb +327 -0
- data/lib/active_merchant/billing/gateways/cardprocess.rb +256 -0
- data/lib/active_merchant/billing/gateways/cashnet.rb +235 -0
- data/lib/active_merchant/billing/gateways/cc5.rb +198 -0
- data/lib/active_merchant/billing/gateways/cecabank.rb +249 -0
- data/lib/active_merchant/billing/gateways/cenpos.rb +328 -0
- data/lib/active_merchant/billing/gateways/checkout.rb +212 -0
- data/lib/active_merchant/billing/gateways/checkout_v2.rb +587 -0
- data/lib/active_merchant/billing/gateways/citrus_pay.rb +21 -0
- data/lib/active_merchant/billing/gateways/clearhaus.rb +219 -0
- data/lib/active_merchant/billing/gateways/commerce_hub.rb +366 -0
- data/lib/active_merchant/billing/gateways/commercegate.rb +142 -0
- data/lib/active_merchant/billing/gateways/conekta.rb +230 -0
- data/lib/active_merchant/billing/gateways/creditcall.rb +272 -0
- data/lib/active_merchant/billing/gateways/credorax.rb +526 -0
- data/lib/active_merchant/billing/gateways/ct_payment.rb +269 -0
- data/lib/active_merchant/billing/gateways/culqi.rb +279 -0
- data/lib/active_merchant/billing/gateways/cyber_source/cyber_source_common.rb +36 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +1148 -0
- data/lib/active_merchant/billing/gateways/cyber_source_rest.rb +454 -0
- data/lib/active_merchant/billing/gateways/d_local.rb +343 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +302 -0
- data/lib/active_merchant/billing/gateways/decidir.rb +358 -0
- data/lib/active_merchant/billing/gateways/decidir_plus.rb +344 -0
- data/lib/active_merchant/billing/gateways/dibs.rb +199 -0
- data/lib/active_merchant/billing/gateways/digitzs.rb +295 -0
- data/lib/active_merchant/billing/gateways/ebanx.rb +346 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +215 -0
- data/lib/active_merchant/billing/gateways/elavon.rb +475 -0
- data/lib/active_merchant/billing/gateways/element.rb +406 -0
- data/lib/active_merchant/billing/gateways/epay.rb +296 -0
- data/lib/active_merchant/billing/gateways/evo_ca.rb +307 -0
- data/lib/active_merchant/billing/gateways/eway.rb +226 -0
- data/lib/active_merchant/billing/gateways/eway_managed.rb +289 -0
- data/lib/active_merchant/billing/gateways/eway_rapid.rb +578 -0
- data/lib/active_merchant/billing/gateways/exact.rb +219 -0
- data/lib/active_merchant/billing/gateways/ezic.rb +195 -0
- data/lib/active_merchant/billing/gateways/fat_zebra.rb +223 -0
- data/lib/active_merchant/billing/gateways/federated_canada.rb +158 -0
- data/lib/active_merchant/billing/gateways/finansbank.rb +22 -0
- data/lib/active_merchant/billing/gateways/first_giving.rb +143 -0
- data/lib/active_merchant/billing/gateways/first_pay.rb +182 -0
- data/lib/active_merchant/billing/gateways/firstdata_e4.rb +452 -0
- data/lib/active_merchant/billing/gateways/firstdata_e4_v27.rb +505 -0
- data/lib/active_merchant/billing/gateways/flo2cash.rb +215 -0
- data/lib/active_merchant/billing/gateways/flo2cash_simple.rb +20 -0
- data/lib/active_merchant/billing/gateways/fluidpay.rb +275 -0
- data/lib/active_merchant/billing/gateways/forte.rb +286 -0
- data/lib/active_merchant/billing/gateways/garanti.rb +256 -0
- data/lib/active_merchant/billing/gateways/global_collect.rb +580 -0
- data/lib/active_merchant/billing/gateways/global_transport.rb +193 -0
- data/lib/active_merchant/billing/gateways/hdfc.rb +205 -0
- data/lib/active_merchant/billing/gateways/hps.rb +472 -0
- data/lib/active_merchant/billing/gateways/iats_payments.rb +312 -0
- data/lib/active_merchant/billing/gateways/in_context_paypal_express.rb +15 -0
- data/lib/active_merchant/billing/gateways/inspire.rb +213 -0
- data/lib/active_merchant/billing/gateways/instapay.rb +159 -0
- data/lib/active_merchant/billing/gateways/ipg.rb +420 -0
- data/lib/active_merchant/billing/gateways/ipp.rb +176 -0
- data/lib/active_merchant/billing/gateways/iridium.rb +467 -0
- data/lib/active_merchant/billing/gateways/itransact.rb +448 -0
- data/lib/active_merchant/billing/gateways/iveri.rb +290 -0
- data/lib/active_merchant/billing/gateways/ixopay.rb +320 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +395 -0
- data/lib/active_merchant/billing/gateways/jetpay_v2.rb +432 -0
- data/lib/active_merchant/billing/gateways/klarna.rb +317 -0
- data/lib/active_merchant/billing/gateways/komoju.rb +115 -0
- data/lib/active_merchant/billing/gateways/kushki.rb +297 -0
- data/lib/active_merchant/billing/gateways/latitude19.rb +412 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +448 -0
- data/lib/active_merchant/billing/gateways/litle.rb +643 -0
- data/lib/active_merchant/billing/gateways/mastercard.rb +286 -0
- data/lib/active_merchant/billing/gateways/maxipago.rb +220 -0
- data/lib/active_merchant/billing/gateways/mercado_pago.rb +348 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +228 -0
- data/lib/active_merchant/billing/gateways/merchant_one.rb +110 -0
- data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +313 -0
- data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +284 -0
- data/lib/active_merchant/billing/gateways/merchant_warrior.rb +248 -0
- data/lib/active_merchant/billing/gateways/mercury.rb +352 -0
- data/lib/active_merchant/billing/gateways/metrics_global.rb +293 -0
- data/lib/active_merchant/billing/gateways/micropayment.rb +182 -0
- data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +100 -0
- data/lib/active_merchant/billing/gateways/migs.rb +329 -0
- data/lib/active_merchant/billing/gateways/mit.rb +260 -0
- data/lib/active_merchant/billing/gateways/modern_payments.rb +37 -0
- data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +215 -0
- data/lib/active_merchant/billing/gateways/moka.rb +290 -0
- data/lib/active_merchant/billing/gateways/monei.rb +424 -0
- data/lib/active_merchant/billing/gateways/moneris.rb +488 -0
- data/lib/active_merchant/billing/gateways/money_movers.rb +150 -0
- data/lib/active_merchant/billing/gateways/mundipagg.rb +366 -0
- data/lib/active_merchant/billing/gateways/nab_transact.rb +299 -0
- data/lib/active_merchant/billing/gateways/ncr_secure_pay.rb +163 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +198 -0
- data/lib/active_merchant/billing/gateways/netaxept.rb +180 -0
- data/lib/active_merchant/billing/gateways/netbanx.rb +376 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +229 -0
- data/lib/active_merchant/billing/gateways/netpay.rb +223 -0
- data/lib/active_merchant/billing/gateways/network_merchants.rb +238 -0
- data/lib/active_merchant/billing/gateways/nmi.rb +396 -0
- data/lib/active_merchant/billing/gateways/ogone.rb +509 -0
- data/lib/active_merchant/billing/gateways/omise.rb +323 -0
- data/lib/active_merchant/billing/gateways/openpay.rb +246 -0
- data/lib/active_merchant/billing/gateways/opp.rb +394 -0
- data/lib/active_merchant/billing/gateways/optimal_payment.rb +331 -0
- data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +45 -0
- data/lib/active_merchant/billing/gateways/orbital.rb +1267 -0
- data/lib/active_merchant/billing/gateways/pac_net_raven.rb +206 -0
- data/lib/active_merchant/billing/gateways/pagarme.rb +239 -0
- data/lib/active_merchant/billing/gateways/pago_facil.rb +120 -0
- data/lib/active_merchant/billing/gateways/pay_arc.rb +392 -0
- data/lib/active_merchant/billing/gateways/pay_conex.rb +245 -0
- data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +277 -0
- data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +390 -0
- data/lib/active_merchant/billing/gateways/pay_junction_v2.rb +206 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +110 -0
- data/lib/active_merchant/billing/gateways/pay_trace.rb +450 -0
- data/lib/active_merchant/billing/gateways/paybox_direct.rb +224 -0
- data/lib/active_merchant/billing/gateways/payeezy.rb +513 -0
- data/lib/active_merchant/billing/gateways/payex.rb +409 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +235 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +42 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
- data/lib/active_merchant/billing/gateways/payflow.rb +473 -0
- data/lib/active_merchant/billing/gateways/payflow_express.rb +220 -0
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +14 -0
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +20 -0
- data/lib/active_merchant/billing/gateways/payment_express.rb +373 -0
- data/lib/active_merchant/billing/gateways/paymentez.rb +365 -0
- data/lib/active_merchant/billing/gateways/paymill.rb +369 -0
- data/lib/active_merchant/billing/gateways/paynetworx.rb +228 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +718 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +69 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +262 -0
- data/lib/active_merchant/billing/gateways/paypal.rb +136 -0
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
- data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +44 -0
- data/lib/active_merchant/billing/gateways/paypal_express.rb +272 -0
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +30 -0
- data/lib/active_merchant/billing/gateways/paypal_standard.rb +281 -0
- data/lib/active_merchant/billing/gateways/paysafe.rb +420 -0
- data/lib/active_merchant/billing/gateways/payscout.rb +159 -0
- data/lib/active_merchant/billing/gateways/paystation.rb +204 -0
- data/lib/active_merchant/billing/gateways/payu_in.rb +249 -0
- data/lib/active_merchant/billing/gateways/payu_latam.rb +482 -0
- data/lib/active_merchant/billing/gateways/payway.rb +207 -0
- data/lib/active_merchant/billing/gateways/payway_dot_com.rb +253 -0
- data/lib/active_merchant/billing/gateways/pin.rb +273 -0
- data/lib/active_merchant/billing/gateways/pixxels.rb +263 -0
- data/lib/active_merchant/billing/gateways/plexo.rb +308 -0
- data/lib/active_merchant/billing/gateways/plugnpay.rb +283 -0
- data/lib/active_merchant/billing/gateways/priority.rb +392 -0
- data/lib/active_merchant/billing/gateways/pro_pay.rb +325 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +227 -0
- data/lib/active_merchant/billing/gateways/psl_card.rb +295 -0
- data/lib/active_merchant/billing/gateways/qbms.rb +302 -0
- data/lib/active_merchant/billing/gateways/quantum.rb +274 -0
- data/lib/active_merchant/billing/gateways/quickbooks.rb +377 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_common.rb +184 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v10.rb +297 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v4to7.rb +226 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +24 -0
- data/lib/active_merchant/billing/gateways/qvalent.rb +305 -0
- data/lib/active_merchant/billing/gateways/rapyd.rb +319 -0
- data/lib/active_merchant/billing/gateways/reach.rb +277 -0
- data/lib/active_merchant/billing/gateways/realex.rb +400 -0
- data/lib/active_merchant/billing/gateways/redsys.rb +723 -0
- data/lib/active_merchant/billing/gateways/s5.rb +247 -0
- data/lib/active_merchant/billing/gateways/safe_charge.rb +298 -0
- data/lib/active_merchant/billing/gateways/sage.rb +446 -0
- data/lib/active_merchant/billing/gateways/sage_pay.rb +434 -0
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +141 -0
- data/lib/active_merchant/billing/gateways/secure_net.rb +260 -0
- data/lib/active_merchant/billing/gateways/secure_pay.rb +191 -0
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +290 -0
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +103 -0
- data/lib/active_merchant/billing/gateways/securion_pay.rb +305 -0
- data/lib/active_merchant/billing/gateways/shift4.rb +345 -0
- data/lib/active_merchant/billing/gateways/simetrik.rb +368 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +450 -0
- data/lib/active_merchant/billing/gateways/smart_ps.rb +274 -0
- data/lib/active_merchant/billing/gateways/so_easy_pay.rb +194 -0
- data/lib/active_merchant/billing/gateways/spreedly_core.rb +354 -0
- data/lib/active_merchant/billing/gateways/stripe.rb +866 -0
- data/lib/active_merchant/billing/gateways/stripe_payment_intents.rb +602 -0
- data/lib/active_merchant/billing/gateways/swipe_checkout.rb +151 -0
- data/lib/active_merchant/billing/gateways/telr.rb +273 -0
- data/lib/active_merchant/billing/gateways/tns.rb +23 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +240 -0
- data/lib/active_merchant/billing/gateways/trans_first_transaction_express.rb +612 -0
- data/lib/active_merchant/billing/gateways/transact_pro.rb +222 -0
- data/lib/active_merchant/billing/gateways/transax.rb +21 -0
- data/lib/active_merchant/billing/gateways/transnational.rb +9 -0
- data/lib/active_merchant/billing/gateways/trexle.rb +221 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +500 -0
- data/lib/active_merchant/billing/gateways/usa_epay.rb +24 -0
- data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +1612 -0
- data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +367 -0
- data/lib/active_merchant/billing/gateways/vanco.rb +303 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +224 -0
- data/lib/active_merchant/billing/gateways/viaklix.rb +171 -0
- data/lib/active_merchant/billing/gateways/visanet_peru.rb +250 -0
- data/lib/active_merchant/billing/gateways/vpos.rb +223 -0
- data/lib/active_merchant/billing/gateways/webpay.rb +97 -0
- data/lib/active_merchant/billing/gateways/wepay.rb +235 -0
- data/lib/active_merchant/billing/gateways/wirecard.rb +430 -0
- data/lib/active_merchant/billing/gateways/wompi.rb +197 -0
- data/lib/active_merchant/billing/gateways/world_net.rb +345 -0
- data/lib/active_merchant/billing/gateways/worldpay.rb +1050 -0
- data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +208 -0
- data/lib/active_merchant/billing/gateways/worldpay_us.rb +221 -0
- data/lib/active_merchant/billing/gateways.rb +14 -0
- data/lib/active_merchant/billing/model.rb +30 -0
- data/lib/active_merchant/billing/network_tokenization_credit_card.rb +39 -0
- data/lib/active_merchant/billing/payment_token.rb +21 -0
- data/lib/active_merchant/billing/rails.rb +3 -0
- data/lib/active_merchant/billing/response.rb +121 -0
- data/lib/active_merchant/billing/three_d_secure_eci_mapper.rb +27 -0
- data/lib/active_merchant/billing.rb +16 -0
- data/lib/active_merchant/connection.rb +194 -0
- data/lib/active_merchant/country.rb +338 -0
- data/lib/active_merchant/empty.rb +20 -0
- data/lib/active_merchant/errors.rb +38 -0
- data/lib/active_merchant/net_http_ssl_connection.rb +11 -0
- data/lib/active_merchant/network_connection_retries.rb +78 -0
- data/lib/active_merchant/post_data.rb +26 -0
- data/lib/active_merchant/posts_data.rb +92 -0
- data/lib/active_merchant/version.rb +3 -0
- data/lib/active_merchant.rb +63 -0
- data/lib/activemerchant.rb +1 -0
- data/lib/certs/cacert.pem +3214 -0
- data/lib/support/gateway_support.rb +69 -0
- data/lib/support/outbound_hosts.rb +28 -0
- data/lib/support/ssl_verify.rb +88 -0
- data/lib/support/ssl_version.rb +86 -0
- metadata +506 -0
@@ -0,0 +1,366 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class MundipaggGateway < Gateway
|
4
|
+
self.live_url = 'https://api.mundipagg.com/core/v1'
|
5
|
+
|
6
|
+
self.supported_countries = ['US']
|
7
|
+
self.default_currency = 'USD'
|
8
|
+
self.supported_cardtypes = %i[visa master american_express discover alelo]
|
9
|
+
|
10
|
+
self.homepage_url = 'https://www.mundipagg.com/'
|
11
|
+
self.display_name = 'Mundipagg'
|
12
|
+
|
13
|
+
STANDARD_ERROR_CODE_MAPPING = {
|
14
|
+
'400' => STANDARD_ERROR_CODE[:processing_error],
|
15
|
+
'401' => STANDARD_ERROR_CODE[:config_error],
|
16
|
+
'404' => STANDARD_ERROR_CODE[:processing_error],
|
17
|
+
'412' => STANDARD_ERROR_CODE[:processing_error],
|
18
|
+
'422' => STANDARD_ERROR_CODE[:processing_error],
|
19
|
+
'500' => STANDARD_ERROR_CODE[:processing_error]
|
20
|
+
}
|
21
|
+
|
22
|
+
STANDARD_ERROR_MESSAGE_MAPPING = {
|
23
|
+
'400' => 'Invalid request;',
|
24
|
+
'401' => 'Invalid API key;',
|
25
|
+
'404' => 'The requested resource does not exist;',
|
26
|
+
'412' => 'Valid parameters but request failed;',
|
27
|
+
'422' => 'Invalid parameters;',
|
28
|
+
'500' => 'An internal error occurred;'
|
29
|
+
}
|
30
|
+
|
31
|
+
def initialize(options = {})
|
32
|
+
requires!(options, :api_key)
|
33
|
+
super
|
34
|
+
end
|
35
|
+
|
36
|
+
def purchase(money, payment, options = {})
|
37
|
+
post = {}
|
38
|
+
add_invoice(post, money, options)
|
39
|
+
add_customer_data(post, options) unless payment.is_a?(String)
|
40
|
+
add_shipping_address(post, options)
|
41
|
+
add_payment(post, payment, options)
|
42
|
+
add_submerchant(post, options)
|
43
|
+
add_auth_key(post, options)
|
44
|
+
commit('sale', post)
|
45
|
+
end
|
46
|
+
|
47
|
+
def authorize(money, payment, options = {})
|
48
|
+
post = {}
|
49
|
+
add_invoice(post, money, options)
|
50
|
+
add_customer_data(post, options) unless payment.is_a?(String)
|
51
|
+
add_shipping_address(post, options)
|
52
|
+
add_payment(post, payment, options)
|
53
|
+
add_capture_flag(post, payment)
|
54
|
+
add_submerchant(post, options)
|
55
|
+
add_auth_key(post, options)
|
56
|
+
commit('authonly', post)
|
57
|
+
end
|
58
|
+
|
59
|
+
def capture(money, authorization, options = {})
|
60
|
+
post = {}
|
61
|
+
post[:code] = authorization
|
62
|
+
add_invoice(post, money, options)
|
63
|
+
add_auth_key(post, options)
|
64
|
+
commit('capture', post, authorization)
|
65
|
+
end
|
66
|
+
|
67
|
+
def refund(money, authorization, options = {})
|
68
|
+
add_invoice(post = {}, money, options)
|
69
|
+
add_auth_key(post, options)
|
70
|
+
commit('refund', post, authorization)
|
71
|
+
end
|
72
|
+
|
73
|
+
def void(authorization, options = {})
|
74
|
+
commit('void', nil, authorization)
|
75
|
+
end
|
76
|
+
|
77
|
+
def store(payment, options = {})
|
78
|
+
post = {}
|
79
|
+
options.update(name: payment.name)
|
80
|
+
options = add_customer(options) unless options[:customer_id]
|
81
|
+
add_payment(post, payment, options)
|
82
|
+
add_auth_key(post, options)
|
83
|
+
commit('store', post, options[:customer_id])
|
84
|
+
end
|
85
|
+
|
86
|
+
def verify(credit_card, options = {})
|
87
|
+
MultiResponse.run(:use_first_response) do |r|
|
88
|
+
r.process { authorize(100, credit_card, options) }
|
89
|
+
r.process(:ignore_result) { void(r.authorization, options) }
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
def supports_scrubbing?
|
94
|
+
true
|
95
|
+
end
|
96
|
+
|
97
|
+
def scrub(transcript)
|
98
|
+
transcript.
|
99
|
+
gsub(%r((Authorization: Basic )\w+), '\1[FILTERED]').
|
100
|
+
gsub(%r(("cvv\\":\\")\d*), '\1[FILTERED]').
|
101
|
+
gsub(%r((card\\":{\\"number\\":\\")\d*), '\1[FILTERED]')
|
102
|
+
end
|
103
|
+
|
104
|
+
private
|
105
|
+
|
106
|
+
def add_customer(options)
|
107
|
+
post = {}
|
108
|
+
post[:name] = options[:name]
|
109
|
+
customer = commit('customer', post)
|
110
|
+
options.update(customer_id: customer.authorization)
|
111
|
+
end
|
112
|
+
|
113
|
+
def add_customer_data(post, options)
|
114
|
+
post[:customer] = {}
|
115
|
+
post[:customer][:email] = options[:email]
|
116
|
+
end
|
117
|
+
|
118
|
+
def add_billing_address(post, type, options)
|
119
|
+
if address = (options[:billing_address] || options[:address])
|
120
|
+
billing = {}
|
121
|
+
address = options[:billing_address] || options[:address]
|
122
|
+
billing[:street] = address[:address1].match(/\D+/)[0].strip if address[:address1]
|
123
|
+
billing[:number] = address[:address1].match(/\d+/)[0] if address[:address1]
|
124
|
+
billing[:compliment] = address[:address2] if address[:address2]
|
125
|
+
billing[:city] = address[:city] if address[:city]
|
126
|
+
billing[:state] = address[:state] if address[:state]
|
127
|
+
billing[:country] = address[:country] if address[:country]
|
128
|
+
billing[:zip_code] = address[:zip] if address[:zip]
|
129
|
+
billing[:neighborhood] = address[:neighborhood]
|
130
|
+
post[:payment][type.to_sym][:card][:billing_address] = billing
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
def add_shipping_address(post, options)
|
135
|
+
if address = options[:shipping_address]
|
136
|
+
post[:address] = {}
|
137
|
+
post[:address][:street] = address[:address1].match(/\D+/)[0].strip if address[:address1]&.match(/\D+/)
|
138
|
+
post[:address][:number] = address[:address1].match(/\d+/)[0] if address[:address1]&.match(/\d+/)
|
139
|
+
post[:address][:compliment] = address[:address2] if address[:address2]
|
140
|
+
post[:address][:city] = address[:city] if address[:city]
|
141
|
+
post[:address][:state] = address[:state] if address[:state]
|
142
|
+
post[:address][:country] = address[:country] if address[:country]
|
143
|
+
post[:address][:zip_code] = address[:zip] if address[:zip]
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
147
|
+
def add_invoice(post, money, options)
|
148
|
+
post[:amount] = money
|
149
|
+
post[:currency] = (options[:currency] || currency(money))
|
150
|
+
end
|
151
|
+
|
152
|
+
def add_capture_flag(post, payment)
|
153
|
+
if voucher?(payment)
|
154
|
+
post[:payment][:voucher][:capture] = false
|
155
|
+
else
|
156
|
+
post[:payment][:credit_card][:capture] = false
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
def add_payment(post, payment, options)
|
161
|
+
post[:customer][:name] = payment.name if post[:customer]
|
162
|
+
post[:customer_id] = parse_auth(payment)[0] if payment.is_a?(String)
|
163
|
+
post[:payment] = {}
|
164
|
+
affiliation = options[:gateway_affiliation_id] || @options[:gateway_id]
|
165
|
+
post[:payment][:gateway_affiliation_id] = affiliation if affiliation
|
166
|
+
post[:payment][:metadata] = { mundipagg_payment_method_code: '1' } if test?
|
167
|
+
if voucher?(payment)
|
168
|
+
add_voucher(post, payment, options)
|
169
|
+
else
|
170
|
+
add_credit_card(post, payment, options)
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
174
|
+
def add_credit_card(post, payment, options)
|
175
|
+
post[:payment][:payment_method] = 'credit_card'
|
176
|
+
post[:payment][:credit_card] = {}
|
177
|
+
if payment.is_a?(String)
|
178
|
+
post[:payment][:credit_card][:card_id] = parse_auth(payment)[1]
|
179
|
+
else
|
180
|
+
post[:payment][:credit_card][:card] = {}
|
181
|
+
post[:payment][:credit_card][:card][:number] = payment.number
|
182
|
+
post[:payment][:credit_card][:card][:holder_name] = payment.name
|
183
|
+
post[:payment][:credit_card][:card][:exp_month] = payment.month
|
184
|
+
post[:payment][:credit_card][:card][:exp_year] = payment.year
|
185
|
+
post[:payment][:credit_card][:card][:cvv] = payment.verification_value
|
186
|
+
post[:payment][:credit_card][:card][:holder_document] = options[:holder_document] if options[:holder_document]
|
187
|
+
add_billing_address(post, 'credit_card', options)
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
191
|
+
def add_voucher(post, payment, options)
|
192
|
+
post[:currency] = 'BRL'
|
193
|
+
post[:payment][:payment_method] = 'voucher'
|
194
|
+
post[:payment][:voucher] = {}
|
195
|
+
post[:payment][:voucher][:card] = {}
|
196
|
+
post[:payment][:voucher][:card][:number] = payment.number
|
197
|
+
post[:payment][:voucher][:card][:holder_name] = payment.name
|
198
|
+
post[:payment][:voucher][:card][:holder_document] = options[:holder_document]
|
199
|
+
post[:payment][:voucher][:card][:exp_month] = payment.month
|
200
|
+
post[:payment][:voucher][:card][:exp_year] = payment.year
|
201
|
+
post[:payment][:voucher][:card][:cvv] = payment.verification_value
|
202
|
+
add_billing_address(post, 'voucher', options)
|
203
|
+
end
|
204
|
+
|
205
|
+
def voucher?(payment)
|
206
|
+
return false if payment.is_a?(String)
|
207
|
+
|
208
|
+
%w[sodexo vr].include? card_brand(payment)
|
209
|
+
end
|
210
|
+
|
211
|
+
def add_submerchant(post, options)
|
212
|
+
if submerchant = options[:submerchant]
|
213
|
+
post[:SubMerchant] = {}
|
214
|
+
post[:SubMerchant][:Merchant_Category_Code] = submerchant[:merchant_category_code] if submerchant[:merchant_category_code]
|
215
|
+
post[:SubMerchant][:Payment_Facilitator_Code] = submerchant[:payment_facilitator_code] if submerchant[:payment_facilitator_code]
|
216
|
+
post[:SubMerchant][:Code] = submerchant[:code] if submerchant[:code]
|
217
|
+
post[:SubMerchant][:Name] = submerchant[:name] if submerchant[:name]
|
218
|
+
post[:SubMerchant][:Document] = submerchant[:document] if submerchant[:document]
|
219
|
+
post[:SubMerchant][:Type] = submerchant[:type] if submerchant[:type]
|
220
|
+
post[:SubMerchant][:Phone] = {}
|
221
|
+
post[:SubMerchant][:Phone][:Country_Code] = submerchant[:phone][:country_code] if submerchant.dig(:phone, :country_code)
|
222
|
+
post[:SubMerchant][:Phone][:Number] = submerchant[:phone][:number] if submerchant.dig(:phone, :number)
|
223
|
+
post[:SubMerchant][:Phone][:Area_Code] = submerchant[:phone][:area_code] if submerchant.dig(:phone, :area_code)
|
224
|
+
post[:SubMerchant][:Address] = {}
|
225
|
+
post[:SubMerchant][:Address][:Street] = submerchant[:address][:street] if submerchant.dig(:address, :street)
|
226
|
+
post[:SubMerchant][:Address][:Number] = submerchant[:address][:number] if submerchant.dig(:address, :number)
|
227
|
+
post[:SubMerchant][:Address][:Complement] = submerchant[:address][:complement] if submerchant.dig(:address, :complement)
|
228
|
+
post[:SubMerchant][:Address][:Neighborhood] = submerchant[:address][:neighborhood] if submerchant.dig(:address, :neighborhood)
|
229
|
+
post[:SubMerchant][:Address][:City] = submerchant[:address][:city] if submerchant.dig(:address, :city)
|
230
|
+
post[:SubMerchant][:Address][:State] = submerchant[:address][:state] if submerchant.dig(:address, :state)
|
231
|
+
post[:SubMerchant][:Address][:Country] = submerchant[:address][:country] if submerchant.dig(:address, :country)
|
232
|
+
post[:SubMerchant][:Address][:Zip_Code] = submerchant[:address][:zip_code] if submerchant.dig(:address, :zip_code)
|
233
|
+
end
|
234
|
+
end
|
235
|
+
|
236
|
+
def add_auth_key(post, options)
|
237
|
+
if authorization_secret_key = options[:authorization_secret_key]
|
238
|
+
post[:authorization_secret_key] = authorization_secret_key
|
239
|
+
end
|
240
|
+
end
|
241
|
+
|
242
|
+
def headers(authorization_secret_key = nil)
|
243
|
+
basic_token = authorization_secret_key || @options[:api_key]
|
244
|
+
{
|
245
|
+
'Authorization' => 'Basic ' + Base64.strict_encode64("#{basic_token}:"),
|
246
|
+
'Content-Type' => 'application/json',
|
247
|
+
'Accept' => 'application/json'
|
248
|
+
}
|
249
|
+
end
|
250
|
+
|
251
|
+
def parse(body)
|
252
|
+
JSON.parse(body)
|
253
|
+
end
|
254
|
+
|
255
|
+
def url_for(action, auth = nil)
|
256
|
+
url = live_url
|
257
|
+
case action
|
258
|
+
when 'store'
|
259
|
+
"#{url}/customers/#{auth}/cards/"
|
260
|
+
when 'customer'
|
261
|
+
"#{url}/customers/"
|
262
|
+
when 'refund', 'void'
|
263
|
+
"#{url}/charges/#{auth}/"
|
264
|
+
when 'capture'
|
265
|
+
"#{url}/charges/#{auth}/capture/"
|
266
|
+
else
|
267
|
+
"#{url}/charges/"
|
268
|
+
end
|
269
|
+
end
|
270
|
+
|
271
|
+
def commit(action, parameters, auth = nil)
|
272
|
+
url = url_for(action, auth)
|
273
|
+
authorization_secret_key = parameters[:authorization_secret_key] if parameters
|
274
|
+
parameters.merge!(parameters[:payment][:credit_card].delete(:card)).delete(:payment) if action == 'store'
|
275
|
+
response = if %w[refund void].include? action
|
276
|
+
parse(ssl_request(:delete, url, post_data(parameters), headers(authorization_secret_key)))
|
277
|
+
else
|
278
|
+
parse(ssl_post(url, post_data(parameters), headers(authorization_secret_key)))
|
279
|
+
end
|
280
|
+
|
281
|
+
Response.new(
|
282
|
+
success_from(response, action),
|
283
|
+
message_from(response),
|
284
|
+
response,
|
285
|
+
authorization: authorization_from(response, action),
|
286
|
+
avs_result: AVSResult.new(code: response['some_avs_response_key']),
|
287
|
+
cvv_result: CVVResult.new(response['some_cvv_response_key']),
|
288
|
+
test: test?,
|
289
|
+
error_code: error_code_from(response, action)
|
290
|
+
)
|
291
|
+
rescue ResponseError => e
|
292
|
+
message = get_error_messages(e)
|
293
|
+
|
294
|
+
return Response.new(
|
295
|
+
false,
|
296
|
+
"#{STANDARD_ERROR_MESSAGE_MAPPING[e.response.code]} #{message}",
|
297
|
+
parse(e.response.body),
|
298
|
+
test: test?,
|
299
|
+
error_code: STANDARD_ERROR_CODE_MAPPING[e.response.code]
|
300
|
+
)
|
301
|
+
end
|
302
|
+
|
303
|
+
def success_from(response, action)
|
304
|
+
success = response.try(:[], 'last_transaction').try(:[], 'success') unless action == 'store'
|
305
|
+
success = !response.try(:[], 'id').nil? if action == 'store'
|
306
|
+
success
|
307
|
+
end
|
308
|
+
|
309
|
+
def message_from(response)
|
310
|
+
return gateway_response_errors(response) if gateway_response_errors?(response)
|
311
|
+
return response['message'] if response['message']
|
312
|
+
return response['last_transaction']['acquirer_message'] if response['last_transaction']
|
313
|
+
end
|
314
|
+
|
315
|
+
def get_error_messages(error)
|
316
|
+
parsed_response_body = parse(error.response.body)
|
317
|
+
message = parsed_response_body['message']
|
318
|
+
|
319
|
+
parsed_response_body['errors']&.each do |_type, descriptions|
|
320
|
+
message += ' | '
|
321
|
+
message += descriptions.join(', ')
|
322
|
+
end
|
323
|
+
|
324
|
+
message
|
325
|
+
end
|
326
|
+
|
327
|
+
def gateway_response_errors?(response)
|
328
|
+
response.try(:[], 'last_transaction').try(:[], 'gateway_response').try(:[], 'errors').present?
|
329
|
+
end
|
330
|
+
|
331
|
+
def gateway_response_errors(response)
|
332
|
+
error_string = ''
|
333
|
+
|
334
|
+
response['last_transaction']['gateway_response']['errors']&.each do |error|
|
335
|
+
error.each do |_key, value|
|
336
|
+
error_string += ' | ' unless error_string.blank?
|
337
|
+
error_string += value
|
338
|
+
end
|
339
|
+
end
|
340
|
+
|
341
|
+
error_string
|
342
|
+
end
|
343
|
+
|
344
|
+
def authorization_from(response, action)
|
345
|
+
return "#{response['customer']['id']}|#{response['id']}" if action == 'store'
|
346
|
+
|
347
|
+
response['id']
|
348
|
+
end
|
349
|
+
|
350
|
+
def parse_auth(auth)
|
351
|
+
auth.split('|')
|
352
|
+
end
|
353
|
+
|
354
|
+
def post_data(parameters = {})
|
355
|
+
parameters.to_json
|
356
|
+
end
|
357
|
+
|
358
|
+
def error_code_from(response, action)
|
359
|
+
return if success_from(response, action)
|
360
|
+
return response['last_transaction']['acquirer_return_code'] if response['last_transaction']
|
361
|
+
|
362
|
+
STANDARD_ERROR_CODE[:processing_error]
|
363
|
+
end
|
364
|
+
end
|
365
|
+
end
|
366
|
+
end
|
@@ -0,0 +1,299 @@
|
|
1
|
+
require 'rexml/document'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
# The National Australia Bank provide a payment gateway that seems to
|
6
|
+
# be a rebadged Securepay Australia service, though some differences exist.
|
7
|
+
class NabTransactGateway < Gateway
|
8
|
+
API_VERSION = 'xml-4.2'
|
9
|
+
PERIODIC_API_VERSION = 'spxml-4.2'
|
10
|
+
|
11
|
+
class_attribute :test_periodic_url, :live_periodic_url
|
12
|
+
|
13
|
+
self.test_url = 'https://demo.transact.nab.com.au/xmlapi/payment'
|
14
|
+
self.live_url = 'https://transact.nab.com.au/live/xmlapi/payment'
|
15
|
+
self.test_periodic_url = 'https://demo.transact.nab.com.au/xmlapi/periodic'
|
16
|
+
self.live_periodic_url = 'https://transact.nab.com.au/xmlapi/periodic'
|
17
|
+
|
18
|
+
self.supported_countries = ['AU']
|
19
|
+
self.supported_cardtypes = %i[visa master american_express diners_club jcb]
|
20
|
+
|
21
|
+
self.homepage_url = 'http://transact.nab.com.au'
|
22
|
+
self.display_name = 'NAB Transact'
|
23
|
+
self.money_format = :cents
|
24
|
+
self.default_currency = 'AUD'
|
25
|
+
|
26
|
+
# Transactions currently accepted by NAB Transact XML API
|
27
|
+
TRANSACTIONS = {
|
28
|
+
purchase: 0, # Standard Payment
|
29
|
+
refund: 4, # Refund
|
30
|
+
void: 6, # Client Reversal (Void)
|
31
|
+
unmatched_refund: 666, # Unmatched Refund
|
32
|
+
authorization: 10, # Preauthorise
|
33
|
+
capture: 11 # Preauthorise Complete (Advice)
|
34
|
+
}
|
35
|
+
|
36
|
+
PERIODIC_TYPES = {
|
37
|
+
addcrn: 5,
|
38
|
+
deletecrn: 5,
|
39
|
+
trigger: 8
|
40
|
+
}
|
41
|
+
|
42
|
+
SUCCESS_CODES = %w[00 08 11 16 77]
|
43
|
+
|
44
|
+
def initialize(options = {})
|
45
|
+
requires!(options, :login, :password)
|
46
|
+
super
|
47
|
+
end
|
48
|
+
|
49
|
+
def purchase(money, credit_card_or_stored_id, options = {})
|
50
|
+
if credit_card_or_stored_id.respond_to?(:number)
|
51
|
+
commit :purchase, build_purchase_request(money, credit_card_or_stored_id, options)
|
52
|
+
else
|
53
|
+
commit_periodic(:trigger, build_purchase_using_stored_card_request(money, credit_card_or_stored_id, options))
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def credit(money, credit_card, options = {})
|
58
|
+
commit :unmatched_refund, build_purchase_request(money, credit_card, options)
|
59
|
+
end
|
60
|
+
|
61
|
+
def refund(money, authorization, options = {})
|
62
|
+
commit :refund, build_reference_request(money, authorization, options)
|
63
|
+
end
|
64
|
+
|
65
|
+
def authorize(money, credit_card, options = {})
|
66
|
+
commit :authorization, build_purchase_request(money, credit_card, options)
|
67
|
+
end
|
68
|
+
|
69
|
+
def capture(money, authorization, options = {})
|
70
|
+
commit :capture, build_reference_request(money, authorization, options)
|
71
|
+
end
|
72
|
+
|
73
|
+
def store(credit_card, options = {})
|
74
|
+
commit_periodic(:addcrn, build_store_request(credit_card, options))
|
75
|
+
end
|
76
|
+
|
77
|
+
def unstore(identification, options = {})
|
78
|
+
commit_periodic(:deletecrn, build_unstore_request(identification, options))
|
79
|
+
end
|
80
|
+
|
81
|
+
def supports_scrubbing?
|
82
|
+
true
|
83
|
+
end
|
84
|
+
|
85
|
+
def scrub(transcript)
|
86
|
+
return '' if transcript.blank?
|
87
|
+
|
88
|
+
transcript.
|
89
|
+
gsub(%r((<cardNumber>)[^<]+(<))i, '\1[FILTERED]\2').
|
90
|
+
gsub(%r((<cvv>)[^<]+(<))i, '\1[FILTERED]\2').
|
91
|
+
gsub(%r((<password>)[^<]+(<))i, '\1[FILTERED]\2')
|
92
|
+
end
|
93
|
+
|
94
|
+
private
|
95
|
+
|
96
|
+
def add_metadata(xml, options)
|
97
|
+
if options[:merchant_name] || options[:merchant_location]
|
98
|
+
xml.tag! 'metadata' do
|
99
|
+
xml.tag! 'meta', name: 'ca_name', value: options[:merchant_name] if options[:merchant_name]
|
100
|
+
xml.tag! 'meta', name: 'ca_location', value: options[:merchant_location] if options[:merchant_location]
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
def build_purchase_request(money, credit_card, options)
|
106
|
+
xml = Builder::XmlMarkup.new
|
107
|
+
xml.tag! 'amount', localized_amount(money, options[:currency] || currency(money))
|
108
|
+
xml.tag! 'currency', options[:currency] || currency(money)
|
109
|
+
xml.tag! 'purchaseOrderNo', options[:order_id].to_s.gsub(/[ ']/, '')
|
110
|
+
|
111
|
+
xml.tag! 'CreditCardInfo' do
|
112
|
+
xml.tag! 'cardNumber', credit_card.number
|
113
|
+
xml.tag! 'expiryDate', expdate(credit_card)
|
114
|
+
xml.tag! 'cvv', credit_card.verification_value if credit_card.verification_value?
|
115
|
+
end
|
116
|
+
|
117
|
+
add_metadata(xml, options)
|
118
|
+
|
119
|
+
xml.target!
|
120
|
+
end
|
121
|
+
|
122
|
+
def build_reference_request(money, reference, options)
|
123
|
+
xml = Builder::XmlMarkup.new
|
124
|
+
|
125
|
+
transaction_id, order_id, preauth_id, original_amount = reference.split('*')
|
126
|
+
|
127
|
+
xml.tag! 'amount', (money ? localized_amount(money, options[:currency] || currency(money)) : original_amount)
|
128
|
+
xml.tag! 'currency', options[:currency] || currency(money)
|
129
|
+
xml.tag! 'txnID', transaction_id
|
130
|
+
xml.tag! 'purchaseOrderNo', order_id
|
131
|
+
xml.tag! 'preauthID', preauth_id
|
132
|
+
|
133
|
+
add_metadata(xml, options)
|
134
|
+
|
135
|
+
xml.target!
|
136
|
+
end
|
137
|
+
|
138
|
+
# Generate payment request XML
|
139
|
+
# - API is set to allow multiple Txn's but currently only allows one
|
140
|
+
# - txnSource = 23 - (XML)
|
141
|
+
def build_request(action, body)
|
142
|
+
xml = Builder::XmlMarkup.new
|
143
|
+
xml.instruct!
|
144
|
+
xml.tag! 'NABTransactMessage' do
|
145
|
+
xml.tag! 'MessageInfo' do
|
146
|
+
xml.tag! 'messageID', SecureRandom.hex(15)
|
147
|
+
xml.tag! 'messageTimestamp', generate_timestamp
|
148
|
+
xml.tag! 'timeoutValue', request_timeout
|
149
|
+
xml.tag! 'apiVersion', API_VERSION
|
150
|
+
end
|
151
|
+
|
152
|
+
xml.tag! 'MerchantInfo' do
|
153
|
+
xml.tag! 'merchantID', @options[:login]
|
154
|
+
xml.tag! 'password', @options[:password]
|
155
|
+
end
|
156
|
+
|
157
|
+
xml.tag! 'RequestType', 'Payment'
|
158
|
+
xml.tag! 'Payment' do
|
159
|
+
xml.tag! 'TxnList', 'count' => 1 do
|
160
|
+
xml.tag! 'Txn', 'ID' => 1 do
|
161
|
+
xml.tag! 'txnType', TRANSACTIONS[action]
|
162
|
+
xml.tag! 'txnSource', 23
|
163
|
+
xml << body
|
164
|
+
end
|
165
|
+
end
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
xml.target!
|
170
|
+
end
|
171
|
+
|
172
|
+
def build_periodic_request(action, body)
|
173
|
+
xml = Builder::XmlMarkup.new
|
174
|
+
xml.instruct!
|
175
|
+
xml.tag! 'NABTransactMessage' do
|
176
|
+
xml.tag! 'MessageInfo' do
|
177
|
+
xml.tag! 'messageID', SecureRandom.hex(15)
|
178
|
+
xml.tag! 'messageTimestamp', generate_timestamp
|
179
|
+
xml.tag! 'timeoutValue', request_timeout
|
180
|
+
xml.tag! 'apiVersion', PERIODIC_API_VERSION
|
181
|
+
end
|
182
|
+
|
183
|
+
xml.tag! 'MerchantInfo' do
|
184
|
+
xml.tag! 'merchantID', @options[:login]
|
185
|
+
xml.tag! 'password', @options[:password]
|
186
|
+
end
|
187
|
+
|
188
|
+
xml.tag! 'RequestType', 'Periodic'
|
189
|
+
xml.tag! 'Periodic' do
|
190
|
+
xml.tag! 'PeriodicList', 'count' => 1 do
|
191
|
+
xml.tag! 'PeriodicItem', 'ID' => 1 do
|
192
|
+
xml.tag! 'actionType', action.to_s
|
193
|
+
xml.tag! 'periodicType', PERIODIC_TYPES[action] if PERIODIC_TYPES[action]
|
194
|
+
xml << body
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
198
|
+
end
|
199
|
+
|
200
|
+
xml.target!
|
201
|
+
end
|
202
|
+
|
203
|
+
def build_purchase_using_stored_card_request(money, identification, options)
|
204
|
+
xml = Builder::XmlMarkup.new
|
205
|
+
|
206
|
+
xml.tag! 'crn', identification
|
207
|
+
xml.tag! 'currency', options[:currency] || currency(money)
|
208
|
+
xml.tag! 'amount', localized_amount(money, options[:currency] || currency(money))
|
209
|
+
|
210
|
+
xml.target!
|
211
|
+
end
|
212
|
+
|
213
|
+
def build_store_request(credit_card, options)
|
214
|
+
xml = Builder::XmlMarkup.new
|
215
|
+
|
216
|
+
xml.tag! 'crn', options[:billing_id] || SecureRandom.hex(10)
|
217
|
+
xml.tag! 'CreditCardInfo' do
|
218
|
+
xml.tag! 'cardNumber', credit_card.number
|
219
|
+
xml.tag! 'expiryDate', expdate(credit_card)
|
220
|
+
xml.tag! 'cvv', credit_card.verification_value if credit_card.verification_value?
|
221
|
+
end
|
222
|
+
|
223
|
+
xml.target!
|
224
|
+
end
|
225
|
+
|
226
|
+
def build_unstore_request(identification, options)
|
227
|
+
xml = Builder::XmlMarkup.new
|
228
|
+
|
229
|
+
xml.tag! 'crn', identification
|
230
|
+
xml.target!
|
231
|
+
end
|
232
|
+
|
233
|
+
def commit(action, request)
|
234
|
+
response = parse(ssl_post(test? ? self.test_url : self.live_url, build_request(action, request)))
|
235
|
+
|
236
|
+
Response.new(success?(response), message_from(response), response,
|
237
|
+
test: test?,
|
238
|
+
authorization: authorization_from(action, response))
|
239
|
+
end
|
240
|
+
|
241
|
+
def commit_periodic(action, request)
|
242
|
+
response = parse(ssl_post(test? ? self.test_periodic_url : self.live_periodic_url, build_periodic_request(action, request)))
|
243
|
+
Response.new(success?(response), message_from(response), response,
|
244
|
+
test: test?,
|
245
|
+
authorization: authorization_from(action, response))
|
246
|
+
end
|
247
|
+
|
248
|
+
def success?(response)
|
249
|
+
SUCCESS_CODES.include?(response[:response_code])
|
250
|
+
end
|
251
|
+
|
252
|
+
def authorization_from(action, response)
|
253
|
+
if action == :addcrn
|
254
|
+
response[:crn]
|
255
|
+
else
|
256
|
+
[response[:txn_id], response[:purchase_order_no], response[:preauth_id], response[:amount]].join('*')
|
257
|
+
end
|
258
|
+
end
|
259
|
+
|
260
|
+
def message_from(response)
|
261
|
+
response[:response_text] || response[:status_description]
|
262
|
+
end
|
263
|
+
|
264
|
+
def expdate(credit_card)
|
265
|
+
"#{format(credit_card.month, :two_digits)}/#{format(credit_card.year, :two_digits)}"
|
266
|
+
end
|
267
|
+
|
268
|
+
def parse(body)
|
269
|
+
xml = REXML::Document.new(body)
|
270
|
+
|
271
|
+
response = {}
|
272
|
+
|
273
|
+
xml.root.elements.to_a.each do |node|
|
274
|
+
parse_element(response, node)
|
275
|
+
end
|
276
|
+
|
277
|
+
response
|
278
|
+
end
|
279
|
+
|
280
|
+
def parse_element(response, node)
|
281
|
+
if node.has_elements?
|
282
|
+
node.elements.each { |element| parse_element(response, element) }
|
283
|
+
else
|
284
|
+
response[node.name.underscore.to_sym] = node.text
|
285
|
+
end
|
286
|
+
end
|
287
|
+
|
288
|
+
# YYYYDDMMHHNNSSKKK000sOOO
|
289
|
+
def generate_timestamp
|
290
|
+
time = Time.now.utc
|
291
|
+
time.strftime("%Y%d%m%H%M%S#{time.usec}+000")
|
292
|
+
end
|
293
|
+
|
294
|
+
def request_timeout
|
295
|
+
@options[:request_timeout] || 60
|
296
|
+
end
|
297
|
+
end
|
298
|
+
end
|
299
|
+
end
|