activemerchant 1.45.0 → 1.126.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG +2167 -2
- data/CONTRIBUTORS +57 -0
- data/README.md +62 -41
- data/lib/active_merchant/billing/avs_result.rb +25 -28
- data/lib/active_merchant/billing/base.rb +11 -35
- data/lib/active_merchant/billing/check.rb +28 -24
- data/lib/active_merchant/billing/compatibility.rb +10 -12
- data/lib/active_merchant/billing/credit_card.rb +141 -69
- data/lib/active_merchant/billing/credit_card_formatting.rb +4 -4
- data/lib/active_merchant/billing/credit_card_methods.rb +348 -52
- data/lib/active_merchant/billing/cvv_result.rb +0 -1
- data/lib/active_merchant/billing/gateway.rb +125 -61
- data/lib/active_merchant/billing/gateways/adyen.rb +633 -127
- data/lib/active_merchant/billing/gateways/airwallex.rb +341 -0
- data/lib/active_merchant/billing/gateways/allied_wallet.rb +205 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +883 -195
- data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +31 -24
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +104 -103
- data/lib/active_merchant/billing/gateways/axcessms.rb +179 -0
- data/lib/active_merchant/billing/gateways/balanced.rb +72 -65
- data/lib/active_merchant/billing/gateways/bambora_apac.rb +222 -0
- data/lib/active_merchant/billing/gateways/bank_frick.rb +16 -16
- data/lib/active_merchant/billing/gateways/banwire.rb +24 -13
- data/lib/active_merchant/billing/gateways/barclaycard_smartpay.rb +397 -0
- data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +7 -7
- data/lib/active_merchant/billing/gateways/be2bill.rb +7 -7
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +143 -62
- data/lib/active_merchant/billing/gateways/beanstream.rb +45 -13
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +13 -10
- data/lib/active_merchant/billing/gateways/blue_pay.rb +549 -506
- data/lib/active_merchant/billing/gateways/blue_snap.rb +623 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +82 -36
- data/lib/active_merchant/billing/gateways/borgun.rb +61 -40
- data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
- data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +21 -2
- data/lib/active_merchant/billing/gateways/braintree/token_nonce.rb +113 -0
- data/lib/active_merchant/billing/gateways/braintree.rb +3 -3
- data/lib/active_merchant/billing/gateways/braintree_blue.rb +592 -203
- data/lib/active_merchant/billing/gateways/braintree_orange.rb +3 -4
- data/lib/active_merchant/billing/gateways/bridge_pay.rb +116 -61
- data/lib/active_merchant/billing/gateways/cams.rb +230 -0
- data/lib/active_merchant/billing/gateways/card_connect.rb +320 -0
- data/lib/active_merchant/billing/gateways/card_save.rb +7 -9
- data/lib/active_merchant/billing/gateways/card_stream.rb +248 -97
- 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 +70 -26
- data/lib/active_merchant/billing/gateways/cc5.rb +14 -17
- data/lib/active_merchant/billing/gateways/cecabank.rb +73 -53
- data/lib/active_merchant/billing/gateways/cenpos.rb +328 -0
- data/lib/active_merchant/billing/gateways/checkout.rb +32 -33
- data/lib/active_merchant/billing/gateways/checkout_v2.rb +340 -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/commercegate.rb +11 -12
- data/lib/active_merchant/billing/gateways/conekta.rb +55 -34
- data/lib/active_merchant/billing/gateways/creditcall.rb +272 -0
- data/lib/active_merchant/billing/gateways/credorax.rb +506 -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.rb +637 -221
- data/lib/active_merchant/billing/gateways/d_local.rb +303 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +57 -355
- data/lib/active_merchant/billing/gateways/decidir.rb +347 -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 +334 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +46 -50
- data/lib/active_merchant/billing/gateways/elavon.rb +377 -250
- data/lib/active_merchant/billing/gateways/element.rb +386 -0
- data/lib/active_merchant/billing/gateways/epay.rb +92 -71
- data/lib/active_merchant/billing/gateways/evo_ca.rb +13 -14
- data/lib/active_merchant/billing/gateways/eway.rb +85 -73
- data/lib/active_merchant/billing/gateways/eway_managed.rb +85 -87
- data/lib/active_merchant/billing/gateways/eway_rapid.rb +134 -80
- data/lib/active_merchant/billing/gateways/exact.rb +37 -36
- data/lib/active_merchant/billing/gateways/ezic.rb +195 -0
- data/lib/active_merchant/billing/gateways/fat_zebra.rb +124 -74
- data/lib/active_merchant/billing/gateways/federated_canada.rb +11 -13
- data/lib/active_merchant/billing/gateways/finansbank.rb +4 -5
- data/lib/active_merchant/billing/gateways/first_giving.rb +23 -23
- data/lib/active_merchant/billing/gateways/first_pay.rb +45 -23
- data/lib/active_merchant/billing/gateways/firstdata_e4.rb +184 -87
- 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/forte.rb +286 -0
- data/lib/active_merchant/billing/gateways/garanti.rb +31 -32
- data/lib/active_merchant/billing/gateways/global_collect.rb +507 -0
- data/lib/active_merchant/billing/gateways/global_transport.rb +25 -15
- data/lib/active_merchant/billing/gateways/hdfc.rb +55 -57
- data/lib/active_merchant/billing/gateways/hps.rb +252 -68
- data/lib/active_merchant/billing/gateways/iats_payments.rb +99 -38
- data/lib/active_merchant/billing/gateways/in_context_paypal_express.rb +15 -0
- data/lib/active_merchant/billing/gateways/inspire.rb +48 -48
- data/lib/active_merchant/billing/gateways/instapay.rb +10 -14
- data/lib/active_merchant/billing/gateways/ipg.rb +415 -0
- data/lib/active_merchant/billing/gateways/ipp.rb +176 -0
- data/lib/active_merchant/billing/gateways/iridium.rb +254 -244
- data/lib/active_merchant/billing/gateways/itransact.rb +14 -14
- data/lib/active_merchant/billing/gateways/iveri.rb +254 -0
- data/lib/active_merchant/billing/gateways/ixopay.rb +320 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +200 -80
- data/lib/active_merchant/billing/gateways/jetpay_v2.rb +432 -0
- data/lib/active_merchant/billing/gateways/komoju.rb +115 -0
- data/lib/active_merchant/billing/gateways/kushki.rb +277 -0
- data/lib/active_merchant/billing/gateways/latitude19.rb +412 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +95 -85
- data/lib/active_merchant/billing/gateways/litle.rb +371 -94
- data/lib/active_merchant/billing/gateways/mastercard.rb +293 -0
- data/lib/active_merchant/billing/gateways/maxipago.rb +146 -123
- data/lib/active_merchant/billing/gateways/mercado_pago.rb +331 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +47 -23
- data/lib/active_merchant/billing/gateways/merchant_one.rb +16 -20
- data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +54 -60
- data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +60 -44
- data/lib/active_merchant/billing/gateways/merchant_warrior.rb +76 -23
- data/lib/active_merchant/billing/gateways/mercury.rb +73 -54
- data/lib/active_merchant/billing/gateways/metrics_global.rb +33 -43
- data/lib/active_merchant/billing/gateways/micropayment.rb +182 -0
- data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +7 -7
- data/lib/active_merchant/billing/gateways/migs.rb +101 -37
- data/lib/active_merchant/billing/gateways/mit.rb +260 -0
- data/lib/active_merchant/billing/gateways/modern_payments.rb +3 -3
- data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +30 -34
- data/lib/active_merchant/billing/gateways/moka.rb +290 -0
- data/lib/active_merchant/billing/gateways/monei.rb +422 -0
- data/lib/active_merchant/billing/gateways/moneris.rb +236 -72
- data/lib/active_merchant/billing/gateways/money_movers.rb +11 -13
- data/lib/active_merchant/billing/gateways/mundipagg.rb +363 -0
- data/lib/active_merchant/billing/gateways/nab_transact.rb +87 -68
- data/lib/active_merchant/billing/gateways/ncr_secure_pay.rb +163 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +12 -12
- data/lib/active_merchant/billing/gateways/netaxept.rb +33 -34
- data/lib/active_merchant/billing/gateways/netbanx.rb +376 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +82 -43
- data/lib/active_merchant/billing/gateways/netpay.rb +10 -10
- data/lib/active_merchant/billing/gateways/network_merchants.rb +7 -11
- data/lib/active_merchant/billing/gateways/nmi.rb +279 -174
- data/lib/active_merchant/billing/gateways/ogone.rb +96 -50
- data/lib/active_merchant/billing/gateways/omise.rb +323 -0
- data/lib/active_merchant/billing/gateways/openpay.rb +58 -23
- data/lib/active_merchant/billing/gateways/opp.rb +394 -0
- data/lib/active_merchant/billing/gateways/optimal_payment.rb +87 -69
- data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +5 -7
- data/lib/active_merchant/billing/gateways/orbital.rb +771 -328
- data/lib/active_merchant/billing/gateways/pac_net_raven.rb +31 -32
- data/lib/active_merchant/billing/gateways/pagarme.rb +239 -0
- data/lib/active_merchant/billing/gateways/pago_facil.rb +12 -14
- 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 +84 -68
- data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +37 -37
- data/lib/active_merchant/billing/gateways/pay_junction_v2.rb +206 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +15 -17
- data/lib/active_merchant/billing/gateways/pay_trace.rb +404 -0
- data/lib/active_merchant/billing/gateways/paybox_direct.rb +85 -49
- data/lib/active_merchant/billing/gateways/payeezy.rb +458 -0
- data/lib/active_merchant/billing/gateways/payex.rb +39 -42
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +67 -41
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +11 -8
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +3 -3
- data/lib/active_merchant/billing/gateways/payflow.rb +215 -46
- data/lib/active_merchant/billing/gateways/payflow_express.rb +64 -68
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +2 -3
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +5 -6
- data/lib/active_merchant/billing/gateways/payment_express.rb +78 -58
- data/lib/active_merchant/billing/gateways/paymentez.rb +353 -0
- data/lib/active_merchant/billing/gateways/paymill.rb +163 -75
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +55 -7
- data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +1 -1
- data/lib/active_merchant/billing/gateways/paypal.rb +37 -18
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +2 -2
- data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +5 -5
- data/lib/active_merchant/billing/gateways/paypal_express.rb +12 -6
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +3 -3
- data/lib/active_merchant/billing/gateways/paysafe.rb +412 -0
- data/lib/active_merchant/billing/gateways/payscout.rb +10 -13
- data/lib/active_merchant/billing/gateways/paystation.rb +96 -91
- data/lib/active_merchant/billing/gateways/payu_in.rb +249 -0
- data/lib/active_merchant/billing/gateways/payu_latam.rb +479 -0
- data/lib/active_merchant/billing/gateways/payway.rb +27 -27
- data/lib/active_merchant/billing/gateways/payway_dot_com.rb +253 -0
- data/lib/active_merchant/billing/gateways/pin.rb +113 -37
- data/lib/active_merchant/billing/gateways/plugnpay.rb +82 -82
- data/lib/active_merchant/billing/gateways/priority.rb +369 -0
- data/lib/active_merchant/billing/gateways/pro_pay.rb +325 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +55 -44
- data/lib/active_merchant/billing/gateways/psl_card.rb +32 -40
- data/lib/active_merchant/billing/gateways/qbms.rb +86 -76
- data/lib/active_merchant/billing/gateways/quantum.rb +21 -23
- 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 +10 -353
- data/lib/active_merchant/billing/gateways/qvalent.rb +305 -0
- data/lib/active_merchant/billing/gateways/rapyd.rb +258 -0
- data/lib/active_merchant/billing/gateways/realex.rb +154 -52
- data/lib/active_merchant/billing/gateways/redsys.rb +488 -161
- 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 +404 -133
- data/lib/active_merchant/billing/gateways/sage_pay.rb +145 -109
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +13 -15
- data/lib/active_merchant/billing/gateways/secure_net.rb +62 -54
- data/lib/active_merchant/billing/gateways/secure_pay.rb +32 -42
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +36 -27
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +14 -16
- data/lib/active_merchant/billing/gateways/securion_pay.rb +265 -0
- data/lib/active_merchant/billing/gateways/simetrik.rb +362 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +52 -54
- data/lib/active_merchant/billing/gateways/smart_ps.rb +51 -60
- data/lib/active_merchant/billing/gateways/so_easy_pay.rb +29 -29
- data/lib/active_merchant/billing/gateways/spreedly_core.rb +108 -43
- data/lib/active_merchant/billing/gateways/stripe.rb +536 -120
- data/lib/active_merchant/billing/gateways/stripe_payment_intents.rb +516 -0
- data/lib/active_merchant/billing/gateways/swipe_checkout.rb +19 -25
- data/lib/active_merchant/billing/gateways/telr.rb +273 -0
- data/lib/active_merchant/billing/gateways/tns.rb +16 -217
- data/lib/active_merchant/billing/gateways/trans_first.rb +148 -34
- 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 +6 -8
- data/lib/active_merchant/billing/gateways/transnational.rb +1 -2
- data/lib/active_merchant/billing/gateways/trexle.rb +221 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +162 -89
- data/lib/active_merchant/billing/gateways/usa_epay.rb +5 -6
- data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +332 -236
- data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +185 -72
- data/lib/active_merchant/billing/gateways/vanco.rb +294 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +52 -53
- data/lib/active_merchant/billing/gateways/viaklix.rb +19 -31
- data/lib/active_merchant/billing/gateways/visanet_peru.rb +250 -0
- data/lib/active_merchant/billing/gateways/vpos.rb +220 -0
- data/lib/active_merchant/billing/gateways/webpay.rb +9 -9
- data/lib/active_merchant/billing/gateways/wepay.rb +108 -62
- data/lib/active_merchant/billing/gateways/wirecard.rb +52 -43
- data/lib/active_merchant/billing/gateways/wompi.rb +193 -0
- data/lib/active_merchant/billing/gateways/world_net.rb +345 -0
- data/lib/active_merchant/billing/gateways/worldpay.rb +725 -121
- data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +208 -0
- data/lib/active_merchant/billing/gateways/worldpay_us.rb +79 -39
- data/lib/active_merchant/billing/gateways.rb +8 -11
- data/lib/active_merchant/billing/model.rb +2 -2
- data/lib/active_merchant/billing/network_tokenization_credit_card.rb +39 -0
- data/lib/active_merchant/billing/payment_token.rb +1 -1
- data/lib/active_merchant/billing/rails.rb +1 -1
- data/lib/active_merchant/billing/response.rb +19 -13
- data/lib/active_merchant/billing/three_d_secure_eci_mapper.rb +27 -0
- data/lib/active_merchant/billing.rb +3 -0
- data/lib/active_merchant/connection.rb +196 -0
- data/lib/active_merchant/country.rb +13 -8
- data/lib/active_merchant/errors.rb +6 -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 +1 -1
- data/lib/active_merchant.rb +14 -59
- data/lib/activemerchant.rb +1 -1
- data/lib/certs/cacert.pem +3214 -0
- data/lib/support/gateway_support.rb +8 -10
- data/lib/support/outbound_hosts.rb +13 -10
- data/lib/support/ssl_verify.rb +9 -14
- data/lib/support/ssl_version.rb +86 -0
- metadata +136 -94
- checksums.yaml.gz.sig +0 -1
- data/lib/active_merchant/billing/gateways/app55.rb +0 -176
- data/lib/active_merchant/billing/gateways/barclays_epdq.rb +0 -314
- data/lib/active_merchant/billing/gateways/certo_direct.rb +0 -278
- data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +0 -246
- data/lib/active_merchant/billing/gateways/ideal/ideal_rabobank.pem +0 -13
- data/lib/active_merchant/billing/gateways/ideal/ideal_response.rb +0 -29
- data/lib/active_merchant/billing/gateways/ideal_rabobank.rb +0 -66
- data/lib/active_merchant/billing/gateways/moneris_us.rb +0 -291
- data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +0 -87
- data/lib/active_merchant/billing/gateways/sage/sage_core.rb +0 -114
- data/lib/active_merchant/billing/gateways/sage/sage_vault.rb +0 -149
- data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +0 -102
- data/lib/active_merchant/billing/gateways/vindicia.rb +0 -385
- data/lib/active_merchant/offsite_payments_shim.rb +0 -19
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -0
@@ -0,0 +1,179 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class AxcessmsGateway < Gateway
|
4
|
+
self.test_url = 'https://test.ctpe.io/payment/ctpe'
|
5
|
+
self.live_url = 'https://ctpe.io/payment/ctpe'
|
6
|
+
|
7
|
+
self.supported_countries = %w(AD AT BE BG BR CA CH CY CZ DE DK EE ES FI FO FR GB
|
8
|
+
GI GR HR HU IE IL IM IS IT LI LT LU LV MC MT MX NL
|
9
|
+
NO PL PT RO RU SE SI SK TR US VA)
|
10
|
+
|
11
|
+
self.supported_cardtypes = %i[visa master american_express discover jcb maestro]
|
12
|
+
|
13
|
+
self.homepage_url = 'http://www.axcessms.com/'
|
14
|
+
self.display_name = 'Axcess MS'
|
15
|
+
self.money_format = :dollars
|
16
|
+
self.default_currency = 'GBP'
|
17
|
+
|
18
|
+
API_VERSION = '1.0'
|
19
|
+
PAYMENT_CODE_PREAUTHORIZATION = 'CC.PA'
|
20
|
+
PAYMENT_CODE_DEBIT = 'CC.DB'
|
21
|
+
PAYMENT_CODE_CAPTURE = 'CC.CP'
|
22
|
+
PAYMENT_CODE_REVERSAL = 'CC.RV'
|
23
|
+
PAYMENT_CODE_REFUND = 'CC.RF'
|
24
|
+
PAYMENT_CODE_REBILL = 'CC.RB'
|
25
|
+
|
26
|
+
def initialize(options = {})
|
27
|
+
requires!(options, :sender, :login, :password, :channel)
|
28
|
+
super
|
29
|
+
end
|
30
|
+
|
31
|
+
def purchase(money, payment, options = {})
|
32
|
+
payment_code = payment.respond_to?(:number) ? PAYMENT_CODE_DEBIT : PAYMENT_CODE_REBILL
|
33
|
+
commit(payment_code, money, payment, options)
|
34
|
+
end
|
35
|
+
|
36
|
+
def authorize(money, authorization, options = {})
|
37
|
+
commit(PAYMENT_CODE_PREAUTHORIZATION, money, authorization, options)
|
38
|
+
end
|
39
|
+
|
40
|
+
def capture(money, authorization, options = {})
|
41
|
+
commit(PAYMENT_CODE_CAPTURE, money, authorization, options)
|
42
|
+
end
|
43
|
+
|
44
|
+
def refund(money, authorization, options = {})
|
45
|
+
commit(PAYMENT_CODE_REFUND, money, authorization, options)
|
46
|
+
end
|
47
|
+
|
48
|
+
def void(authorization, options = {})
|
49
|
+
commit(PAYMENT_CODE_REVERSAL, nil, authorization, options)
|
50
|
+
end
|
51
|
+
|
52
|
+
def verify(credit_card, options = {})
|
53
|
+
MultiResponse.run(:use_first_response) do |r|
|
54
|
+
r.process { authorize(100, credit_card, options) }
|
55
|
+
r.process(:ignore_result) { void(r.authorization, options) }
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
private
|
60
|
+
|
61
|
+
def commit(paymentcode, money, payment, options)
|
62
|
+
options[:mode] ||= (test? ? 'INTEGRATOR_TEST' : 'LIVE')
|
63
|
+
request = build_request(paymentcode, money, payment, options)
|
64
|
+
|
65
|
+
headers = {
|
66
|
+
'Content-Type' => 'application/x-www-form-urlencoded;charset=UTF-8'
|
67
|
+
}
|
68
|
+
|
69
|
+
response = parse(ssl_post((test? ? test_url : live_url), "load=#{CGI.escape(request)}", headers))
|
70
|
+
success = (response[:result] == 'ACK')
|
71
|
+
message = "#{response[:reason]} - #{response[:return]}"
|
72
|
+
authorization = response[:unique_id]
|
73
|
+
|
74
|
+
Response.new(success, message, response,
|
75
|
+
authorization: authorization,
|
76
|
+
test: (response[:mode] != 'LIVE'))
|
77
|
+
end
|
78
|
+
|
79
|
+
def parse(body)
|
80
|
+
return {} if body.blank?
|
81
|
+
|
82
|
+
xml = REXML::Document.new(body)
|
83
|
+
|
84
|
+
response = {}
|
85
|
+
xml.root.elements.to_a.each do |node|
|
86
|
+
parse_element(response, node)
|
87
|
+
end
|
88
|
+
|
89
|
+
response[:mode] = REXML::XPath.first(xml, '//Transaction').attributes['mode']
|
90
|
+
|
91
|
+
response
|
92
|
+
end
|
93
|
+
|
94
|
+
def parse_element(response, node)
|
95
|
+
node.attributes.each { |name, value| response["#{node.name}_#{name}".underscore.to_sym] = value } if node.has_attributes?
|
96
|
+
|
97
|
+
if node.has_elements?
|
98
|
+
node.elements.each { |element| parse_element(response, element) }
|
99
|
+
else
|
100
|
+
response[node.name.underscore.to_sym] = node.text
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
def build_request(payment_code, money, payment, options)
|
105
|
+
xml = Builder::XmlMarkup.new indent: 2
|
106
|
+
xml.instruct!
|
107
|
+
xml.tag! 'Request', 'version' => API_VERSION do
|
108
|
+
xml.tag! 'Header' do
|
109
|
+
xml.tag! 'Security', 'sender' => @options[:sender]
|
110
|
+
end
|
111
|
+
xml.tag! 'Transaction', 'mode' => options[:mode], 'channel' => @options[:channel], 'response' => 'SYNC' do
|
112
|
+
xml.tag! 'User', 'login' => @options[:login], 'pwd' => @options[:password]
|
113
|
+
xml.tag! 'Identification' do
|
114
|
+
xml.tag! 'TransactionID', options[:order_id] || generate_unique_id
|
115
|
+
xml.tag! 'ReferenceID', payment unless payment.respond_to?(:number)
|
116
|
+
end
|
117
|
+
|
118
|
+
xml.tag! 'Payment', 'code' => payment_code do
|
119
|
+
xml.tag! 'Memo', options[:memo] unless options[:memo].blank?
|
120
|
+
xml.tag! 'Presentation' do
|
121
|
+
xml.tag! 'Amount', amount(money)
|
122
|
+
xml.tag! 'Currency', (options[:currency] || currency(money))
|
123
|
+
xml.tag! 'Usage', options[:description]
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
if payment.respond_to?(:number)
|
128
|
+
add_payment(xml, payment)
|
129
|
+
|
130
|
+
xml.tag! 'Customer' do
|
131
|
+
add_customer_name(xml, payment)
|
132
|
+
add_address(xml, options[:billing_address] || options[:address])
|
133
|
+
add_contact(xml, options)
|
134
|
+
end
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
xml.target!
|
140
|
+
end
|
141
|
+
|
142
|
+
def add_contact(xml, options)
|
143
|
+
xml.tag! 'Contact' do
|
144
|
+
xml.tag! 'Email', (options[:email] || 'unknown@example.com')
|
145
|
+
xml.tag! 'Ip', (options[:ip] || '127.0.0.1')
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
def add_customer_name(xml, payment)
|
150
|
+
xml.tag! 'Name' do
|
151
|
+
xml.tag! 'Given', payment.first_name
|
152
|
+
xml.tag! 'Family', payment.last_name
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
156
|
+
def add_payment(xml, payment)
|
157
|
+
xml.tag! 'Account' do
|
158
|
+
xml.tag! 'Number', payment.number
|
159
|
+
xml.tag! 'Holder', payment.name
|
160
|
+
xml.tag! 'Brand', payment.brand
|
161
|
+
xml.tag! 'Expiry', 'month' => payment.month, 'year' => payment.year
|
162
|
+
xml.tag! 'Verification', payment.verification_value
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
def add_address(xml, address)
|
167
|
+
raise ArgumentError.new('Address is required') unless address
|
168
|
+
|
169
|
+
xml.tag! 'Address' do
|
170
|
+
xml.tag! 'Street', "#{address[:address1]} #{address[:address2]}".strip
|
171
|
+
xml.tag! 'City', address[:city]
|
172
|
+
xml.tag! 'State', address[:state]
|
173
|
+
xml.tag! 'Zip', address[:zip]
|
174
|
+
xml.tag! 'Country', address[:country]
|
175
|
+
end
|
176
|
+
end
|
177
|
+
end
|
178
|
+
end
|
179
|
+
end
|
@@ -17,12 +17,12 @@ module ActiveMerchant #:nodoc:
|
|
17
17
|
# live" button on the Balanced dashboard and fill in your marketplace
|
18
18
|
# details.
|
19
19
|
class BalancedGateway < Gateway
|
20
|
-
VERSION =
|
20
|
+
VERSION = '2.0.0'
|
21
21
|
|
22
22
|
self.live_url = 'https://api.balancedpayments.com'
|
23
23
|
|
24
24
|
self.supported_countries = ['US']
|
25
|
-
self.supported_cardtypes = [
|
25
|
+
self.supported_cardtypes = %i[visa master american_express discover]
|
26
26
|
self.homepage_url = 'https://www.balancedpayments.com/'
|
27
27
|
self.display_name = 'Balanced'
|
28
28
|
self.money_format = :cents
|
@@ -44,13 +44,14 @@ module ActiveMerchant #:nodoc:
|
|
44
44
|
add_common_params(post, options)
|
45
45
|
|
46
46
|
MultiResponse.run do |r|
|
47
|
-
identifier =
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
47
|
+
identifier =
|
48
|
+
if payment_method.respond_to?(:number)
|
49
|
+
r.process { store(payment_method, options) }
|
50
|
+
r.authorization
|
51
|
+
else
|
52
|
+
payment_method
|
53
|
+
end
|
54
|
+
r.process { commit('debits', "cards/#{card_identifier_from(identifier)}/debits", post) }
|
54
55
|
end
|
55
56
|
end
|
56
57
|
|
@@ -61,13 +62,14 @@ module ActiveMerchant #:nodoc:
|
|
61
62
|
add_common_params(post, options)
|
62
63
|
|
63
64
|
MultiResponse.run do |r|
|
64
|
-
identifier =
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
65
|
+
identifier =
|
66
|
+
if payment_method.respond_to?(:number)
|
67
|
+
r.process { store(payment_method, options) }
|
68
|
+
r.authorization
|
69
|
+
else
|
70
|
+
payment_method
|
71
|
+
end
|
72
|
+
r.process { commit('card_holds', "cards/#{card_identifier_from(identifier)}/card_holds", post) }
|
71
73
|
end
|
72
74
|
end
|
73
75
|
|
@@ -77,7 +79,7 @@ module ActiveMerchant #:nodoc:
|
|
77
79
|
post[:description] = options[:description] if options[:description]
|
78
80
|
add_common_params(post, options)
|
79
81
|
|
80
|
-
commit(
|
82
|
+
commit('debits', "card_holds/#{reference_identifier_from(identifier)}/debits", post)
|
81
83
|
end
|
82
84
|
|
83
85
|
def void(identifier, options = {})
|
@@ -85,7 +87,7 @@ module ActiveMerchant #:nodoc:
|
|
85
87
|
post[:is_void] = true
|
86
88
|
add_common_params(post, options)
|
87
89
|
|
88
|
-
commit(
|
90
|
+
commit('card_holds', "card_holds/#{reference_identifier_from(identifier)}", post, :put)
|
89
91
|
end
|
90
92
|
|
91
93
|
def refund(money, identifier, options = {})
|
@@ -94,10 +96,10 @@ module ActiveMerchant #:nodoc:
|
|
94
96
|
post[:description] = options[:description]
|
95
97
|
add_common_params(post, options)
|
96
98
|
|
97
|
-
commit(
|
99
|
+
commit('refunds', "debits/#{reference_identifier_from(identifier)}/refunds", post)
|
98
100
|
end
|
99
101
|
|
100
|
-
def store(credit_card, options={})
|
102
|
+
def store(credit_card, options = {})
|
101
103
|
post = {}
|
102
104
|
|
103
105
|
post[:number] = credit_card.number
|
@@ -108,7 +110,7 @@ module ActiveMerchant #:nodoc:
|
|
108
110
|
|
109
111
|
add_address(post, options)
|
110
112
|
|
111
|
-
commit(
|
113
|
+
commit('cards', 'cards', post)
|
112
114
|
end
|
113
115
|
|
114
116
|
private
|
@@ -117,18 +119,18 @@ module ActiveMerchant #:nodoc:
|
|
117
119
|
case identifier
|
118
120
|
when %r{\|}
|
119
121
|
uri = identifier.
|
120
|
-
|
121
|
-
|
122
|
-
uri.split(
|
122
|
+
split('|').
|
123
|
+
detect { |part| part.size > 0 }
|
124
|
+
uri.split('/')[2]
|
123
125
|
when %r{\/}
|
124
|
-
identifier.split(
|
126
|
+
identifier.split('/')[5]
|
125
127
|
else
|
126
128
|
identifier
|
127
129
|
end
|
128
130
|
end
|
129
131
|
|
130
132
|
def card_identifier_from(identifier)
|
131
|
-
identifier.split(
|
133
|
+
identifier.split('/').last
|
132
134
|
end
|
133
135
|
|
134
136
|
def add_amount(post, money)
|
@@ -137,7 +139,7 @@ module ActiveMerchant #:nodoc:
|
|
137
139
|
|
138
140
|
def add_address(post, options)
|
139
141
|
address = (options[:billing_address] || options[:address])
|
140
|
-
if
|
142
|
+
if address && address[:zip].present?
|
141
143
|
post[:address] = {}
|
142
144
|
post[:address][:line1] = address[:address1] if address[:address1]
|
143
145
|
post[:address][:line2] = address[:address2] if address[:address2]
|
@@ -154,55 +156,59 @@ module ActiveMerchant #:nodoc:
|
|
154
156
|
post[:meta] = options[:meta]
|
155
157
|
end
|
156
158
|
|
157
|
-
def commit(entity_name, path, post, method
|
158
|
-
raw_response =
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
159
|
+
def commit(entity_name, path, post, method = :post)
|
160
|
+
raw_response =
|
161
|
+
begin
|
162
|
+
parse(
|
163
|
+
ssl_request(
|
164
|
+
method,
|
165
|
+
live_url + "/#{path}",
|
166
|
+
post_data(post),
|
167
|
+
headers
|
168
|
+
)
|
169
|
+
)
|
170
|
+
rescue ResponseError => e
|
171
|
+
raise unless e.response.code.to_s =~ /4\d\d/
|
172
|
+
|
173
|
+
parse(e.response.body)
|
174
|
+
end
|
169
175
|
|
170
176
|
Response.new(
|
171
177
|
success_from(entity_name, raw_response),
|
172
178
|
message_from(raw_response),
|
173
179
|
raw_response,
|
174
180
|
authorization: authorization_from(entity_name, raw_response),
|
175
|
-
test: test
|
181
|
+
test: test?
|
176
182
|
)
|
177
183
|
end
|
178
184
|
|
179
185
|
def success_from(entity_name, raw_response)
|
180
186
|
entity = (raw_response[entity_name] || []).first
|
181
|
-
if
|
187
|
+
if !entity
|
182
188
|
false
|
183
|
-
elsif(
|
184
|
-
%w(succeeded pending).include?(entity[
|
185
|
-
elsif
|
186
|
-
(entity[
|
187
|
-
elsif
|
188
|
-
!!entity[
|
189
|
+
elsif (entity_name == 'refunds') && entity.include?('status')
|
190
|
+
%w(succeeded pending).include?(entity['status'])
|
191
|
+
elsif entity.include?('status')
|
192
|
+
(entity['status'] == 'succeeded')
|
193
|
+
elsif entity_name == 'cards'
|
194
|
+
!!entity['id']
|
189
195
|
else
|
190
196
|
false
|
191
197
|
end
|
192
198
|
end
|
193
199
|
|
194
200
|
def message_from(raw_response)
|
195
|
-
if
|
196
|
-
error = raw_response[
|
197
|
-
(error[
|
201
|
+
if raw_response['errors']
|
202
|
+
error = raw_response['errors'].first
|
203
|
+
(error['additional'] || error['message'] || error['description'])
|
198
204
|
else
|
199
|
-
|
205
|
+
'Success'
|
200
206
|
end
|
201
207
|
end
|
202
208
|
|
203
209
|
def authorization_from(entity_name, raw_response)
|
204
210
|
entity = (raw_response[entity_name] || []).first
|
205
|
-
(entity && entity[
|
211
|
+
(entity && entity['id'])
|
206
212
|
end
|
207
213
|
|
208
214
|
def parse(body)
|
@@ -211,8 +217,8 @@ module ActiveMerchant #:nodoc:
|
|
211
217
|
message = 'Invalid response received from the Balanced API. Please contact support@balancedpayments.com if you continue to receive this message.'
|
212
218
|
message += " (The raw response returned by the API was #{raw_response.inspect})"
|
213
219
|
{
|
214
|
-
|
215
|
-
|
220
|
+
'errors' => [{
|
221
|
+
'message' => message
|
216
222
|
}]
|
217
223
|
}
|
218
224
|
end
|
@@ -222,6 +228,7 @@ module ActiveMerchant #:nodoc:
|
|
222
228
|
|
223
229
|
params.map do |key, value|
|
224
230
|
next if value.blank?
|
231
|
+
|
225
232
|
if value.is_a?(Hash)
|
226
233
|
h = {}
|
227
234
|
value.each do |k, v|
|
@@ -231,24 +238,24 @@ module ActiveMerchant #:nodoc:
|
|
231
238
|
else
|
232
239
|
"#{key}=#{CGI.escape(value.to_s)}"
|
233
240
|
end
|
234
|
-
end.compact.join(
|
241
|
+
end.compact.join('&')
|
235
242
|
end
|
236
243
|
|
237
244
|
def headers
|
238
245
|
@@ua ||= JSON.dump(
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
246
|
+
bindings_version: ActiveMerchant::VERSION,
|
247
|
+
lang: 'ruby',
|
248
|
+
lang_version: "#{RUBY_VERSION} p#{RUBY_PATCHLEVEL} (#{RUBY_RELEASE_DATE})",
|
249
|
+
lib_version: BalancedGateway::VERSION,
|
250
|
+
platform: RUBY_PLATFORM,
|
251
|
+
publisher: 'active_merchant'
|
245
252
|
)
|
246
253
|
|
247
254
|
{
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
255
|
+
'Authorization' => 'Basic ' + Base64.encode64(@options[:login].to_s + ':').strip,
|
256
|
+
'User-Agent' => "Balanced/v1.1 ActiveMerchantBindings/#{ActiveMerchant::VERSION}",
|
257
|
+
'Accept' => 'application/vnd.api+json;revision=1.1',
|
258
|
+
'X-Balanced-User-Agent' => @@ua
|
252
259
|
}
|
253
260
|
end
|
254
261
|
end
|
@@ -0,0 +1,222 @@
|
|
1
|
+
require 'nokogiri'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
class BamboraApacGateway < Gateway
|
6
|
+
self.live_url = 'https://www.bambora.co.nz/interface/api'
|
7
|
+
self.test_url = 'https://demo.bambora.co.nz/interface/api'
|
8
|
+
|
9
|
+
self.supported_countries = %w[AU NZ]
|
10
|
+
self.supported_cardtypes = %i[visa master american_express diners_club jcb]
|
11
|
+
|
12
|
+
self.homepage_url = 'http://www.bambora.com/'
|
13
|
+
self.display_name = 'Bambora Asia-Pacific'
|
14
|
+
|
15
|
+
self.money_format = :cents
|
16
|
+
|
17
|
+
STANDARD_ERROR_CODE_MAPPING = {
|
18
|
+
'05' => STANDARD_ERROR_CODE[:card_declined],
|
19
|
+
'06' => STANDARD_ERROR_CODE[:processing_error],
|
20
|
+
'14' => STANDARD_ERROR_CODE[:invalid_number],
|
21
|
+
'54' => STANDARD_ERROR_CODE[:expired_card]
|
22
|
+
}
|
23
|
+
|
24
|
+
def initialize(options = {})
|
25
|
+
requires!(options, :username, :password)
|
26
|
+
super
|
27
|
+
end
|
28
|
+
|
29
|
+
def purchase(money, payment, options = {})
|
30
|
+
commit('SubmitSinglePayment') do |xml|
|
31
|
+
xml.Transaction do
|
32
|
+
xml.CustRef options[:order_id]
|
33
|
+
xml.Amount amount(money)
|
34
|
+
xml.TrnType '1'
|
35
|
+
add_payment(xml, payment)
|
36
|
+
add_credentials(xml, options)
|
37
|
+
xml.TrnSource options[:ip]
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
def authorize(money, payment, options = {})
|
43
|
+
commit('SubmitSinglePayment') do |xml|
|
44
|
+
xml.Transaction do
|
45
|
+
xml.CustRef options[:order_id]
|
46
|
+
xml.Amount amount(money)
|
47
|
+
xml.TrnType '2'
|
48
|
+
add_payment(xml, payment)
|
49
|
+
add_credentials(xml, options)
|
50
|
+
xml.TrnSource options[:ip]
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def capture(money, authorization, options = {})
|
56
|
+
commit('SubmitSingleCapture') do |xml|
|
57
|
+
xml.Capture do
|
58
|
+
xml.Receipt authorization
|
59
|
+
xml.Amount amount(money)
|
60
|
+
add_credentials(xml, options)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def refund(money, authorization, options = {})
|
66
|
+
commit('SubmitSingleRefund') do |xml|
|
67
|
+
xml.Refund do
|
68
|
+
xml.Receipt authorization
|
69
|
+
xml.Amount amount(money)
|
70
|
+
add_credentials(xml, options)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
def void(authorization, options = {})
|
76
|
+
commit('SubmitSingleVoid') do |xml|
|
77
|
+
xml.Void do
|
78
|
+
xml.Receipt authorization
|
79
|
+
xml.Amount amount(options[:amount])
|
80
|
+
add_credentials(xml, options)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
def store(payment, options = {})
|
86
|
+
commit('TokeniseCreditCard') do |xml|
|
87
|
+
xml.TokeniseCreditCard do
|
88
|
+
xml.CardNumber payment.number
|
89
|
+
xml.ExpM format(payment.month, :two_digits)
|
90
|
+
xml.ExpY format(payment.year, :four_digits)
|
91
|
+
xml.TokeniseAlgorithmID options[:tokenise_algorithm_id] || 2
|
92
|
+
xml.UserName @options[:username]
|
93
|
+
xml.Password @options[:password]
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
def supports_scrubbing?
|
99
|
+
true
|
100
|
+
end
|
101
|
+
|
102
|
+
def scrub(transcript)
|
103
|
+
transcript.
|
104
|
+
gsub(%r((<CardNumber>)[^<]+(<))i, '\1[FILTERED]\2').
|
105
|
+
gsub(%r((<CVN>)[^<]+(<))i, '\1[FILTERED]\2').
|
106
|
+
gsub(%r((<Password>)[^<]+(<))i, '\1[FILTERED]\2')
|
107
|
+
end
|
108
|
+
|
109
|
+
private
|
110
|
+
|
111
|
+
def add_credentials(xml, options)
|
112
|
+
xml.AccountNumber options[:account_number] if options[:account_number]
|
113
|
+
xml.Security do
|
114
|
+
xml.UserName @options[:username]
|
115
|
+
xml.Password @options[:password]
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
def add_payment(xml, payment)
|
120
|
+
if payment.is_a?(String)
|
121
|
+
add_token(xml, payment)
|
122
|
+
else
|
123
|
+
add_credit_card(xml, payment)
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
def add_token(xml, payment)
|
128
|
+
xml.CreditCard do
|
129
|
+
xml.TokeniseAlgorithmID options[:tokenise_algorithm_id] || 2
|
130
|
+
xml.CardNumber payment
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
def add_credit_card(xml, payment)
|
135
|
+
xml.CreditCard Registered: 'False' do
|
136
|
+
xml.CardNumber payment.number
|
137
|
+
xml.ExpM format(payment.month, :two_digits)
|
138
|
+
xml.ExpY format(payment.year, :four_digits)
|
139
|
+
xml.CVN payment.verification_value
|
140
|
+
xml.CardHolderName payment.name
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
def parse(body)
|
145
|
+
element = Nokogiri::XML(body).root.first_element_child.first_element_child
|
146
|
+
|
147
|
+
response = {}
|
148
|
+
doc = Nokogiri::XML(element)
|
149
|
+
doc.root.elements.each do |e|
|
150
|
+
response[e.name.underscore.to_sym] = e.inner_text
|
151
|
+
end
|
152
|
+
response
|
153
|
+
end
|
154
|
+
|
155
|
+
def commit(action, &block)
|
156
|
+
headers = {
|
157
|
+
'Content-Type' => 'text/xml; charset=utf-8',
|
158
|
+
'SOAPAction' => "http://www.ippayments.com.au/interface/api/#{endpoint(action)}/#{action}"
|
159
|
+
}
|
160
|
+
response = parse(ssl_post("#{commit_url}/#{endpoint(action)}.asmx", new_submit_xml(action, &block), headers))
|
161
|
+
|
162
|
+
Response.new(
|
163
|
+
success_from(response),
|
164
|
+
message_from(response),
|
165
|
+
response,
|
166
|
+
authorization: authorization_from(response),
|
167
|
+
error_code: error_code_from(response),
|
168
|
+
test: test?
|
169
|
+
)
|
170
|
+
end
|
171
|
+
|
172
|
+
def new_submit_xml(action)
|
173
|
+
xml = Builder::XmlMarkup.new(indent: 2)
|
174
|
+
xml.instruct!
|
175
|
+
xml.soap :Envelope, 'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance', 'xmlns:xsd' => 'http://www.w3.org/2001/XMLSchema', 'xmlns:soap' => 'http://schemas.xmlsoap.org/soap/envelope/' do
|
176
|
+
xml.soap :Body do
|
177
|
+
xml.__send__(action, 'xmlns' => "http://www.ippayments.com.au/interface/api/#{endpoint(action)}") do
|
178
|
+
if action == 'TokeniseCreditCard'
|
179
|
+
xml.tokeniseCreditCardXML do
|
180
|
+
inner_xml = Builder::XmlMarkup.new(indent: 2)
|
181
|
+
yield(inner_xml)
|
182
|
+
xml.cdata!(inner_xml.target!)
|
183
|
+
end
|
184
|
+
else
|
185
|
+
xml.trnXML do
|
186
|
+
inner_xml = Builder::XmlMarkup.new(indent: 2)
|
187
|
+
yield(inner_xml)
|
188
|
+
xml.cdata!(inner_xml.target!)
|
189
|
+
end
|
190
|
+
end
|
191
|
+
end
|
192
|
+
end
|
193
|
+
end
|
194
|
+
xml.target!
|
195
|
+
end
|
196
|
+
|
197
|
+
def endpoint(action)
|
198
|
+
action == 'TokeniseCreditCard' ? 'sipp' : 'dts'
|
199
|
+
end
|
200
|
+
|
201
|
+
def commit_url
|
202
|
+
test? ? test_url : live_url
|
203
|
+
end
|
204
|
+
|
205
|
+
def success_from(response)
|
206
|
+
response[:response_code] == '0' || response[:return_value] == '0'
|
207
|
+
end
|
208
|
+
|
209
|
+
def error_code_from(response)
|
210
|
+
STANDARD_ERROR_CODE_MAPPING[response[:declined_code]]
|
211
|
+
end
|
212
|
+
|
213
|
+
def message_from(response)
|
214
|
+
success_from(response) ? 'Succeeded' : response[:declined_message]
|
215
|
+
end
|
216
|
+
|
217
|
+
def authorization_from(response)
|
218
|
+
response[:receipt] || response[:token]
|
219
|
+
end
|
220
|
+
end
|
221
|
+
end
|
222
|
+
end
|