activemerchant 1.42.6 → 1.90.0
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 +5 -13
- data/CHANGELOG +1420 -2
- data/CONTRIBUTORS +106 -0
- data/README.md +107 -103
- data/lib/active_merchant/billing/apple_pay_payment_token.rb +22 -0
- data/lib/active_merchant/billing/avs_result.rb +12 -13
- data/lib/active_merchant/billing/base.rb +13 -16
- data/lib/active_merchant/billing/check.rb +35 -24
- data/lib/active_merchant/billing/compatibility.rb +117 -0
- data/lib/active_merchant/billing/credit_card.rb +196 -81
- data/lib/active_merchant/billing/credit_card_formatting.rb +6 -4
- data/lib/active_merchant/billing/credit_card_methods.rb +199 -75
- data/lib/active_merchant/billing/cvv_result.rb +15 -15
- data/lib/active_merchant/billing/gateway.rb +171 -39
- data/lib/active_merchant/billing/gateways/adyen.rb +380 -0
- data/lib/active_merchant/billing/gateways/allied_wallet.rb +205 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +933 -604
- data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +417 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +74 -54
- data/lib/active_merchant/billing/gateways/axcessms.rb +181 -0
- data/lib/active_merchant/billing/gateways/balanced.rb +130 -370
- data/lib/active_merchant/billing/gateways/bank_frick.rb +225 -0
- data/lib/active_merchant/billing/gateways/banwire.rb +23 -12
- data/lib/active_merchant/billing/gateways/barclaycard_smartpay.rb +351 -0
- data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +6 -6
- data/lib/active_merchant/billing/gateways/be2bill.rb +2 -2
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +109 -32
- data/lib/active_merchant/billing/gateways/beanstream.rb +59 -13
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +12 -9
- data/lib/active_merchant/billing/gateways/blue_pay.rb +520 -498
- data/lib/active_merchant/billing/gateways/blue_snap.rb +347 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +80 -46
- data/lib/active_merchant/billing/gateways/borgun.rb +220 -0
- data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
- data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +15 -2
- data/lib/active_merchant/billing/gateways/braintree.rb +2 -2
- data/lib/active_merchant/billing/gateways/braintree_blue.rb +311 -121
- data/lib/active_merchant/billing/gateways/braintree_orange.rb +4 -4
- 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 +311 -0
- data/lib/active_merchant/billing/gateways/card_save.rb +6 -7
- data/lib/active_merchant/billing/gateways/card_stream.rb +235 -89
- data/lib/active_merchant/billing/gateways/cardknox.rb +327 -0
- data/lib/active_merchant/billing/gateways/cardprocess.rb +254 -0
- data/lib/active_merchant/billing/gateways/cashnet.rb +219 -0
- data/lib/active_merchant/billing/gateways/cc5.rb +50 -8
- data/lib/active_merchant/billing/gateways/cecabank.rb +27 -14
- data/lib/active_merchant/billing/gateways/cenpos.rb +327 -0
- data/lib/active_merchant/billing/gateways/checkout.rb +214 -0
- data/lib/active_merchant/billing/gateways/checkout_v2.rb +233 -0
- data/lib/active_merchant/billing/gateways/citrus_pay.rb +22 -0
- data/lib/active_merchant/billing/gateways/clearhaus.rb +220 -0
- data/lib/active_merchant/billing/gateways/commercegate.rb +142 -0
- data/lib/active_merchant/billing/gateways/conekta.rb +91 -97
- data/lib/active_merchant/billing/gateways/creditcall.rb +271 -0
- data/lib/active_merchant/billing/gateways/credorax.rb +356 -0
- data/lib/active_merchant/billing/gateways/ct_payment.rb +268 -0
- data/lib/active_merchant/billing/gateways/culqi.rb +277 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +294 -158
- data/lib/active_merchant/billing/gateways/d_local.rb +226 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +59 -347
- data/lib/active_merchant/billing/gateways/dibs.rb +199 -0
- data/lib/active_merchant/billing/gateways/digitzs.rb +292 -0
- data/lib/active_merchant/billing/gateways/ebanx.rb +296 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +24 -39
- data/lib/active_merchant/billing/gateways/elavon.rb +146 -147
- data/lib/active_merchant/billing/gateways/element.rb +356 -0
- data/lib/active_merchant/billing/gateways/epay.rb +41 -31
- data/lib/active_merchant/billing/gateways/evo_ca.rb +1 -1
- data/lib/active_merchant/billing/gateways/eway.rb +79 -78
- data/lib/active_merchant/billing/gateways/eway_managed.rb +35 -36
- data/lib/active_merchant/billing/gateways/eway_rapid.rb +369 -228
- data/lib/active_merchant/billing/gateways/exact.rb +32 -26
- data/lib/active_merchant/billing/gateways/ezic.rb +195 -0
- data/lib/active_merchant/billing/gateways/fat_zebra.rb +90 -64
- data/lib/active_merchant/billing/gateways/federated_canada.rb +6 -14
- data/lib/active_merchant/billing/gateways/finansbank.rb +3 -3
- data/lib/active_merchant/billing/gateways/first_giving.rb +142 -0
- data/lib/active_merchant/billing/gateways/first_pay.rb +128 -122
- data/lib/active_merchant/billing/gateways/firstdata_e4.rb +190 -64
- data/lib/active_merchant/billing/gateways/firstdata_e4_v27.rb +446 -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 +270 -0
- data/lib/active_merchant/billing/gateways/garanti.rb +29 -27
- data/lib/active_merchant/billing/gateways/global_collect.rb +340 -0
- data/lib/active_merchant/billing/gateways/global_transport.rb +194 -0
- data/lib/active_merchant/billing/gateways/hdfc.rb +35 -36
- data/lib/active_merchant/billing/gateways/hps.rb +305 -0
- data/lib/active_merchant/billing/gateways/iats_payments.rb +271 -16
- data/lib/active_merchant/billing/gateways/in_context_paypal_express.rb +15 -0
- data/lib/active_merchant/billing/gateways/inspire.rb +29 -32
- data/lib/active_merchant/billing/gateways/instapay.rb +5 -6
- data/lib/active_merchant/billing/gateways/ipp.rb +175 -0
- data/lib/active_merchant/billing/gateways/iridium.rb +247 -41
- data/lib/active_merchant/billing/gateways/itransact.rb +4 -5
- data/lib/active_merchant/billing/gateways/iveri.rb +251 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +198 -71
- data/lib/active_merchant/billing/gateways/jetpay_v2.rb +437 -0
- data/lib/active_merchant/billing/gateways/komoju.rb +115 -0
- data/lib/active_merchant/billing/gateways/kushki.rb +219 -0
- data/lib/active_merchant/billing/gateways/latitude19.rb +411 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +45 -43
- data/lib/active_merchant/billing/gateways/litle.rb +328 -444
- data/lib/active_merchant/billing/gateways/mastercard.rb +267 -0
- data/lib/active_merchant/billing/gateways/maxipago.rb +145 -115
- data/lib/active_merchant/billing/gateways/mercado_pago.rb +277 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +37 -19
- data/lib/active_merchant/billing/gateways/merchant_one.rb +13 -15
- data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +57 -60
- data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +59 -48
- data/lib/active_merchant/billing/gateways/merchant_warrior.rb +38 -19
- data/lib/active_merchant/billing/gateways/mercury.rb +77 -54
- data/lib/active_merchant/billing/gateways/metrics_global.rb +11 -30
- data/lib/active_merchant/billing/gateways/micropayment.rb +183 -0
- data/lib/active_merchant/billing/gateways/migs.rb +81 -22
- data/lib/active_merchant/billing/gateways/modern_payments.rb +3 -3
- data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +23 -25
- data/lib/active_merchant/billing/gateways/monei.rb +307 -0
- data/lib/active_merchant/billing/gateways/moneris.rb +146 -64
- data/lib/active_merchant/billing/gateways/moneris_us.rb +197 -53
- data/lib/active_merchant/billing/gateways/money_movers.rb +6 -15
- data/lib/active_merchant/billing/gateways/mundipagg.rb +292 -0
- data/lib/active_merchant/billing/gateways/nab_transact.rb +86 -64
- data/lib/active_merchant/billing/gateways/ncr_secure_pay.rb +165 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +11 -5
- data/lib/active_merchant/billing/gateways/netaxept.rb +21 -22
- data/lib/active_merchant/billing/gateways/netbanx.rb +290 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +70 -35
- data/lib/active_merchant/billing/gateways/netpay.rb +5 -6
- data/lib/active_merchant/billing/gateways/network_merchants.rb +241 -0
- data/lib/active_merchant/billing/gateways/nmi.rb +274 -10
- data/lib/active_merchant/billing/gateways/ogone.rb +90 -47
- data/lib/active_merchant/billing/gateways/omise.rb +324 -0
- data/lib/active_merchant/billing/gateways/openpay.rb +48 -20
- data/lib/active_merchant/billing/gateways/opp.rb +369 -0
- data/lib/active_merchant/billing/gateways/optimal_payment.rb +79 -44
- data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +22 -21
- data/lib/active_merchant/billing/gateways/orbital.rb +346 -102
- data/lib/active_merchant/billing/gateways/pac_net_raven.rb +48 -29
- data/lib/active_merchant/billing/gateways/pagarme.rb +246 -0
- data/lib/active_merchant/billing/gateways/pago_facil.rb +122 -0
- data/lib/active_merchant/billing/gateways/pay_conex.rb +245 -0
- data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +67 -48
- data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +20 -26
- data/lib/active_merchant/billing/gateways/pay_junction_v2.rb +188 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +7 -15
- data/lib/active_merchant/billing/gateways/paybox_direct.rb +40 -36
- data/lib/active_merchant/billing/gateways/payeezy.rb +410 -0
- data/lib/active_merchant/billing/gateways/payex.rb +38 -30
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +62 -36
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +11 -7
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +3 -3
- data/lib/active_merchant/billing/gateways/payflow.rb +74 -27
- data/lib/active_merchant/billing/gateways/payflow_express.rb +77 -81
- 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 +54 -45
- data/lib/active_merchant/billing/gateways/paymentez.rb +304 -0
- data/lib/active_merchant/billing/gateways/paymill.rb +160 -66
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +54 -7
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +4 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +17 -3
- data/lib/active_merchant/billing/gateways/paypal.rb +36 -27
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +1 -1
- data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +7 -6
- data/lib/active_merchant/billing/gateways/paypal_express.rb +32 -4
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +3 -3
- data/lib/active_merchant/billing/gateways/payscout.rb +2 -13
- data/lib/active_merchant/billing/gateways/paystation.rb +96 -88
- data/lib/active_merchant/billing/gateways/payu_in.rb +248 -0
- data/lib/active_merchant/billing/gateways/payu_latam.rb +445 -0
- data/lib/active_merchant/billing/gateways/payway.rb +8 -8
- data/lib/active_merchant/billing/gateways/pin.rb +74 -18
- data/lib/active_merchant/billing/gateways/plugnpay.rb +66 -76
- data/lib/active_merchant/billing/gateways/pro_pay.rb +326 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +30 -30
- data/lib/active_merchant/billing/gateways/psl_card.rb +27 -34
- data/lib/active_merchant/billing/gateways/qbms.rb +65 -54
- data/lib/active_merchant/billing/gateways/quantum.rb +18 -18
- data/lib/active_merchant/billing/gateways/quickbooks.rb +290 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_common.rb +184 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v10.rb +295 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v4to7.rb +226 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +10 -350
- data/lib/active_merchant/billing/gateways/qvalent.rb +236 -0
- data/lib/active_merchant/billing/gateways/realex.rb +78 -48
- data/lib/active_merchant/billing/gateways/redsys.rb +310 -170
- data/lib/active_merchant/billing/gateways/s5.rb +246 -0
- data/lib/active_merchant/billing/gateways/safe_charge.rb +262 -0
- data/lib/active_merchant/billing/gateways/sage.rb +415 -119
- data/lib/active_merchant/billing/gateways/sage_pay.rb +195 -90
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +11 -12
- data/lib/active_merchant/billing/gateways/secure_net.rb +51 -43
- data/lib/active_merchant/billing/gateways/secure_pay.rb +182 -10
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +25 -14
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +10 -18
- data/lib/active_merchant/billing/gateways/securion_pay.rb +264 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +35 -38
- data/lib/active_merchant/billing/gateways/smart_ps.rb +50 -42
- data/lib/active_merchant/billing/gateways/so_easy_pay.rb +9 -9
- data/lib/active_merchant/billing/gateways/spreedly_core.rb +62 -12
- data/lib/active_merchant/billing/gateways/stripe.rb +536 -103
- data/lib/active_merchant/billing/gateways/swipe_checkout.rb +12 -18
- data/lib/active_merchant/billing/gateways/telr.rb +274 -0
- data/lib/active_merchant/billing/gateways/tns.rb +22 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +143 -30
- data/lib/active_merchant/billing/gateways/trans_first_transaction_express.rb +608 -0
- data/lib/active_merchant/billing/gateways/transact_pro.rb +224 -0
- data/lib/active_merchant/billing/gateways/transax.rb +5 -6
- data/lib/active_merchant/billing/gateways/transnational.rb +2 -232
- data/lib/active_merchant/billing/gateways/trexle.rb +218 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +86 -57
- data/lib/active_merchant/billing/gateways/usa_epay.rb +4 -4
- data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +196 -89
- data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +157 -32
- data/lib/active_merchant/billing/gateways/vanco.rb +294 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +42 -49
- data/lib/active_merchant/billing/gateways/viaklix.rb +11 -24
- data/lib/active_merchant/billing/gateways/visanet_peru.rb +233 -0
- data/lib/active_merchant/billing/gateways/webpay.rb +26 -28
- data/lib/active_merchant/billing/gateways/wepay.rb +237 -0
- data/lib/active_merchant/billing/gateways/wirecard.rb +153 -31
- data/lib/active_merchant/billing/gateways/world_net.rb +344 -0
- data/lib/active_merchant/billing/gateways/worldpay.rb +207 -63
- data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +215 -0
- data/lib/active_merchant/billing/gateways/worldpay_us.rb +221 -0
- data/lib/active_merchant/billing/gateways.rb +8 -11
- 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 +31 -24
- data/lib/active_merchant/billing.rb +7 -1
- data/lib/active_merchant/connection.rb +195 -0
- data/lib/active_merchant/country.rb +335 -0
- data/lib/active_merchant/empty.rb +20 -0
- data/lib/active_merchant/errors.rb +35 -0
- data/lib/active_merchant/net_http_ssl_connection.rb +10 -0
- data/lib/active_merchant/network_connection_retries.rb +80 -0
- data/lib/active_merchant/post_data.rb +25 -0
- data/lib/active_merchant/posts_data.rb +92 -0
- data/lib/active_merchant/version.rb +1 -1
- data/lib/active_merchant.rb +23 -27
- data/lib/activemerchant.rb +1 -1
- data/lib/certs/cacert.pem +3988 -0
- data/lib/support/gateway_support.rb +7 -9
- data/lib/support/outbound_hosts.rb +13 -10
- data/lib/support/ssl_verify.rb +6 -7
- data/lib/support/ssl_version.rb +87 -0
- metadata +148 -323
- checksums.yaml.gz.sig +0 -0
- data/gem-public_cert.pem +0 -21
- data/lib/active_merchant/billing/expiry_date.rb +0 -34
- data/lib/active_merchant/billing/gateways/app55.rb +0 -185
- data/lib/active_merchant/billing/gateways/barclays_epdq.rb +0 -314
- data/lib/active_merchant/billing/gateways/certo_direct.rb +0 -277
- data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +0 -249
- 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/orbital/avs_result.rb +0 -93
- data/lib/active_merchant/billing/gateways/orbital/cvv_result.rb +0 -34
- data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +0 -93
- data/lib/active_merchant/billing/gateways/sage/sage_core.rb +0 -114
- data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +0 -102
- data/lib/active_merchant/billing/gateways/samurai.rb +0 -118
- data/lib/active_merchant/billing/gateways/vindicia.rb +0 -361
- data/lib/active_merchant/billing/integrations/a1agregator/helper.rb +0 -31
- data/lib/active_merchant/billing/integrations/a1agregator/notification.rb +0 -186
- data/lib/active_merchant/billing/integrations/a1agregator/status.rb +0 -38
- data/lib/active_merchant/billing/integrations/a1agregator.rb +0 -26
- data/lib/active_merchant/billing/integrations/action_view_helper.rb +0 -74
- data/lib/active_merchant/billing/integrations/alipay/helper.rb +0 -34
- data/lib/active_merchant/billing/integrations/alipay/notification.rb +0 -101
- data/lib/active_merchant/billing/integrations/alipay.rb +0 -18
- data/lib/active_merchant/billing/integrations/authorize_net_sim/helper.rb +0 -229
- data/lib/active_merchant/billing/integrations/authorize_net_sim/notification.rb +0 -340
- data/lib/active_merchant/billing/integrations/authorize_net_sim.rb +0 -38
- data/lib/active_merchant/billing/integrations/bit_pay/helper.rb +0 -64
- data/lib/active_merchant/billing/integrations/bit_pay/notification.rb +0 -74
- data/lib/active_merchant/billing/integrations/bit_pay/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/bit_pay.rb +0 -30
- data/lib/active_merchant/billing/integrations/bogus/helper.rb +0 -17
- data/lib/active_merchant/billing/integrations/bogus/notification.rb +0 -11
- data/lib/active_merchant/billing/integrations/bogus/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/bogus.rb +0 -23
- data/lib/active_merchant/billing/integrations/chronopay/helper.rb +0 -120
- data/lib/active_merchant/billing/integrations/chronopay/notification.rb +0 -158
- data/lib/active_merchant/billing/integrations/chronopay/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/chronopay.rb +0 -23
- data/lib/active_merchant/billing/integrations/citrus/helper.rb +0 -40
- data/lib/active_merchant/billing/integrations/citrus/notification.rb +0 -133
- data/lib/active_merchant/billing/integrations/citrus/return.rb +0 -40
- data/lib/active_merchant/billing/integrations/citrus.rb +0 -51
- data/lib/active_merchant/billing/integrations/direc_pay/helper.rb +0 -200
- data/lib/active_merchant/billing/integrations/direc_pay/notification.rb +0 -76
- data/lib/active_merchant/billing/integrations/direc_pay/return.rb +0 -32
- data/lib/active_merchant/billing/integrations/direc_pay/status.rb +0 -37
- data/lib/active_merchant/billing/integrations/direc_pay.rb +0 -41
- data/lib/active_merchant/billing/integrations/directebanking/helper.rb +0 -90
- data/lib/active_merchant/billing/integrations/directebanking/notification.rb +0 -120
- data/lib/active_merchant/billing/integrations/directebanking/return.rb +0 -11
- data/lib/active_merchant/billing/integrations/directebanking.rb +0 -47
- data/lib/active_merchant/billing/integrations/doku/helper.rb +0 -102
- data/lib/active_merchant/billing/integrations/doku/notification.rb +0 -69
- data/lib/active_merchant/billing/integrations/doku/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/doku.rb +0 -24
- data/lib/active_merchant/billing/integrations/dotpay/helper.rb +0 -77
- data/lib/active_merchant/billing/integrations/dotpay/notification.rb +0 -86
- data/lib/active_merchant/billing/integrations/dotpay/return.rb +0 -11
- data/lib/active_merchant/billing/integrations/dotpay.rb +0 -22
- data/lib/active_merchant/billing/integrations/dwolla/common.rb +0 -23
- data/lib/active_merchant/billing/integrations/dwolla/helper.rb +0 -43
- data/lib/active_merchant/billing/integrations/dwolla/notification.rb +0 -64
- data/lib/active_merchant/billing/integrations/dwolla/return.rb +0 -49
- data/lib/active_merchant/billing/integrations/dwolla.rb +0 -23
- data/lib/active_merchant/billing/integrations/e_payment_plans/helper.rb +0 -34
- data/lib/active_merchant/billing/integrations/e_payment_plans/notification.rb +0 -84
- data/lib/active_merchant/billing/integrations/e_payment_plans.rb +0 -48
- data/lib/active_merchant/billing/integrations/easy_pay/common.rb +0 -40
- data/lib/active_merchant/billing/integrations/easy_pay/helper.rb +0 -36
- data/lib/active_merchant/billing/integrations/easy_pay/notification.rb +0 -59
- data/lib/active_merchant/billing/integrations/easy_pay.rb +0 -30
- data/lib/active_merchant/billing/integrations/epay/helper.rb +0 -55
- data/lib/active_merchant/billing/integrations/epay/notification.rb +0 -110
- data/lib/active_merchant/billing/integrations/epay.rb +0 -21
- data/lib/active_merchant/billing/integrations/first_data/helper.rb +0 -61
- data/lib/active_merchant/billing/integrations/first_data/notification.rb +0 -56
- data/lib/active_merchant/billing/integrations/first_data.rb +0 -38
- data/lib/active_merchant/billing/integrations/gestpay/common.rb +0 -42
- data/lib/active_merchant/billing/integrations/gestpay/helper.rb +0 -70
- data/lib/active_merchant/billing/integrations/gestpay/notification.rb +0 -85
- data/lib/active_merchant/billing/integrations/gestpay/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/gestpay.rb +0 -25
- data/lib/active_merchant/billing/integrations/helper.rb +0 -117
- data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +0 -58
- data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +0 -59
- data/lib/active_merchant/billing/integrations/hi_trust/return.rb +0 -68
- data/lib/active_merchant/billing/integrations/hi_trust.rb +0 -27
- data/lib/active_merchant/billing/integrations/ipay88/helper.rb +0 -118
- data/lib/active_merchant/billing/integrations/ipay88/notification.rb +0 -103
- data/lib/active_merchant/billing/integrations/ipay88/return.rb +0 -29
- data/lib/active_merchant/billing/integrations/ipay88.rb +0 -23
- data/lib/active_merchant/billing/integrations/liqpay/helper.rb +0 -43
- data/lib/active_merchant/billing/integrations/liqpay/notification.rb +0 -89
- data/lib/active_merchant/billing/integrations/liqpay/return.rb +0 -83
- data/lib/active_merchant/billing/integrations/liqpay.rb +0 -30
- data/lib/active_merchant/billing/integrations/maksuturva/helper.rb +0 -119
- data/lib/active_merchant/billing/integrations/maksuturva/notification.rb +0 -48
- data/lib/active_merchant/billing/integrations/maksuturva.rb +0 -86
- data/lib/active_merchant/billing/integrations/moneybookers/helper.rb +0 -75
- data/lib/active_merchant/billing/integrations/moneybookers/notification.rb +0 -123
- data/lib/active_merchant/billing/integrations/moneybookers.rb +0 -26
- data/lib/active_merchant/billing/integrations/nochex/helper.rb +0 -68
- data/lib/active_merchant/billing/integrations/nochex/notification.rb +0 -94
- data/lib/active_merchant/billing/integrations/nochex/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/nochex.rb +0 -88
- data/lib/active_merchant/billing/integrations/notification.rb +0 -71
- data/lib/active_merchant/billing/integrations/paxum/common.rb +0 -24
- data/lib/active_merchant/billing/integrations/paxum/helper.rb +0 -42
- data/lib/active_merchant/billing/integrations/paxum/notification.rb +0 -33
- data/lib/active_merchant/billing/integrations/paxum.rb +0 -44
- data/lib/active_merchant/billing/integrations/pay_fast/common.rb +0 -42
- data/lib/active_merchant/billing/integrations/pay_fast/helper.rb +0 -50
- data/lib/active_merchant/billing/integrations/pay_fast/notification.rb +0 -134
- data/lib/active_merchant/billing/integrations/pay_fast/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/pay_fast.rb +0 -70
- data/lib/active_merchant/billing/integrations/paydollar/helper.rb +0 -41
- data/lib/active_merchant/billing/integrations/paydollar/notification.rb +0 -60
- data/lib/active_merchant/billing/integrations/paydollar/return.rb +0 -15
- data/lib/active_merchant/billing/integrations/paydollar.rb +0 -59
- data/lib/active_merchant/billing/integrations/payflow_link/helper.rb +0 -116
- data/lib/active_merchant/billing/integrations/payflow_link/notification.rb +0 -78
- data/lib/active_merchant/billing/integrations/payflow_link.rb +0 -21
- data/lib/active_merchant/billing/integrations/paypal/helper.rb +0 -119
- data/lib/active_merchant/billing/integrations/paypal/notification.rb +0 -227
- data/lib/active_merchant/billing/integrations/paypal/return.rb +0 -10
- data/lib/active_merchant/billing/integrations/paypal.rb +0 -39
- data/lib/active_merchant/billing/integrations/paypal_payments_advanced/helper.rb +0 -15
- data/lib/active_merchant/billing/integrations/paypal_payments_advanced.rb +0 -20
- data/lib/active_merchant/billing/integrations/paysbuy/helper.rb +0 -15
- data/lib/active_merchant/billing/integrations/paysbuy/notification.rb +0 -39
- data/lib/active_merchant/billing/integrations/paysbuy.rb +0 -36
- data/lib/active_merchant/billing/integrations/payu_in/helper.rb +0 -76
- data/lib/active_merchant/billing/integrations/payu_in/notification.rb +0 -154
- data/lib/active_merchant/billing/integrations/payu_in/return.rb +0 -36
- data/lib/active_merchant/billing/integrations/payu_in.rb +0 -36
- data/lib/active_merchant/billing/integrations/payu_in_paisa/helper.rb +0 -19
- data/lib/active_merchant/billing/integrations/payu_in_paisa/notification.rb +0 -13
- data/lib/active_merchant/billing/integrations/payu_in_paisa/return.rb +0 -16
- data/lib/active_merchant/billing/integrations/payu_in_paisa.rb +0 -30
- data/lib/active_merchant/billing/integrations/platron/helper.rb +0 -32
- data/lib/active_merchant/billing/integrations/platron/notification.rb +0 -113
- data/lib/active_merchant/billing/integrations/platron.rb +0 -28
- data/lib/active_merchant/billing/integrations/pxpay/helper.rb +0 -112
- data/lib/active_merchant/billing/integrations/pxpay/notification.rb +0 -157
- data/lib/active_merchant/billing/integrations/pxpay/return.rb +0 -25
- data/lib/active_merchant/billing/integrations/pxpay.rb +0 -31
- data/lib/active_merchant/billing/integrations/quickpay/helper.rb +0 -96
- data/lib/active_merchant/billing/integrations/quickpay/notification.rb +0 -137
- data/lib/active_merchant/billing/integrations/quickpay.rb +0 -21
- data/lib/active_merchant/billing/integrations/rbkmoney/helper.rb +0 -23
- data/lib/active_merchant/billing/integrations/rbkmoney/notification.rb +0 -91
- data/lib/active_merchant/billing/integrations/rbkmoney.rb +0 -17
- data/lib/active_merchant/billing/integrations/return.rb +0 -42
- data/lib/active_merchant/billing/integrations/robokassa/common.rb +0 -19
- data/lib/active_merchant/billing/integrations/robokassa/helper.rb +0 -50
- data/lib/active_merchant/billing/integrations/robokassa/notification.rb +0 -55
- data/lib/active_merchant/billing/integrations/robokassa/return.rb +0 -17
- data/lib/active_merchant/billing/integrations/robokassa.rb +0 -49
- data/lib/active_merchant/billing/integrations/sage_pay_form/encryption.rb +0 -33
- data/lib/active_merchant/billing/integrations/sage_pay_form/helper.rb +0 -136
- data/lib/active_merchant/billing/integrations/sage_pay_form/notification.rb +0 -210
- data/lib/active_merchant/billing/integrations/sage_pay_form/return.rb +0 -31
- data/lib/active_merchant/billing/integrations/sage_pay_form.rb +0 -37
- data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +0 -107
- data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +0 -171
- data/lib/active_merchant/billing/integrations/two_checkout/return.rb +0 -58
- data/lib/active_merchant/billing/integrations/two_checkout.rb +0 -44
- data/lib/active_merchant/billing/integrations/valitor/helper.rb +0 -86
- data/lib/active_merchant/billing/integrations/valitor/notification.rb +0 -13
- data/lib/active_merchant/billing/integrations/valitor/response_fields.rb +0 -97
- data/lib/active_merchant/billing/integrations/valitor/return.rb +0 -13
- data/lib/active_merchant/billing/integrations/valitor.rb +0 -33
- data/lib/active_merchant/billing/integrations/verkkomaksut/helper.rb +0 -88
- data/lib/active_merchant/billing/integrations/verkkomaksut/notification.rb +0 -59
- data/lib/active_merchant/billing/integrations/verkkomaksut.rb +0 -20
- data/lib/active_merchant/billing/integrations/web_pay/common.rb +0 -50
- data/lib/active_merchant/billing/integrations/web_pay/helper.rb +0 -68
- data/lib/active_merchant/billing/integrations/web_pay/notification.rb +0 -51
- data/lib/active_merchant/billing/integrations/web_pay.rb +0 -45
- data/lib/active_merchant/billing/integrations/webmoney/common.rb +0 -17
- data/lib/active_merchant/billing/integrations/webmoney/helper.rb +0 -40
- data/lib/active_merchant/billing/integrations/webmoney/notification.rb +0 -47
- data/lib/active_merchant/billing/integrations/webmoney.rb +0 -43
- data/lib/active_merchant/billing/integrations/wirecard_checkout_page/common.rb +0 -104
- data/lib/active_merchant/billing/integrations/wirecard_checkout_page/helper.rb +0 -145
- data/lib/active_merchant/billing/integrations/wirecard_checkout_page/notification.rb +0 -101
- data/lib/active_merchant/billing/integrations/wirecard_checkout_page/return.rb +0 -35
- data/lib/active_merchant/billing/integrations/wirecard_checkout_page.rb +0 -39
- data/lib/active_merchant/billing/integrations/world_pay/helper.rb +0 -101
- data/lib/active_merchant/billing/integrations/world_pay/notification.rb +0 -160
- data/lib/active_merchant/billing/integrations/world_pay.rb +0 -34
- data/lib/active_merchant/billing/integrations.rb +0 -17
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -1
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
require 'nokogiri'
|
|
2
|
+
|
|
3
|
+
module ActiveMerchant #:nodoc:
|
|
4
|
+
module Billing #:nodoc:
|
|
5
|
+
# For more information visit {Bank Frick Acquiring Services}[http://www.bankfrickacquiring.com/merchantsolutions_en.html]
|
|
6
|
+
#
|
|
7
|
+
# Written by Piers Chambers (Varyonic.com)
|
|
8
|
+
class BankFrickGateway < Gateway
|
|
9
|
+
self.test_url = 'https://test.ctpe.io/payment/ctpe'
|
|
10
|
+
self.live_url = 'https://ctpe.io/payment/ctpe'
|
|
11
|
+
|
|
12
|
+
self.supported_countries = ['LI', 'US']
|
|
13
|
+
self.default_currency = 'EUR'
|
|
14
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover]
|
|
15
|
+
|
|
16
|
+
self.homepage_url = 'http://www.bankfrickacquiring.com/'
|
|
17
|
+
self.display_name = 'Bank Frick'
|
|
18
|
+
|
|
19
|
+
# The set of supported transactions for this gateway.
|
|
20
|
+
# More operations are supported by the gateway itself, but
|
|
21
|
+
# are not supported in this library.
|
|
22
|
+
SUPPORTED_TRANSACTIONS = {
|
|
23
|
+
'sale' => 'CC.DB',
|
|
24
|
+
'authonly' => 'CC.PA',
|
|
25
|
+
'capture' => 'CC.CP',
|
|
26
|
+
'refund' => 'CC.RF',
|
|
27
|
+
'void' => 'CC.RV',
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
def initialize(options={})
|
|
31
|
+
requires!(options, :sender, :channel, :userid, :userpwd)
|
|
32
|
+
super
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def purchase(money, payment, options={})
|
|
36
|
+
post = {}
|
|
37
|
+
add_invoice(post, money, options)
|
|
38
|
+
add_payment(post, payment)
|
|
39
|
+
add_address(post, payment, options)
|
|
40
|
+
add_customer_data(post, options)
|
|
41
|
+
|
|
42
|
+
commit('sale', post)
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
def authorize(money, payment, options={})
|
|
46
|
+
post = {}
|
|
47
|
+
add_invoice(post, money, options)
|
|
48
|
+
add_payment(post, payment)
|
|
49
|
+
add_address(post, payment, options)
|
|
50
|
+
add_customer_data(post, options)
|
|
51
|
+
|
|
52
|
+
commit('authonly', post)
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
def capture(money, authorization, options={})
|
|
56
|
+
post = {}
|
|
57
|
+
post[:authorization] = authorization
|
|
58
|
+
add_invoice(post, money, options)
|
|
59
|
+
|
|
60
|
+
commit('capture', post)
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
def refund(money, authorization, options={})
|
|
64
|
+
post = {}
|
|
65
|
+
post[:authorization] = authorization
|
|
66
|
+
add_invoice(post, money, options)
|
|
67
|
+
|
|
68
|
+
commit('refund', post)
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
def void(authorization, options={})
|
|
72
|
+
post = {}
|
|
73
|
+
post[:authorization] = authorization
|
|
74
|
+
|
|
75
|
+
commit('void', post)
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
def verify(credit_card, options={})
|
|
79
|
+
MultiResponse.run(:use_first_response) do |r|
|
|
80
|
+
r.process { authorize(100, credit_card, options) }
|
|
81
|
+
r.process(:ignore_result) { void(r.authorization, options) }
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
private
|
|
86
|
+
|
|
87
|
+
def add_customer_data(post, options)
|
|
88
|
+
post[:email] = options[:email] || 'noone@example.com'
|
|
89
|
+
post[:ip] = options[:ip] || '0.0.0.0'
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
def add_address(post, creditcard, options)
|
|
93
|
+
if address = options[:billing_address] || options[:address]
|
|
94
|
+
post[:address] = address[:address1].to_s
|
|
95
|
+
post[:company] = address[:company].to_s
|
|
96
|
+
post[:phone] = address[:phone].to_s.gsub(/[^0-9]/, '') || '0000000'
|
|
97
|
+
post[:zip] = address[:zip].to_s
|
|
98
|
+
post[:city] = address[:city].to_s
|
|
99
|
+
post[:country] = address[:country].to_s
|
|
100
|
+
post[:state] = address[:state].blank? ? 'n/a' : address[:state]
|
|
101
|
+
end
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
def add_invoice(post, money, options)
|
|
105
|
+
post[:order_id] = options[:order_id] if post.has_key? :order_id
|
|
106
|
+
post[:amount] = amount(money)
|
|
107
|
+
post[:currency] = (options[:currency] || currency(money))
|
|
108
|
+
post[:description] = options[:description]
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
def add_payment(post, payment)
|
|
112
|
+
post[:first_name] = payment.first_name
|
|
113
|
+
post[:last_name] = payment.last_name
|
|
114
|
+
post[:brand] = payment.brand
|
|
115
|
+
post[:card_num] = payment.number
|
|
116
|
+
post[:card_code] = payment.verification_value if payment.verification_value?
|
|
117
|
+
post[:exp_year] = payment.year
|
|
118
|
+
post[:exp_month] = payment.month
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
def parse(body)
|
|
122
|
+
results = {}
|
|
123
|
+
xml = Nokogiri::XML(body)
|
|
124
|
+
resp = xml.xpath('//Response/Transaction/Identification')
|
|
125
|
+
resp.children.each do |element|
|
|
126
|
+
results[element.name.downcase.to_sym] = element.text
|
|
127
|
+
end
|
|
128
|
+
resp = xml.xpath('//Response/Transaction/Processing')
|
|
129
|
+
resp.children.each do |element|
|
|
130
|
+
results[element.name.downcase.to_sym] = element.text
|
|
131
|
+
end
|
|
132
|
+
results
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
def commit(action, parameters)
|
|
136
|
+
url = (test? ? test_url : live_url)
|
|
137
|
+
headers = {
|
|
138
|
+
'Content-Type' => 'application/x-www-form-urlencoded;charset=UTF-8'
|
|
139
|
+
}
|
|
140
|
+
response = parse(ssl_post(url, post_data(action, parameters), headers))
|
|
141
|
+
|
|
142
|
+
Response.new(
|
|
143
|
+
success_from(response),
|
|
144
|
+
message_from(response),
|
|
145
|
+
response,
|
|
146
|
+
authorization: authorization_from(response),
|
|
147
|
+
test: test?
|
|
148
|
+
)
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
def success_from(response)
|
|
152
|
+
response[:result] == 'ACK'
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
def message_from(response)
|
|
156
|
+
response[:return]
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
def authorization_from(response)
|
|
160
|
+
response[:uniqueid]
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
def post_data(action, parameters = {})
|
|
164
|
+
xml = build_xml_request(action, parameters)
|
|
165
|
+
"load=#{CGI.escape(xml)}"
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
def build_xml_request(action, data)
|
|
169
|
+
xml = Builder::XmlMarkup.new :indent => 2
|
|
170
|
+
xml.Request(version: '1.0') do
|
|
171
|
+
xml.Header do
|
|
172
|
+
xml.Security(sender: @options[:sender], type: 'MERCHANT')
|
|
173
|
+
end
|
|
174
|
+
xml.Transaction(response: 'SYNC', channel: @options[:channel], mode: 'LIVE') do
|
|
175
|
+
xml.User(pwd: @options[:userpwd], login: @options[:userid])
|
|
176
|
+
xml.Identification do
|
|
177
|
+
xml.TransactionID data[:order_id] if data.has_key? :order_id
|
|
178
|
+
xml.ReferenceID data[:authorization] if data.has_key? :authorization
|
|
179
|
+
end
|
|
180
|
+
xml.Account do
|
|
181
|
+
xml.Holder "#{data[:first_name]} #{data[:last_name]}"
|
|
182
|
+
xml.Brand data[:brand]
|
|
183
|
+
xml.Number data[:card_num]
|
|
184
|
+
xml.Bank data[:bankname]
|
|
185
|
+
xml.Country data[:country]
|
|
186
|
+
xml.Authorization data[:authorization]
|
|
187
|
+
xml.Verification data[:card_code]
|
|
188
|
+
xml.Year data[:exp_year]
|
|
189
|
+
xml.Month data[:exp_month]
|
|
190
|
+
end if data.has_key? :card_num
|
|
191
|
+
xml.Payment(code: SUPPORTED_TRANSACTIONS[action]) do
|
|
192
|
+
xml.Presentation do
|
|
193
|
+
xml.Amount data[:amount]
|
|
194
|
+
xml.Currency data[:currency]
|
|
195
|
+
xml.Usage data[:description]
|
|
196
|
+
end
|
|
197
|
+
end
|
|
198
|
+
xml.Customer do
|
|
199
|
+
xml.Contact do
|
|
200
|
+
xml.Email data[:email]
|
|
201
|
+
xml.Mobile data[:mobile]
|
|
202
|
+
xml.Ip data[:ip]
|
|
203
|
+
xml.Phone data[:phone]
|
|
204
|
+
end
|
|
205
|
+
xml.Address do
|
|
206
|
+
xml.Street data[:address]
|
|
207
|
+
xml.Zip data[:zip]
|
|
208
|
+
xml.City data[:city]
|
|
209
|
+
xml.State data[:state]
|
|
210
|
+
xml.Country data[:country]
|
|
211
|
+
end
|
|
212
|
+
xml.Name do
|
|
213
|
+
xml.Salutation data[:salutation]
|
|
214
|
+
xml.Title data[:title]
|
|
215
|
+
xml.Given data[:first_name]
|
|
216
|
+
xml.Family data[:last_name]
|
|
217
|
+
xml.Company data[:company]
|
|
218
|
+
end
|
|
219
|
+
end if data.has_key? :last_name
|
|
220
|
+
end
|
|
221
|
+
end
|
|
222
|
+
end
|
|
223
|
+
end
|
|
224
|
+
end
|
|
225
|
+
end
|
|
@@ -26,20 +26,31 @@ module ActiveMerchant #:nodoc:
|
|
|
26
26
|
commit(money, post)
|
|
27
27
|
end
|
|
28
28
|
|
|
29
|
+
def supports_scrubbing?
|
|
30
|
+
true
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def scrub(transcript)
|
|
34
|
+
transcript.
|
|
35
|
+
gsub(%r((Authorization: Basic )\w+), '\1[FILTERED]').
|
|
36
|
+
gsub(%r((&?card_num=)[^&]*)i, '\1[FILTERED]').
|
|
37
|
+
gsub(%r((&?card_ccv2=)[^&]*)i, '\1[FILTERED]')
|
|
38
|
+
end
|
|
39
|
+
|
|
29
40
|
private
|
|
30
41
|
|
|
31
42
|
def add_response_type(post)
|
|
32
|
-
post[:response_format] =
|
|
43
|
+
post[:response_format] = 'JSON'
|
|
33
44
|
end
|
|
34
45
|
|
|
35
46
|
def add_customer_data(post, options)
|
|
36
47
|
post[:user] = @options[:login]
|
|
37
48
|
post[:phone] = options[:billing_address][:phone]
|
|
38
|
-
post[:mail] = options[:email]
|
|
49
|
+
post[:mail] = options[:email] || 'unspecified@email.com'
|
|
39
50
|
end
|
|
40
51
|
|
|
41
52
|
def add_order_data(post, options)
|
|
42
|
-
post[:reference] = options[:order_id]
|
|
53
|
+
post[:reference] = options[:order_id] || generate_unique_id
|
|
43
54
|
post[:concept] = options[:description]
|
|
44
55
|
end
|
|
45
56
|
|
|
@@ -52,7 +63,7 @@ module ActiveMerchant #:nodoc:
|
|
|
52
63
|
post[:card_num] = creditcard.number
|
|
53
64
|
post[:card_name] = creditcard.name
|
|
54
65
|
post[:card_type] = card_brand(creditcard)
|
|
55
|
-
post[:card_exp] = "#{sprintf("%02d", creditcard.month)}/#{
|
|
66
|
+
post[:card_exp] = "#{sprintf("%02d", creditcard.month)}/#{creditcard.year.to_s[-2, 2]}"
|
|
56
67
|
post[:card_ccv2] = creditcard.verification_value
|
|
57
68
|
end
|
|
58
69
|
|
|
@@ -63,7 +74,7 @@ module ActiveMerchant #:nodoc:
|
|
|
63
74
|
|
|
64
75
|
def card_brand(card)
|
|
65
76
|
brand = super
|
|
66
|
-
({
|
|
77
|
+
({'master' => 'mastercard', 'american_express' => 'amex'}[brand] || brand)
|
|
67
78
|
end
|
|
68
79
|
|
|
69
80
|
def parse(body)
|
|
@@ -79,25 +90,25 @@ module ActiveMerchant #:nodoc:
|
|
|
79
90
|
end
|
|
80
91
|
|
|
81
92
|
Response.new(success?(response),
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
93
|
+
response['message'],
|
|
94
|
+
response,
|
|
95
|
+
:test => test?,
|
|
96
|
+
:authorization => response['code_auth'])
|
|
86
97
|
end
|
|
87
98
|
|
|
88
99
|
def success?(response)
|
|
89
|
-
(response[
|
|
100
|
+
(response['response'] == 'ok')
|
|
90
101
|
end
|
|
91
102
|
|
|
92
103
|
def post_data(parameters = {})
|
|
93
|
-
parameters.collect { |key, value| "#{key}=#{CGI.escape(value.to_s)}" }.join(
|
|
104
|
+
parameters.collect { |key, value| "#{key}=#{CGI.escape(value.to_s)}" }.join('&')
|
|
94
105
|
end
|
|
95
106
|
|
|
96
107
|
def json_error(raw_response)
|
|
97
108
|
msg = 'Invalid response received from the Banwire API. Please contact Banwire support if you continue to receive this message.'
|
|
98
109
|
msg += " (The raw response returned by the API was #{raw_response.inspect})"
|
|
99
110
|
{
|
|
100
|
-
|
|
111
|
+
'message' => msg
|
|
101
112
|
}
|
|
102
113
|
end
|
|
103
114
|
end
|
|
@@ -0,0 +1,351 @@
|
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
|
2
|
+
module Billing #:nodoc:
|
|
3
|
+
class BarclaycardSmartpayGateway < Gateway
|
|
4
|
+
self.test_url = 'https://pal-test.barclaycardsmartpay.com/pal/servlet'
|
|
5
|
+
self.live_url = 'https://pal-live.barclaycardsmartpay.com/pal/servlet'
|
|
6
|
+
|
|
7
|
+
self.supported_countries = ['AL', 'AD', 'AM', 'AT', 'AZ', 'BY', 'BE', 'BA', 'BG', 'HR', 'CY', 'CZ', 'DK', 'EE', 'FI', 'FR', 'DE', 'GR', 'HU', 'IS', 'IE', 'IT', 'KZ', 'LV', 'LI', 'LT', 'LU', 'MK', 'MT', 'MD', 'MC', 'ME', 'NL', 'NO', 'PL', 'PT', 'RO', 'RU', 'SM', 'RS', 'SK', 'SI', 'ES', 'SE', 'CH', 'TR', 'UA', 'GB', 'VA']
|
|
8
|
+
self.default_currency = 'EUR'
|
|
9
|
+
self.currencies_with_three_decimal_places = %w(BHD KWD OMR RSD TND)
|
|
10
|
+
self.money_format = :cents
|
|
11
|
+
self.supported_cardtypes = [:visa, :master, :american_express, :discover, :diners_club, :jcb, :dankort, :maestro]
|
|
12
|
+
|
|
13
|
+
self.homepage_url = 'https://www.barclaycardsmartpay.com/'
|
|
14
|
+
self.display_name = 'Barclaycard Smartpay'
|
|
15
|
+
|
|
16
|
+
API_VERSION = 'v30'
|
|
17
|
+
|
|
18
|
+
def initialize(options = {})
|
|
19
|
+
requires!(options, :company, :merchant, :password)
|
|
20
|
+
super
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def purchase(money, creditcard, options = {})
|
|
24
|
+
requires!(options, :order_id)
|
|
25
|
+
|
|
26
|
+
MultiResponse.run do |r|
|
|
27
|
+
r.process { authorize(money, creditcard, options) }
|
|
28
|
+
r.process { capture(money, r.authorization, options) }
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
def authorize(money, creditcard, options = {})
|
|
33
|
+
requires!(options, :order_id)
|
|
34
|
+
|
|
35
|
+
post = payment_request(money, options)
|
|
36
|
+
post[:amount] = amount_hash(money, options[:currency])
|
|
37
|
+
post[:card] = credit_card_hash(creditcard)
|
|
38
|
+
post[:billingAddress] = billing_address_hash(options) if options[:billing_address]
|
|
39
|
+
post[:deliveryAddress] = shipping_address_hash(options) if options[:shipping_address]
|
|
40
|
+
add_3ds(post, options) if options[:execute_threed]
|
|
41
|
+
commit('authorise', post)
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def capture(money, authorization, options = {})
|
|
45
|
+
requires!(options, :order_id)
|
|
46
|
+
|
|
47
|
+
post = modification_request(authorization, options)
|
|
48
|
+
post[:modificationAmount] = amount_hash(money, options[:currency])
|
|
49
|
+
|
|
50
|
+
commit('capture', post)
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def refund(money, authorization, options = {})
|
|
54
|
+
requires!(options, :order_id)
|
|
55
|
+
|
|
56
|
+
post = modification_request(authorization, options)
|
|
57
|
+
post[:modificationAmount] = amount_hash(money, options[:currency])
|
|
58
|
+
|
|
59
|
+
commit('refund', post)
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
def credit(money, creditcard, options = {})
|
|
63
|
+
post = payment_request(money, options)
|
|
64
|
+
post[:amount] = amount_hash(money, options[:currency])
|
|
65
|
+
post[:card] = credit_card_hash(creditcard)
|
|
66
|
+
post[:dateOfBirth] = options[:date_of_birth] if options[:date_of_birth]
|
|
67
|
+
post[:entityType] = options[:entity_type] if options[:entity_type]
|
|
68
|
+
post[:nationality] = options[:nationality] if options[:nationality]
|
|
69
|
+
post[:shopperName] = options[:shopper_name] if options[:shopper_name]
|
|
70
|
+
|
|
71
|
+
if options[:third_party_payout]
|
|
72
|
+
post[:recurring] = options[:recurring_contract] || {contract: 'PAYOUT'}
|
|
73
|
+
MultiResponse.run do |r|
|
|
74
|
+
r.process {
|
|
75
|
+
commit(
|
|
76
|
+
'storeDetailAndSubmitThirdParty',
|
|
77
|
+
post,
|
|
78
|
+
@options[:store_payout_account],
|
|
79
|
+
@options[:store_payout_password])
|
|
80
|
+
}
|
|
81
|
+
r.process {
|
|
82
|
+
commit(
|
|
83
|
+
'confirmThirdParty',
|
|
84
|
+
modification_request(r.authorization, @options),
|
|
85
|
+
@options[:review_payout_account],
|
|
86
|
+
@options[:review_payout_password])
|
|
87
|
+
}
|
|
88
|
+
end
|
|
89
|
+
else
|
|
90
|
+
commit('refundWithData', post)
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
def void(identification, options = {})
|
|
95
|
+
requires!(options, :order_id)
|
|
96
|
+
|
|
97
|
+
post = modification_request(identification, options)
|
|
98
|
+
|
|
99
|
+
commit('cancel', post)
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
def verify(creditcard, options = {})
|
|
103
|
+
authorize(0, creditcard, options)
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
def store(creditcard, options = {})
|
|
107
|
+
post = store_request(options)
|
|
108
|
+
post[:card] = credit_card_hash(creditcard)
|
|
109
|
+
post[:recurring] = {:contract => 'RECURRING'}
|
|
110
|
+
|
|
111
|
+
commit('store', post)
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
def supports_scrubbing?
|
|
115
|
+
true
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
def scrub(transcript)
|
|
119
|
+
transcript.
|
|
120
|
+
gsub(%r(((?:\r\n)?Authorization: Basic )[^\r\n]+(\r\n)?), '\1[FILTERED]').
|
|
121
|
+
gsub(%r((card.number=)\d+), '\1[FILTERED]').
|
|
122
|
+
gsub(%r((card.cvc=)\d+), '\1[FILTERED]')
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
private
|
|
126
|
+
|
|
127
|
+
# Smartpay may return AVS codes not covered by standard AVSResult codes.
|
|
128
|
+
# Smartpay's descriptions noted below.
|
|
129
|
+
AVS_MAPPING = {
|
|
130
|
+
'0' => 'R', # Unknown
|
|
131
|
+
'1' => 'A', # Address matches, postal code doesn't
|
|
132
|
+
'2' => 'N', # Neither postal code nor address match
|
|
133
|
+
'3' => 'R', # AVS unavailable
|
|
134
|
+
'4' => 'E', # AVS not supported for this card type
|
|
135
|
+
'5' => 'U', # No AVS data provided
|
|
136
|
+
'6' => 'Z', # Postal code matches, address doesn't match
|
|
137
|
+
'7' => 'D', # Both postal code and address match
|
|
138
|
+
'8' => 'U', # Address not checked, postal code unknown
|
|
139
|
+
'9' => 'B', # Address matches, postal code unknown
|
|
140
|
+
'10' => 'N', # Address doesn't match, postal code unknown
|
|
141
|
+
'11' => 'U', # Postal code not checked, address unknown
|
|
142
|
+
'12' => 'B', # Address matches, postal code not checked
|
|
143
|
+
'13' => 'U', # Address doesn't match, postal code not checked
|
|
144
|
+
'14' => 'P', # Postal code matches, address unknown
|
|
145
|
+
'15' => 'P', # Postal code matches, address not checked
|
|
146
|
+
'16' => 'N', # Postal code doesn't match, address unknown
|
|
147
|
+
'17' => 'U', # Postal code doesn't match, address not checked
|
|
148
|
+
'18' => 'I' # Neither postal code nor address were checked
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
def commit(action, post, account = 'ws', password = @options[:password])
|
|
152
|
+
request = post_data(flatten_hash(post))
|
|
153
|
+
request_headers = headers(account, password)
|
|
154
|
+
raw_response = ssl_post(build_url(action), request, request_headers)
|
|
155
|
+
response = parse(raw_response)
|
|
156
|
+
|
|
157
|
+
Response.new(
|
|
158
|
+
success_from(response),
|
|
159
|
+
message_from(response),
|
|
160
|
+
response,
|
|
161
|
+
test: test?,
|
|
162
|
+
avs_result: AVSResult.new(:code => parse_avs_code(response)),
|
|
163
|
+
authorization: response['recurringDetailReference'] || authorization_from(post, response)
|
|
164
|
+
)
|
|
165
|
+
rescue ResponseError => e
|
|
166
|
+
case e.response.code
|
|
167
|
+
when '401'
|
|
168
|
+
return Response.new(false, 'Invalid credentials', {}, :test => test?)
|
|
169
|
+
when '403'
|
|
170
|
+
return Response.new(false, 'Not allowed', {}, :test => test?)
|
|
171
|
+
when '422', '500'
|
|
172
|
+
if e.response.body.split(/\W+/).any? { |word| %w(validation configuration security).include?(word) }
|
|
173
|
+
error_message = e.response.body[/#{Regexp.escape('message=')}(.*?)#{Regexp.escape('&')}/m, 1].tr('+', ' ')
|
|
174
|
+
error_code = e.response.body[/#{Regexp.escape('errorCode=')}(.*?)#{Regexp.escape('&')}/m, 1]
|
|
175
|
+
return Response.new(false, error_code + ': ' + error_message, {}, :test => test?)
|
|
176
|
+
end
|
|
177
|
+
end
|
|
178
|
+
raise
|
|
179
|
+
end
|
|
180
|
+
|
|
181
|
+
def authorization_from(parameters, response)
|
|
182
|
+
authorization = [parameters[:originalReference], response['pspReference']].compact
|
|
183
|
+
|
|
184
|
+
return nil if authorization.empty?
|
|
185
|
+
return authorization.join('#')
|
|
186
|
+
end
|
|
187
|
+
|
|
188
|
+
def parse_avs_code(response)
|
|
189
|
+
AVS_MAPPING[response['avsResult'][0..1].strip] if response['avsResult']
|
|
190
|
+
end
|
|
191
|
+
|
|
192
|
+
def flatten_hash(hash, prefix = nil)
|
|
193
|
+
flat_hash = {}
|
|
194
|
+
hash.each_pair do |key, val|
|
|
195
|
+
conc_key = prefix.nil? ? key : "#{prefix}.#{key}"
|
|
196
|
+
if val.is_a?(Hash)
|
|
197
|
+
flat_hash.merge!(flatten_hash(val, conc_key))
|
|
198
|
+
else
|
|
199
|
+
flat_hash[conc_key] = val
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
flat_hash
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
def headers(account, password)
|
|
206
|
+
{
|
|
207
|
+
'Content-Type' => 'application/x-www-form-urlencoded; charset=utf-8',
|
|
208
|
+
'Authorization' => 'Basic ' + Base64.strict_encode64("#{account}@Company.#{@options[:company]}:#{password}").strip
|
|
209
|
+
}
|
|
210
|
+
end
|
|
211
|
+
|
|
212
|
+
def parse(response)
|
|
213
|
+
Hash[
|
|
214
|
+
response.split('&').map do |x|
|
|
215
|
+
key, val = x.split('=', 2)
|
|
216
|
+
[key.split('.').last, CGI.unescape(val)]
|
|
217
|
+
end
|
|
218
|
+
]
|
|
219
|
+
end
|
|
220
|
+
|
|
221
|
+
def post_data(data)
|
|
222
|
+
data.map do |key, val|
|
|
223
|
+
"#{key}=#{CGI.escape(val.to_s)}"
|
|
224
|
+
end.reduce do |x, y|
|
|
225
|
+
"#{x}&#{y}"
|
|
226
|
+
end
|
|
227
|
+
end
|
|
228
|
+
|
|
229
|
+
def message_from(response)
|
|
230
|
+
return response['resultCode'] if response.has_key?('resultCode') # Payment request
|
|
231
|
+
return response['response'] if response['response'] # Modification request
|
|
232
|
+
return response['result'] if response.has_key?('result') # Store/Recurring request
|
|
233
|
+
'Failure' # Negative fallback in case of error
|
|
234
|
+
end
|
|
235
|
+
|
|
236
|
+
def success_from(response)
|
|
237
|
+
return true if response['result'] == 'Success'
|
|
238
|
+
|
|
239
|
+
successful_results = %w(Authorised Received [payout-submit-received])
|
|
240
|
+
successful_responses = %w([capture-received] [cancel-received] [refund-received] [payout-confirm-received])
|
|
241
|
+
successful_results.include?(response['resultCode']) || successful_responses.include?(response['response'])
|
|
242
|
+
end
|
|
243
|
+
|
|
244
|
+
def build_url(action)
|
|
245
|
+
case action
|
|
246
|
+
when 'store'
|
|
247
|
+
"#{test? ? self.test_url : self.live_url}/Recurring/#{API_VERSION}/storeToken"
|
|
248
|
+
when 'finalize3ds'
|
|
249
|
+
"#{test? ? self.test_url : self.live_url}/Payment/#{API_VERSION}/authorise3d"
|
|
250
|
+
when 'storeDetailAndSubmitThirdParty', 'confirmThirdParty'
|
|
251
|
+
"#{test? ? self.test_url : self.live_url}/Payout/#{API_VERSION}/#{action}"
|
|
252
|
+
else
|
|
253
|
+
"#{test? ? self.test_url : self.live_url}/Payment/#{API_VERSION}/#{action}"
|
|
254
|
+
end
|
|
255
|
+
end
|
|
256
|
+
|
|
257
|
+
def billing_address_hash(options)
|
|
258
|
+
address = options[:address] || options[:billing_address] if options[:address] || options[:billing_address]
|
|
259
|
+
street = options[:street] || parse_street(address)
|
|
260
|
+
house = options[:house_number] || parse_house_number(address)
|
|
261
|
+
|
|
262
|
+
create_address_hash(address, house, street)
|
|
263
|
+
end
|
|
264
|
+
|
|
265
|
+
def shipping_address_hash(options)
|
|
266
|
+
address = options[:shipping_address]
|
|
267
|
+
street = options[:shipping_street] || parse_street(address)
|
|
268
|
+
house = options[:shipping_house_number] || parse_house_number(address)
|
|
269
|
+
|
|
270
|
+
create_address_hash(address, house, street)
|
|
271
|
+
end
|
|
272
|
+
|
|
273
|
+
def parse_street(address)
|
|
274
|
+
address_to_parse = "#{address[:address1]} #{address[:address2]}"
|
|
275
|
+
street = address[:street] || address_to_parse.split(/\s+/).keep_if { |x| x !~ /\d/ }.join(' ')
|
|
276
|
+
street.empty? ? 'Not Provided' : street
|
|
277
|
+
end
|
|
278
|
+
|
|
279
|
+
def parse_house_number(address)
|
|
280
|
+
address_to_parse = "#{address[:address1]} #{address[:address2]}"
|
|
281
|
+
house = address[:houseNumberOrName] || address_to_parse.split(/\s+/).keep_if { |x| x =~ /\d/ }.join(' ')
|
|
282
|
+
house.empty? ? 'Not Provided' : house
|
|
283
|
+
end
|
|
284
|
+
|
|
285
|
+
def create_address_hash(address, house, street)
|
|
286
|
+
hash = {}
|
|
287
|
+
hash[:houseNumberOrName] = house
|
|
288
|
+
hash[:street] = street
|
|
289
|
+
hash[:city] = address[:city]
|
|
290
|
+
hash[:stateOrProvince] = address[:state]
|
|
291
|
+
hash[:postalCode] = address[:zip]
|
|
292
|
+
hash[:country] = address[:country]
|
|
293
|
+
hash.keep_if { |_, v| v }
|
|
294
|
+
end
|
|
295
|
+
|
|
296
|
+
def amount_hash(money, currency)
|
|
297
|
+
currency = currency || currency(money)
|
|
298
|
+
hash = {}
|
|
299
|
+
hash[:currency] = currency
|
|
300
|
+
hash[:value] = localized_amount(money, currency) if money
|
|
301
|
+
hash
|
|
302
|
+
end
|
|
303
|
+
|
|
304
|
+
def credit_card_hash(creditcard)
|
|
305
|
+
hash = {}
|
|
306
|
+
hash[:cvc] = creditcard.verification_value if creditcard.verification_value
|
|
307
|
+
hash[:expiryMonth] = format(creditcard.month, :two_digits) if creditcard.month
|
|
308
|
+
hash[:expiryYear] = format(creditcard.year, :four_digits) if creditcard.year
|
|
309
|
+
hash[:holderName] = creditcard.name if creditcard.name
|
|
310
|
+
hash[:number] = creditcard.number if creditcard.number
|
|
311
|
+
hash
|
|
312
|
+
end
|
|
313
|
+
|
|
314
|
+
def modification_request(reference, options)
|
|
315
|
+
hash = {}
|
|
316
|
+
hash[:merchantAccount] = @options[:merchant]
|
|
317
|
+
hash[:originalReference] = psp_reference_from(reference)
|
|
318
|
+
hash.keep_if { |_, v| v }
|
|
319
|
+
end
|
|
320
|
+
|
|
321
|
+
def psp_reference_from(authorization)
|
|
322
|
+
authorization.nil? ? nil : authorization.split('#').first
|
|
323
|
+
end
|
|
324
|
+
|
|
325
|
+
def payment_request(money, options)
|
|
326
|
+
hash = {}
|
|
327
|
+
hash[:merchantAccount] = @options[:merchant]
|
|
328
|
+
hash[:reference] = options[:order_id]
|
|
329
|
+
hash[:shopperEmail] = options[:email]
|
|
330
|
+
hash[:shopperIP] = options[:ip]
|
|
331
|
+
hash[:shopperReference] = options[:customer]
|
|
332
|
+
hash[:shopperInteraction] = options[:shopper_interaction]
|
|
333
|
+
hash[:deviceFingerprint] = options[:device_fingerprint]
|
|
334
|
+
hash.keep_if { |_, v| v }
|
|
335
|
+
end
|
|
336
|
+
|
|
337
|
+
def store_request(options)
|
|
338
|
+
hash = {}
|
|
339
|
+
hash[:merchantAccount] = @options[:merchant]
|
|
340
|
+
hash[:shopperEmail] = options[:email]
|
|
341
|
+
hash[:shopperReference] = options[:customer] if options[:customer]
|
|
342
|
+
hash.keep_if { |_, v| v }
|
|
343
|
+
end
|
|
344
|
+
|
|
345
|
+
def add_3ds(post, options)
|
|
346
|
+
post[:additionalData] = { executeThreeD: 'true' }
|
|
347
|
+
post[:browserInfo] = { userAgent: options[:user_agent], acceptHeader: options[:accept_header] }
|
|
348
|
+
end
|
|
349
|
+
end
|
|
350
|
+
end
|
|
351
|
+
end
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
module ActiveMerchant #:nodoc:
|
|
2
2
|
module Billing #:nodoc:
|
|
3
3
|
class BarclaysEpdqExtraPlusGateway < OgoneGateway
|
|
4
|
-
self.test_url =
|
|
5
|
-
self.live_url =
|
|
4
|
+
self.test_url = 'https://mdepayments.epdq.co.uk/ncol/test/'
|
|
5
|
+
self.live_url = 'https://payments.epdq.co.uk/ncol/prod/'
|
|
6
6
|
|
|
7
|
-
self.display_name =
|
|
8
|
-
self.homepage_url =
|
|
7
|
+
self.display_name = 'Barclays ePDQ Extra Plus'
|
|
8
|
+
self.homepage_url = 'http://www.barclaycard.co.uk/business/accepting-payments/epdq-ecomm/'
|
|
9
9
|
|
|
10
|
-
self.supported_countries = [
|
|
10
|
+
self.supported_countries = ['GB']
|
|
11
11
|
self.supported_cardtypes = [:visa, :master, :american_express, :diners_club, :discover, :jcb, :maestro]
|
|
12
|
-
self.default_currency =
|
|
12
|
+
self.default_currency = 'GBP'
|
|
13
13
|
end
|
|
14
14
|
end
|
|
15
15
|
end
|