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,247 @@
|
|
1
|
+
require 'nokogiri'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
class S5Gateway < Gateway
|
6
|
+
self.test_url = 'https://test.ctpe.io/payment/ctpe'
|
7
|
+
self.live_url = 'https://ctpe.io/payment/ctpe'
|
8
|
+
|
9
|
+
self.supported_countries = ['DK']
|
10
|
+
self.default_currency = 'EUR'
|
11
|
+
self.supported_cardtypes = %i[visa master maestro]
|
12
|
+
|
13
|
+
self.homepage_url = 'http://www.s5.dk/'
|
14
|
+
self.display_name = 'S5'
|
15
|
+
|
16
|
+
SUPPORTED_TRANSACTIONS = {
|
17
|
+
'sale' => 'CC.DB',
|
18
|
+
'authonly' => 'CC.PA',
|
19
|
+
'capture' => 'CC.CP',
|
20
|
+
'refund' => 'CC.RF',
|
21
|
+
'void' => 'CC.RV',
|
22
|
+
'store' => 'CC.RG'
|
23
|
+
}
|
24
|
+
|
25
|
+
def initialize(options = {})
|
26
|
+
requires!(options, :sender, :channel, :login, :password)
|
27
|
+
super
|
28
|
+
end
|
29
|
+
|
30
|
+
def purchase(money, payment, options = {})
|
31
|
+
request = build_xml_request do |xml|
|
32
|
+
add_identification(xml, options)
|
33
|
+
add_payment(xml, money, 'sale', options)
|
34
|
+
add_account(xml, payment)
|
35
|
+
add_customer(xml, payment, options)
|
36
|
+
add_recurrence_mode(xml, options)
|
37
|
+
end
|
38
|
+
|
39
|
+
commit(request)
|
40
|
+
end
|
41
|
+
|
42
|
+
def refund(money, authorization, options = {})
|
43
|
+
request = build_xml_request do |xml|
|
44
|
+
add_identification(xml, options, authorization)
|
45
|
+
add_payment(xml, money, 'refund', options)
|
46
|
+
end
|
47
|
+
|
48
|
+
commit(request)
|
49
|
+
end
|
50
|
+
|
51
|
+
def authorize(money, payment, options = {})
|
52
|
+
request = build_xml_request do |xml|
|
53
|
+
add_identification(xml, options)
|
54
|
+
add_payment(xml, money, 'authonly', options)
|
55
|
+
add_account(xml, payment)
|
56
|
+
add_customer(xml, payment, options)
|
57
|
+
add_recurrence_mode(xml, options)
|
58
|
+
end
|
59
|
+
|
60
|
+
commit(request)
|
61
|
+
end
|
62
|
+
|
63
|
+
def capture(money, authorization, options = {})
|
64
|
+
request = build_xml_request do |xml|
|
65
|
+
add_identification(xml, options, authorization)
|
66
|
+
add_payment(xml, money, 'capture', options)
|
67
|
+
end
|
68
|
+
|
69
|
+
commit(request)
|
70
|
+
end
|
71
|
+
|
72
|
+
def void(authorization, options = {})
|
73
|
+
request = build_xml_request do |xml|
|
74
|
+
add_identification(xml, options, authorization)
|
75
|
+
add_payment(xml, nil, 'void', options)
|
76
|
+
end
|
77
|
+
|
78
|
+
commit(request)
|
79
|
+
end
|
80
|
+
|
81
|
+
def store(payment, options = {})
|
82
|
+
request = build_xml_request do |xml|
|
83
|
+
xml.Payment(code: SUPPORTED_TRANSACTIONS['store'])
|
84
|
+
add_account(xml, payment)
|
85
|
+
add_customer(xml, payment, options)
|
86
|
+
add_recurrence_mode(xml, options)
|
87
|
+
end
|
88
|
+
|
89
|
+
commit(request)
|
90
|
+
end
|
91
|
+
|
92
|
+
def verify(credit_card, options = {})
|
93
|
+
MultiResponse.run(:use_first_response) do |r|
|
94
|
+
r.process { authorize(100, credit_card, options) }
|
95
|
+
r.process(:ignore_result) { void(r.authorization, options) }
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
def supports_scrubbing?
|
100
|
+
true
|
101
|
+
end
|
102
|
+
|
103
|
+
def scrub(transcript)
|
104
|
+
transcript.
|
105
|
+
gsub(%r((pwd=).+?(/>))i, '\1[FILTERED]\2').
|
106
|
+
gsub(%r((<Number>).+?(</Number>))i, '\1[FILTERED]\2').
|
107
|
+
gsub(%r((<Verification>).+?(</Verification>))i, '\1[FILTERED]\2')
|
108
|
+
end
|
109
|
+
|
110
|
+
private
|
111
|
+
|
112
|
+
def add_identification(xml, options, authorization = nil)
|
113
|
+
xml.Identification do
|
114
|
+
xml.TransactionID options[:order_id] if options[:order_id]
|
115
|
+
xml.ReferenceID authorization if authorization
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
def add_payment(xml, money, action, options)
|
120
|
+
xml.Payment(code: SUPPORTED_TRANSACTIONS[action]) do
|
121
|
+
xml.Memo "return_code=#{options[:memo]}" if options[:memo]
|
122
|
+
xml.Presentation do
|
123
|
+
xml.Amount amount(money)
|
124
|
+
xml.Currency options[:currency] || currency(money)
|
125
|
+
xml.Usage options[:description]
|
126
|
+
end
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
def add_account(xml, payment_method)
|
131
|
+
if !payment_method.respond_to?(:number)
|
132
|
+
xml.Account(registration: payment_method)
|
133
|
+
else
|
134
|
+
xml.Account do
|
135
|
+
xml.Number payment_method.number
|
136
|
+
xml.Holder "#{payment_method.first_name} #{payment_method.last_name}"
|
137
|
+
xml.Brand payment_method.brand
|
138
|
+
xml.Expiry(year: payment_method.year, month: payment_method.month)
|
139
|
+
xml.Verification payment_method.verification_value
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
def add_customer(xml, creditcard, options)
|
145
|
+
return unless creditcard.respond_to?(:number)
|
146
|
+
|
147
|
+
address = options[:billing_address]
|
148
|
+
xml.Customer do
|
149
|
+
xml.Contact do
|
150
|
+
xml.Email options[:email]
|
151
|
+
xml.Ip options[:ip]
|
152
|
+
xml.Phone address[:phone] if address
|
153
|
+
end
|
154
|
+
add_address(xml, address)
|
155
|
+
xml.Name do
|
156
|
+
xml.Given creditcard.first_name
|
157
|
+
xml.Family creditcard.last_name
|
158
|
+
xml.Company options[:company]
|
159
|
+
end
|
160
|
+
end
|
161
|
+
end
|
162
|
+
|
163
|
+
def add_address(xml, address)
|
164
|
+
return unless address
|
165
|
+
|
166
|
+
xml.Address do
|
167
|
+
xml.Street "#{address[:address1]} #{address[:address2]}"
|
168
|
+
xml.Zip address[:zip]
|
169
|
+
xml.City address[:city]
|
170
|
+
xml.State address[:state]
|
171
|
+
xml.Country address[:country]
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
175
|
+
def add_recurrence_mode(xml, options)
|
176
|
+
if options[:recurring] == true
|
177
|
+
xml.Recurrence(mode: 'REPEATED')
|
178
|
+
else
|
179
|
+
xml.Recurrence(mode: 'INITIAL')
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
def parse(body)
|
184
|
+
results = {}
|
185
|
+
xml = Nokogiri::XML(body)
|
186
|
+
resp = xml.xpath('//Response/Transaction/Identification')
|
187
|
+
resp.children.each do |element|
|
188
|
+
results[element.name.downcase.to_sym] = element.text
|
189
|
+
end
|
190
|
+
resp = xml.xpath('//Response/Transaction/Processing')
|
191
|
+
resp.children.each do |element|
|
192
|
+
results[element.name.downcase.to_sym] = element.text
|
193
|
+
end
|
194
|
+
results
|
195
|
+
end
|
196
|
+
|
197
|
+
def commit(xml)
|
198
|
+
url = (test? ? test_url : live_url)
|
199
|
+
headers = {
|
200
|
+
'Content-Type' => 'application/x-www-form-urlencoded;charset=UTF-8'
|
201
|
+
}
|
202
|
+
|
203
|
+
response = parse(ssl_post(url, post_data(xml), headers))
|
204
|
+
|
205
|
+
Response.new(
|
206
|
+
success_from(response),
|
207
|
+
message_from(response),
|
208
|
+
response,
|
209
|
+
authorization: authorization_from(response),
|
210
|
+
test: test?
|
211
|
+
)
|
212
|
+
end
|
213
|
+
|
214
|
+
def success_from(response)
|
215
|
+
response[:result] == 'ACK'
|
216
|
+
end
|
217
|
+
|
218
|
+
def message_from(response)
|
219
|
+
response[:return]
|
220
|
+
end
|
221
|
+
|
222
|
+
def authorization_from(response)
|
223
|
+
response[:uniqueid]
|
224
|
+
end
|
225
|
+
|
226
|
+
def post_data(xml)
|
227
|
+
"load=#{xml}"
|
228
|
+
end
|
229
|
+
|
230
|
+
def build_xml_request
|
231
|
+
builder = Nokogiri::XML::Builder.new(encoding: 'UTF-8') do |xml|
|
232
|
+
xml.Request(version: '1.0') do
|
233
|
+
xml.Header do
|
234
|
+
xml.Security(sender: @options[:sender])
|
235
|
+
end
|
236
|
+
xml.Transaction(mode: @options[:mode] || 'LIVE', channel: @options[:channel]) do
|
237
|
+
xml.User(login: @options[:login], pwd: @options[:password])
|
238
|
+
yield(xml)
|
239
|
+
end
|
240
|
+
end
|
241
|
+
end
|
242
|
+
|
243
|
+
builder.to_xml
|
244
|
+
end
|
245
|
+
end
|
246
|
+
end
|
247
|
+
end
|
@@ -0,0 +1,298 @@
|
|
1
|
+
require 'nokogiri'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
class SafeChargeGateway < Gateway
|
6
|
+
self.test_url = 'https://process.sandbox.safecharge.com/service.asmx/Process'
|
7
|
+
self.live_url = 'https://process.safecharge.com/service.asmx/Process'
|
8
|
+
|
9
|
+
self.supported_countries = %w[AT BE BG CY CZ DE DK EE GR ES FI FR GI HK HR HU IE IS IT LI LT LU LV MT MX NL NO PL PT RO SE SG SI SK GB US]
|
10
|
+
self.default_currency = 'USD'
|
11
|
+
self.supported_cardtypes = %i[visa master]
|
12
|
+
|
13
|
+
self.homepage_url = 'https://www.safecharge.com'
|
14
|
+
self.display_name = 'SafeCharge'
|
15
|
+
|
16
|
+
VERSION = '4.1.0'
|
17
|
+
|
18
|
+
def initialize(options = {})
|
19
|
+
requires!(options, :client_login_id, :client_password)
|
20
|
+
super
|
21
|
+
end
|
22
|
+
|
23
|
+
def purchase(money, payment, options = {})
|
24
|
+
post = {}
|
25
|
+
|
26
|
+
# Determine if 3DS is requested, or there is standard external MPI data
|
27
|
+
if options[:three_d_secure]
|
28
|
+
if options[:three_d_secure].is_a?(Hash)
|
29
|
+
add_external_mpi_data(post, options)
|
30
|
+
else
|
31
|
+
post[:sg_APIType] = 1
|
32
|
+
trans_type = 'Sale3D'
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
trans_type ||= 'Sale'
|
37
|
+
|
38
|
+
add_transaction_data(trans_type, post, money, options)
|
39
|
+
add_payment(post, payment, options)
|
40
|
+
add_customer_details(post, payment, options)
|
41
|
+
|
42
|
+
commit(post)
|
43
|
+
end
|
44
|
+
|
45
|
+
def authorize(money, payment, options = {})
|
46
|
+
post = {}
|
47
|
+
|
48
|
+
add_external_mpi_data(post, options) if options[:three_d_secure]&.is_a?(Hash)
|
49
|
+
add_transaction_data('Auth', post, money, options)
|
50
|
+
add_payment(post, payment, options)
|
51
|
+
add_customer_details(post, payment, options)
|
52
|
+
|
53
|
+
commit(post)
|
54
|
+
end
|
55
|
+
|
56
|
+
def capture(money, authorization, options = {})
|
57
|
+
post = {}
|
58
|
+
auth, transaction_id, token, exp_month, exp_year, _, original_currency = authorization.split('|')
|
59
|
+
add_transaction_data('Settle', post, money, options.merge!({ currency: original_currency }))
|
60
|
+
post[:sg_AuthCode] = auth
|
61
|
+
post[:sg_TransactionID] = transaction_id
|
62
|
+
post[:sg_CCToken] = token
|
63
|
+
post[:sg_ExpMonth] = exp_month
|
64
|
+
post[:sg_ExpYear] = exp_year
|
65
|
+
post[:sg_Email] = options[:email]
|
66
|
+
|
67
|
+
commit(post)
|
68
|
+
end
|
69
|
+
|
70
|
+
def refund(money, authorization, options = {})
|
71
|
+
post = {}
|
72
|
+
auth, transaction_id, token, exp_month, exp_year, _, original_currency = authorization.split('|')
|
73
|
+
add_transaction_data('Credit', post, money, options.merge!({ currency: original_currency }))
|
74
|
+
post[:sg_CreditType] = 2
|
75
|
+
post[:sg_AuthCode] = auth
|
76
|
+
post[:sg_TransactionID] = transaction_id
|
77
|
+
post[:sg_CCToken] = token
|
78
|
+
post[:sg_ExpMonth] = exp_month
|
79
|
+
post[:sg_ExpYear] = exp_year
|
80
|
+
|
81
|
+
commit(post)
|
82
|
+
end
|
83
|
+
|
84
|
+
def credit(money, payment, options = {})
|
85
|
+
post = {}
|
86
|
+
|
87
|
+
add_payment(post, payment, options)
|
88
|
+
add_transaction_data('Credit', post, money, options)
|
89
|
+
|
90
|
+
post[:sg_CreditType] = 1
|
91
|
+
|
92
|
+
commit(post)
|
93
|
+
end
|
94
|
+
|
95
|
+
def void(authorization, options = {})
|
96
|
+
post = {}
|
97
|
+
auth, transaction_id, token, exp_month, exp_year, original_amount, original_currency = authorization.split('|')
|
98
|
+
add_transaction_data('Void', post, (original_amount.to_f * 100), options.merge!({ currency: original_currency }))
|
99
|
+
post[:sg_CreditType] = 2
|
100
|
+
post[:sg_AuthCode] = auth
|
101
|
+
post[:sg_TransactionID] = transaction_id
|
102
|
+
post[:sg_CCToken] = token
|
103
|
+
post[:sg_ExpMonth] = exp_month
|
104
|
+
post[:sg_ExpYear] = exp_year
|
105
|
+
|
106
|
+
commit(post)
|
107
|
+
end
|
108
|
+
|
109
|
+
def verify(credit_card, options = {})
|
110
|
+
authorize(0, credit_card, options)
|
111
|
+
end
|
112
|
+
|
113
|
+
def supports_scrubbing?
|
114
|
+
true
|
115
|
+
end
|
116
|
+
|
117
|
+
def scrub(transcript)
|
118
|
+
transcript.
|
119
|
+
gsub(%r((sg_ClientPassword=)[^&]+(&?)), '\1[FILTERED]\2').
|
120
|
+
gsub(%r((sg_CardNumber=)[^&]+(&?)), '\1[FILTERED]\2').
|
121
|
+
gsub(%r((sg_CVV2=)\d+), '\1[FILTERED]')
|
122
|
+
end
|
123
|
+
|
124
|
+
private
|
125
|
+
|
126
|
+
def add_transaction_data(trans_type, post, money, options)
|
127
|
+
currency = options[:currency] || currency(money)
|
128
|
+
|
129
|
+
post[:sg_TransType] = trans_type
|
130
|
+
post[:sg_Currency] = currency
|
131
|
+
post[:sg_Amount] = localized_amount(money, currency)
|
132
|
+
post[:sg_ClientLoginID] = @options[:client_login_id]
|
133
|
+
post[:sg_ClientPassword] = @options[:client_password]
|
134
|
+
post[:sg_ResponseFormat] = '4'
|
135
|
+
post[:sg_Version] = VERSION
|
136
|
+
post[:sg_ClientUniqueID] = options[:order_id] if options[:order_id]
|
137
|
+
post[:sg_UserID] = options[:user_id] if options[:user_id]
|
138
|
+
post[:sg_AuthType] = options[:auth_type] if options[:auth_type]
|
139
|
+
post[:sg_ExpectedFulfillmentCount] = options[:expected_fulfillment_count] if options[:expected_fulfillment_count]
|
140
|
+
post[:sg_WebsiteID] = options[:website_id] if options[:website_id]
|
141
|
+
post[:sg_IPAddress] = options[:ip] if options[:ip]
|
142
|
+
post[:sg_VendorID] = options[:vendor_id] if options[:vendor_id]
|
143
|
+
post[:sg_Descriptor] = options[:merchant_descriptor] if options[:merchant_descriptor]
|
144
|
+
post[:sg_MerchantPhoneNumber] = options[:merchant_phone_number] if options[:merchant_phone_number]
|
145
|
+
post[:sg_MerchantName] = options[:merchant_name] if options[:merchant_name]
|
146
|
+
post[:sg_ProductID] = options[:product_id] if options[:product_id]
|
147
|
+
post[:sg_NotUseCVV] = options[:not_use_cvv].to_s == 'true' ? 1 : 0 unless options[:not_use_cvv].nil?
|
148
|
+
end
|
149
|
+
|
150
|
+
def add_payment(post, payment, options = {})
|
151
|
+
post[:sg_ExpMonth] = format(payment.month, :two_digits)
|
152
|
+
post[:sg_ExpYear] = format(payment.year, :two_digits)
|
153
|
+
post[:sg_CardNumber] = payment.number
|
154
|
+
|
155
|
+
if payment.is_a?(NetworkTokenizationCreditCard) && payment.source == :network_token
|
156
|
+
post[:sg_CAVV] = payment.payment_cryptogram
|
157
|
+
post[:sg_ECI] = options[:three_d_secure] && options[:three_d_secure][:eci] || '05'
|
158
|
+
post[:sg_IsExternalMPI] = 1
|
159
|
+
post[:sg_ExternalTokenProvider] = 5
|
160
|
+
else
|
161
|
+
post[:sg_CVV2] = payment.verification_value
|
162
|
+
post[:sg_NameOnCard] = payment.name
|
163
|
+
post[:sg_StoredCredentialMode] = (options[:stored_credential_mode] == true ? 1 : 0)
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
167
|
+
def add_customer_details(post, payment, options)
|
168
|
+
if address = options[:billing_address] || options[:address]
|
169
|
+
post[:sg_FirstName] = payment.first_name
|
170
|
+
post[:sg_LastName] = payment.last_name
|
171
|
+
post[:sg_Address] = address[:address1] if address[:address1]
|
172
|
+
post[:sg_City] = address[:city] if address[:city]
|
173
|
+
post[:sg_State] = address[:state] if address[:state]
|
174
|
+
post[:sg_Zip] = address[:zip] if address[:zip]
|
175
|
+
post[:sg_Country] = address[:country] if address[:country]
|
176
|
+
post[:sg_Phone] = address[:phone] if address[:phone]
|
177
|
+
end
|
178
|
+
|
179
|
+
post[:sg_Email] = options[:email]
|
180
|
+
end
|
181
|
+
|
182
|
+
def add_external_mpi_data(post, options)
|
183
|
+
post[:sg_ECI] = options[:three_d_secure][:eci] if options[:three_d_secure][:eci]
|
184
|
+
post[:sg_CAVV] = options[:three_d_secure][:cavv] if options[:three_d_secure][:cavv]
|
185
|
+
post[:sg_dsTransID] = options[:three_d_secure][:ds_transaction_id] if options[:three_d_secure][:ds_transaction_id]
|
186
|
+
post[:sg_threeDSProtocolVersion] = options[:three_d_secure][:ds_transaction_id] ? '2' : '1'
|
187
|
+
post[:sg_Xid] = options[:three_d_secure][:xid]
|
188
|
+
post[:sg_IsExternalMPI] = 1
|
189
|
+
post[:sg_EnablePartialApproval] = options[:is_partial_approval]
|
190
|
+
post[:sg_challengePreference] = options[:three_d_secure][:challenge_preference] if options[:three_d_secure][:challenge_preference]
|
191
|
+
end
|
192
|
+
|
193
|
+
def parse(xml)
|
194
|
+
response = {}
|
195
|
+
|
196
|
+
doc = Nokogiri::XML(xml)
|
197
|
+
doc.root.xpath('*').each do |node|
|
198
|
+
if node.elements.size == 0
|
199
|
+
response[node.name.underscore.downcase.to_sym] = node.text
|
200
|
+
else
|
201
|
+
node.traverse do |childnode|
|
202
|
+
childnode_to_response(response, childnode)
|
203
|
+
end
|
204
|
+
end
|
205
|
+
end
|
206
|
+
response
|
207
|
+
end
|
208
|
+
|
209
|
+
def childnode_to_response(response, childnode)
|
210
|
+
if childnode.elements.size == 0
|
211
|
+
element_name_to_symbol(response, childnode)
|
212
|
+
else
|
213
|
+
childnode.traverse do |node|
|
214
|
+
element_name_to_symbol(response, node)
|
215
|
+
end
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
219
|
+
def element_name_to_symbol(response, childnode)
|
220
|
+
name = childnode.name.downcase
|
221
|
+
response[name.to_sym] = childnode.text
|
222
|
+
end
|
223
|
+
|
224
|
+
def commit(parameters)
|
225
|
+
url = (test? ? test_url : live_url)
|
226
|
+
response = parse(ssl_post(url, post_data(parameters)))
|
227
|
+
|
228
|
+
Response.new(
|
229
|
+
success_from(response),
|
230
|
+
message_from(response),
|
231
|
+
response,
|
232
|
+
authorization: authorization_from(response, parameters),
|
233
|
+
avs_result: AVSResult.new(code: response[:avs_code]),
|
234
|
+
cvv_result: CVVResult.new(response[:cvv2_reply]),
|
235
|
+
test: test?,
|
236
|
+
error_code: error_code_from(response)
|
237
|
+
)
|
238
|
+
end
|
239
|
+
|
240
|
+
def success_from(response)
|
241
|
+
response[:status] == 'APPROVED'
|
242
|
+
end
|
243
|
+
|
244
|
+
def message_from(response)
|
245
|
+
return 'Success' if success_from(response)
|
246
|
+
|
247
|
+
response[:reason_codes] || response[:reason]
|
248
|
+
end
|
249
|
+
|
250
|
+
def authorization_from(response, parameters)
|
251
|
+
[
|
252
|
+
response[:auth_code],
|
253
|
+
response[:transaction_id],
|
254
|
+
response[:token],
|
255
|
+
parameters[:sg_ExpMonth],
|
256
|
+
parameters[:sg_ExpYear],
|
257
|
+
parameters[:sg_Amount],
|
258
|
+
parameters[:sg_Currency]
|
259
|
+
].join('|')
|
260
|
+
end
|
261
|
+
|
262
|
+
def split_authorization(authorization)
|
263
|
+
auth_code, transaction_id, token, month, year, original_amount = authorization.split('|')
|
264
|
+
|
265
|
+
{
|
266
|
+
auth_code: auth_code,
|
267
|
+
transaction_id: transaction_id,
|
268
|
+
token: token,
|
269
|
+
exp_month: month,
|
270
|
+
exp_year: year,
|
271
|
+
original_amount: amount(original_amount.to_f * 100)
|
272
|
+
}
|
273
|
+
end
|
274
|
+
|
275
|
+
def post_data(params)
|
276
|
+
return nil unless params
|
277
|
+
|
278
|
+
params.map do |key, value|
|
279
|
+
next if value != false && value.blank?
|
280
|
+
|
281
|
+
"#{key}=#{CGI.escape(value.to_s)}"
|
282
|
+
end.compact.join('&')
|
283
|
+
end
|
284
|
+
|
285
|
+
def error_code_from(response)
|
286
|
+
response[:ex_err_code] || response[:err_code] unless success_from(response)
|
287
|
+
end
|
288
|
+
|
289
|
+
def underscore(camel_cased_word)
|
290
|
+
camel_cased_word.to_s.gsub(/::/, '/').
|
291
|
+
gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2').
|
292
|
+
gsub(/([a-z\d])([A-Z])/, '\1_\2').
|
293
|
+
tr('-', '_').
|
294
|
+
downcase
|
295
|
+
end
|
296
|
+
end
|
297
|
+
end
|
298
|
+
end
|