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,269 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class CtPaymentGateway < Gateway
|
4
|
+
self.test_url = 'https://test.ctpaiement.ca/v1/'
|
5
|
+
self.live_url = 'https://www.ctpaiement.com/v1/'
|
6
|
+
|
7
|
+
self.supported_countries = %w[US CA]
|
8
|
+
self.default_currency = 'CAD'
|
9
|
+
self.supported_cardtypes = %i[visa master american_express discover diners_club]
|
10
|
+
|
11
|
+
self.homepage_url = 'http://www.ct-payment.com/'
|
12
|
+
self.display_name = 'CT Payment'
|
13
|
+
|
14
|
+
STANDARD_ERROR_CODE_MAPPING = {
|
15
|
+
'14' => STANDARD_ERROR_CODE[:invalid_number],
|
16
|
+
'05' => STANDARD_ERROR_CODE[:card_declined],
|
17
|
+
'M6' => STANDARD_ERROR_CODE[:card_declined],
|
18
|
+
'9068' => STANDARD_ERROR_CODE[:incorrect_number],
|
19
|
+
'9067' => STANDARD_ERROR_CODE[:incorrect_number]
|
20
|
+
}
|
21
|
+
CARD_BRAND = {
|
22
|
+
'american_express' => 'A',
|
23
|
+
'master' => 'M',
|
24
|
+
'diners_club' => 'I',
|
25
|
+
'visa' => 'V',
|
26
|
+
'discover' => 'O'
|
27
|
+
}
|
28
|
+
|
29
|
+
def initialize(options = {})
|
30
|
+
requires!(options, :api_key, :company_number, :merchant_number)
|
31
|
+
super
|
32
|
+
end
|
33
|
+
|
34
|
+
def purchase(money, payment, options = {})
|
35
|
+
requires!(options, :order_id)
|
36
|
+
post = {}
|
37
|
+
add_terminal_number(post, options)
|
38
|
+
add_money(post, money)
|
39
|
+
add_operator_id(post, options)
|
40
|
+
add_invoice(post, money, options)
|
41
|
+
add_payment(post, payment)
|
42
|
+
add_address(post, payment, options)
|
43
|
+
add_customer_data(post, options)
|
44
|
+
|
45
|
+
payment.is_a?(String) ? commit('purchaseWithToken', post) : commit('purchase', post)
|
46
|
+
end
|
47
|
+
|
48
|
+
def authorize(money, payment, options = {})
|
49
|
+
requires!(options, :order_id)
|
50
|
+
post = {}
|
51
|
+
add_money(post, money)
|
52
|
+
add_terminal_number(post, options)
|
53
|
+
add_operator_id(post, options)
|
54
|
+
add_invoice(post, money, options)
|
55
|
+
add_payment(post, payment)
|
56
|
+
add_address(post, payment, options)
|
57
|
+
add_customer_data(post, options)
|
58
|
+
|
59
|
+
payment.is_a?(String) ? commit('preAuthorizationWithToken', post) : commit('preAuthorization', post)
|
60
|
+
end
|
61
|
+
|
62
|
+
def capture(money, authorization, options = {})
|
63
|
+
requires!(options, :order_id)
|
64
|
+
post = {}
|
65
|
+
add_invoice(post, money, options)
|
66
|
+
add_money(post, money)
|
67
|
+
add_customer_data(post, options)
|
68
|
+
transaction_number, authorization_number, invoice_number = split_authorization(authorization)
|
69
|
+
post[:OriginalTransactionNumber] = transaction_number
|
70
|
+
post[:OriginalAuthorizationNumber] = authorization_number
|
71
|
+
post[:OriginalInvoiceNumber] = invoice_number
|
72
|
+
|
73
|
+
commit('completion', post)
|
74
|
+
end
|
75
|
+
|
76
|
+
def refund(money, authorization, options = {})
|
77
|
+
requires!(options, :order_id)
|
78
|
+
post = {}
|
79
|
+
add_invoice(post, money, options)
|
80
|
+
add_money(post, money)
|
81
|
+
add_customer_data(post, options)
|
82
|
+
transaction_number, _, invoice_number = split_authorization(authorization)
|
83
|
+
post[:OriginalTransactionNumber] = transaction_number
|
84
|
+
post[:OriginalInvoiceNumber] = invoice_number
|
85
|
+
|
86
|
+
commit('refundWithoutCard', post)
|
87
|
+
end
|
88
|
+
|
89
|
+
def credit(money, payment, options = {})
|
90
|
+
requires!(options, :order_id)
|
91
|
+
post = {}
|
92
|
+
add_terminal_number(post, options)
|
93
|
+
add_money(post, money)
|
94
|
+
add_operator_id(post, options)
|
95
|
+
add_invoice(post, money, options)
|
96
|
+
add_payment(post, payment)
|
97
|
+
add_address(post, payment, options)
|
98
|
+
add_customer_data(post, options)
|
99
|
+
|
100
|
+
payment.is_a?(String) ? commit('refundWithToken', post) : commit('refund', post)
|
101
|
+
end
|
102
|
+
|
103
|
+
def void(authorization, options = {})
|
104
|
+
post = {}
|
105
|
+
post[:InputType] = 'I'
|
106
|
+
post[:LanguageCode] = 'E'
|
107
|
+
transaction_number, _, invoice_number = split_authorization(authorization)
|
108
|
+
post[:OriginalTransactionNumber] = transaction_number
|
109
|
+
post[:OriginalInvoiceNumber] = invoice_number
|
110
|
+
add_operator_id(post, options)
|
111
|
+
add_customer_data(post, options)
|
112
|
+
|
113
|
+
commit('void', post)
|
114
|
+
end
|
115
|
+
|
116
|
+
def verify(credit_card, options = {})
|
117
|
+
requires!(options, :order_id)
|
118
|
+
post = {}
|
119
|
+
add_terminal_number(post, options)
|
120
|
+
add_operator_id(post, options)
|
121
|
+
add_invoice(post, 0, options)
|
122
|
+
add_payment(post, credit_card)
|
123
|
+
add_address(post, credit_card, options)
|
124
|
+
add_customer_data(post, options)
|
125
|
+
|
126
|
+
commit('verifyAccount', post)
|
127
|
+
end
|
128
|
+
|
129
|
+
def store(credit_card, options = {})
|
130
|
+
requires!(options, :email)
|
131
|
+
post = {
|
132
|
+
LanguageCode: 'E',
|
133
|
+
Name: credit_card.name.rjust(50, ' '),
|
134
|
+
Email: options[:email].rjust(240, ' ')
|
135
|
+
}
|
136
|
+
add_operator_id(post, options)
|
137
|
+
add_payment(post, credit_card)
|
138
|
+
add_customer_data(post, options)
|
139
|
+
|
140
|
+
commit('recur/AddUser', post)
|
141
|
+
end
|
142
|
+
|
143
|
+
def supports_scrubbing?
|
144
|
+
true
|
145
|
+
end
|
146
|
+
|
147
|
+
def scrub(transcript)
|
148
|
+
transcript.
|
149
|
+
gsub(%r((&?auth-api-key=)[^&]*)i, '\1[FILTERED]').
|
150
|
+
gsub(%r((&?payload=)[a-zA-Z%0-9=]+)i, '\1[FILTERED]').
|
151
|
+
gsub(%r((&?token:)[^&]*)i, '\1[FILTERED]').
|
152
|
+
gsub(%r((&?cardNumber:)[^&]*)i, '\1[FILTERED]')
|
153
|
+
end
|
154
|
+
|
155
|
+
private
|
156
|
+
|
157
|
+
def add_terminal_number(post, options)
|
158
|
+
post[:MerchantTerminalNumber] = options[:merchant_terminal_number] || ' ' * 5
|
159
|
+
end
|
160
|
+
|
161
|
+
def add_money(post, money)
|
162
|
+
post[:Amount] = money.to_s.rjust(11, '0')
|
163
|
+
end
|
164
|
+
|
165
|
+
def add_operator_id(post, options)
|
166
|
+
post[:OperatorID] = options[:operator_id] || '0' * 8
|
167
|
+
end
|
168
|
+
|
169
|
+
def add_customer_data(post, options)
|
170
|
+
post[:CustomerNumber] = options[:customer_number] || '0' * 8
|
171
|
+
end
|
172
|
+
|
173
|
+
def add_address(post, creditcard, options)
|
174
|
+
if address = options[:billing_address] || options[:address]
|
175
|
+
post[:CardHolderAddress] = "#{address[:address1]} #{address[:address2]} #{address[:city]} #{address[:state]}".rjust(20, ' ')
|
176
|
+
post[:CardHolderPostalCode] = address[:zip].gsub(/\s+/, '').rjust(9, ' ')
|
177
|
+
end
|
178
|
+
end
|
179
|
+
|
180
|
+
def add_invoice(post, money, options)
|
181
|
+
post[:CurrencyCode] = options[:currency] || (currency(money) if money)
|
182
|
+
post[:InvoiceNumber] = options[:order_id].rjust(12, '0')
|
183
|
+
post[:InputType] = 'I'
|
184
|
+
post[:LanguageCode] = 'E'
|
185
|
+
end
|
186
|
+
|
187
|
+
def add_payment(post, payment)
|
188
|
+
if payment.is_a?(String)
|
189
|
+
post[:Token] = split_authorization(payment)[3].strip
|
190
|
+
else
|
191
|
+
post[:CardType] = CARD_BRAND[payment.brand] || ' '
|
192
|
+
post[:CardNumber] = payment.number.rjust(40, ' ')
|
193
|
+
post[:ExpirationDate] = expdate(payment)
|
194
|
+
post[:Cvv2Cvc2Number] = payment.verification_value
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
def parse(body)
|
199
|
+
JSON.parse(body)
|
200
|
+
end
|
201
|
+
|
202
|
+
def split_authorization(authorization)
|
203
|
+
authorization.split(';')
|
204
|
+
end
|
205
|
+
|
206
|
+
def commit_raw(action, parameters)
|
207
|
+
url = (test? ? test_url : live_url) + action
|
208
|
+
response = parse(ssl_post(url, post_data(action, parameters)))
|
209
|
+
|
210
|
+
Response.new(
|
211
|
+
success_from(response),
|
212
|
+
message_from(response),
|
213
|
+
response,
|
214
|
+
authorization: authorization_from(response),
|
215
|
+
avs_result: AVSResult.new(code: response['avsStatus']),
|
216
|
+
cvv_result: CVVResult.new(response['cvv2Cvc2Status']),
|
217
|
+
test: test?,
|
218
|
+
error_code: error_code_from(response)
|
219
|
+
)
|
220
|
+
end
|
221
|
+
|
222
|
+
def commit(action, parameters)
|
223
|
+
if action == 'void'
|
224
|
+
commit_raw(action, parameters)
|
225
|
+
else
|
226
|
+
MultiResponse.run(true) do |r|
|
227
|
+
r.process { commit_raw(action, parameters) }
|
228
|
+
r.process {
|
229
|
+
split_auth = split_authorization(r.authorization)
|
230
|
+
auth = (action.include?('recur') ? split_auth[4] : split_auth[0])
|
231
|
+
action.include?('recur') ? commit_raw('recur/ack', { ID: auth }) : commit_raw('ack', { TransactionNumber: auth })
|
232
|
+
}
|
233
|
+
end
|
234
|
+
end
|
235
|
+
end
|
236
|
+
|
237
|
+
def success_from(response)
|
238
|
+
return true if response['returnCode'] == ' 00'
|
239
|
+
return true if response['returnCode'] == 'true'
|
240
|
+
return true if response['recurReturnCode'] == ' 00'
|
241
|
+
|
242
|
+
return false
|
243
|
+
end
|
244
|
+
|
245
|
+
def message_from(response)
|
246
|
+
response['errorDescription'] || response['terminalDisp']&.strip
|
247
|
+
end
|
248
|
+
|
249
|
+
def authorization_from(response)
|
250
|
+
"#{response['transactionNumber']};#{response['authorizationNumber']};"\
|
251
|
+
"#{response['invoiceNumber']};#{response['token']};#{response['id']}"
|
252
|
+
end
|
253
|
+
|
254
|
+
def post_data(action, parameters = {})
|
255
|
+
parameters[:CompanyNumber] = @options[:company_number]
|
256
|
+
parameters[:MerchantNumber] = @options[:merchant_number]
|
257
|
+
parameters = parameters.collect do |key, value|
|
258
|
+
"#{key}=#{value}" unless value.nil? || value.empty?
|
259
|
+
end.join('&')
|
260
|
+
payload = Base64.strict_encode64(parameters)
|
261
|
+
"auth-api-key=#{@options[:api_key]}&payload=#{payload}".strip
|
262
|
+
end
|
263
|
+
|
264
|
+
def error_code_from(response)
|
265
|
+
STANDARD_ERROR_CODE_MAPPING[response['returnCode'].strip || response['recurReturnCode'.strip]] unless success_from(response)
|
266
|
+
end
|
267
|
+
end
|
268
|
+
end
|
269
|
+
end
|
@@ -0,0 +1,279 @@
|
|
1
|
+
require 'digest/md5'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
# Important note:
|
6
|
+
# ===
|
7
|
+
# Culqi merchant accounts are configured for either purchase or auth/capture
|
8
|
+
# modes. This is configured by Culqi when setting up a merchant account and
|
9
|
+
# largely depends on the transaction acquiring bank. Be sure to understand how
|
10
|
+
# your account was configured prior to using this gateway.
|
11
|
+
class CulqiGateway < Gateway
|
12
|
+
self.display_name = 'Culqi'
|
13
|
+
self.homepage_url = 'https://www.culqi.com'
|
14
|
+
|
15
|
+
self.test_url = 'https://staging.paymentz.com/transaction/'
|
16
|
+
self.live_url = 'https://secure.culqi.com/transaction/'
|
17
|
+
|
18
|
+
self.supported_countries = ['PE']
|
19
|
+
self.default_currency = 'PEN'
|
20
|
+
self.money_format = :dollars
|
21
|
+
self.supported_cardtypes = %i[visa master diners_club american_express]
|
22
|
+
|
23
|
+
def initialize(options = {})
|
24
|
+
requires!(options, :merchant_id, :terminal_id, :secret_key)
|
25
|
+
super
|
26
|
+
end
|
27
|
+
|
28
|
+
def purchase(amount, payment_method, options = {})
|
29
|
+
authorize(amount, payment_method, options)
|
30
|
+
end
|
31
|
+
|
32
|
+
def authorize(amount, payment_method, options = {})
|
33
|
+
if payment_method.is_a?(String)
|
34
|
+
action = :tokenpay
|
35
|
+
else
|
36
|
+
action = :authorize
|
37
|
+
end
|
38
|
+
post = {}
|
39
|
+
add_credentials(post)
|
40
|
+
add_invoice(action, post, amount, options)
|
41
|
+
add_payment_method(post, payment_method, action, options)
|
42
|
+
add_customer_data(post, options)
|
43
|
+
add_checksum(action, post)
|
44
|
+
|
45
|
+
commit(action, post)
|
46
|
+
end
|
47
|
+
|
48
|
+
def capture(amount, authorization, options = {})
|
49
|
+
action = :capture
|
50
|
+
post = {}
|
51
|
+
add_credentials(post)
|
52
|
+
add_invoice(action, post, amount, options)
|
53
|
+
add_reference(post, authorization)
|
54
|
+
add_checksum(action, post)
|
55
|
+
|
56
|
+
commit(action, post)
|
57
|
+
end
|
58
|
+
|
59
|
+
def void(authorization, options = {})
|
60
|
+
action = :void
|
61
|
+
post = {}
|
62
|
+
add_credentials(post)
|
63
|
+
add_invoice(action, post, nil, options)
|
64
|
+
add_reference(post, authorization)
|
65
|
+
add_checksum(action, post)
|
66
|
+
|
67
|
+
commit(action, post)
|
68
|
+
end
|
69
|
+
|
70
|
+
def refund(amount, authorization, options = {})
|
71
|
+
action = :refund
|
72
|
+
post = {}
|
73
|
+
add_credentials(post)
|
74
|
+
add_invoice(action, post, amount, options)
|
75
|
+
add_reference(post, authorization)
|
76
|
+
add_checksum(action, post)
|
77
|
+
|
78
|
+
commit(action, post)
|
79
|
+
end
|
80
|
+
|
81
|
+
def verify(credit_card, options = {})
|
82
|
+
MultiResponse.run(:use_first_response) do |r|
|
83
|
+
r.process { authorize(1000, credit_card, options) }
|
84
|
+
r.process(:ignore_result) { void(r.authorization, options) }
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
def verify_credentials
|
89
|
+
response = void('0', order_id: '0')
|
90
|
+
response.message.include? 'Transaction not found'
|
91
|
+
end
|
92
|
+
|
93
|
+
def store(credit_card, options = {})
|
94
|
+
action = :tokenize
|
95
|
+
post = {}
|
96
|
+
post[:partnerid] = options[:partner_id] if options[:partner_id]
|
97
|
+
post[:cardholderid] = options[:cardholder_id] if options[:cardholder_id]
|
98
|
+
add_credentials(post)
|
99
|
+
add_payment_method(post, credit_card, action, options)
|
100
|
+
add_customer_data(post, options)
|
101
|
+
add_checksum(action, post)
|
102
|
+
|
103
|
+
commit(action, post)
|
104
|
+
end
|
105
|
+
|
106
|
+
def invalidate(authorization, options = {})
|
107
|
+
action = :invalidate
|
108
|
+
post = {}
|
109
|
+
post[:partnerid] = options[:partner_id] if options[:partner_id]
|
110
|
+
add_credentials(post)
|
111
|
+
post[:token] = authorization
|
112
|
+
add_checksum(action, post)
|
113
|
+
|
114
|
+
commit(action, post)
|
115
|
+
end
|
116
|
+
|
117
|
+
def supports_scrubbing?
|
118
|
+
true
|
119
|
+
end
|
120
|
+
|
121
|
+
def scrub(transcript)
|
122
|
+
transcript.
|
123
|
+
gsub(%r((cardnumber=)\d+), '\1[FILTERED]').
|
124
|
+
gsub(%r((cvv=)\d+), '\1[FILTERED]')
|
125
|
+
end
|
126
|
+
|
127
|
+
private
|
128
|
+
|
129
|
+
def add_credentials(post)
|
130
|
+
post[:toid] = @options[:merchant_id]
|
131
|
+
post[:totype] = 'Culqi'
|
132
|
+
post[:terminalid] = @options[:terminal_id]
|
133
|
+
post[:language] = 'ENG'
|
134
|
+
end
|
135
|
+
|
136
|
+
def add_invoice(action, post, money, options)
|
137
|
+
case action
|
138
|
+
when :capture
|
139
|
+
post[:captureamount] = amount(money)
|
140
|
+
when :refund
|
141
|
+
post[:refundamount] = amount(money)
|
142
|
+
post[:reason] = 'none'
|
143
|
+
else
|
144
|
+
post[:amount] = amount(money)
|
145
|
+
end
|
146
|
+
|
147
|
+
post[:description] = options[:order_id]
|
148
|
+
post[:redirecturl] = options[:redirect_url] || 'http://www.example.com'
|
149
|
+
end
|
150
|
+
|
151
|
+
def add_payment_method(post, payment_method, action, options)
|
152
|
+
if payment_method.is_a?(String)
|
153
|
+
post[:token] = payment_method
|
154
|
+
post[:cvv] = options[:cvv] if options[:cvv]
|
155
|
+
else
|
156
|
+
post[:cardnumber] = payment_method.number
|
157
|
+
post[:cvv] = payment_method.verification_value
|
158
|
+
post[:firstname], post[:lastname] = payment_method.name.split(' ')
|
159
|
+
if action == :tokenize
|
160
|
+
post[:expirymonth] = format(payment_method.month, :two_digits)
|
161
|
+
post[:expiryyear] = format(payment_method.year, :four_digits)
|
162
|
+
else
|
163
|
+
post[:expiry_month] = format(payment_method.month, :two_digits)
|
164
|
+
post[:expiry_year] = format(payment_method.year, :four_digits)
|
165
|
+
end
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
def add_customer_data(post, options)
|
170
|
+
post[:emailaddr] = options[:email] || 'unspecified@example.com'
|
171
|
+
if (billing_address = options[:billing_address] || options[:address])
|
172
|
+
post[:street] = [billing_address[:address1], billing_address[:address2]].join(' ')
|
173
|
+
post[:city] = billing_address[:city]
|
174
|
+
post[:state] = billing_address[:state]
|
175
|
+
post[:countrycode] = billing_address[:country]
|
176
|
+
post[:zip] = billing_address[:zip]
|
177
|
+
post[:telno] = billing_address[:phone]
|
178
|
+
post[:telnocc] = options[:telephone_country_code] || '051'
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
def add_checksum(action, post)
|
183
|
+
checksum_elements =
|
184
|
+
case action
|
185
|
+
when :capture then [post[:toid], post[:trackingid], post[:captureamount], @options[:secret_key]]
|
186
|
+
when :void then [post[:toid], post[:description], post[:trackingid], @options[:secret_key]]
|
187
|
+
when :refund then [post[:toid], post[:trackingid], post[:refundamount], @options[:secret_key]]
|
188
|
+
when :tokenize then [post[:partnerid], post[:cardnumber], post[:cvv], @options[:secret_key]]
|
189
|
+
when :invalidate then [post[:partnerid], post[:token], @options[:secret_key]]
|
190
|
+
else [post[:toid], post[:totype], post[:amount], post[:description], post[:redirecturl],
|
191
|
+
post[:cardnumber] || post[:token], @options[:secret_key]]
|
192
|
+
end
|
193
|
+
|
194
|
+
post[:checksum] = Digest::MD5.hexdigest(checksum_elements.compact.join('|'))
|
195
|
+
end
|
196
|
+
|
197
|
+
def add_reference(post, authorization)
|
198
|
+
post[:trackingid] = authorization
|
199
|
+
end
|
200
|
+
|
201
|
+
ACTIONS = {
|
202
|
+
authorize: 'SingleCallGenericServlet',
|
203
|
+
capture: 'SingleCallGenericCaptureServlet',
|
204
|
+
void: 'SingleCallGenericVoid',
|
205
|
+
refund: 'SingleCallGenericReverse',
|
206
|
+
tokenize: 'SingleCallTokenServlet',
|
207
|
+
invalidate: 'SingleCallInvalidateToken',
|
208
|
+
tokenpay: 'SingleCallTokenTransaction'
|
209
|
+
}
|
210
|
+
|
211
|
+
def commit(action, params)
|
212
|
+
response =
|
213
|
+
begin
|
214
|
+
parse(ssl_post(url + ACTIONS[action], post_data(action, params), headers))
|
215
|
+
rescue ResponseError => e
|
216
|
+
parse(e.response.body)
|
217
|
+
end
|
218
|
+
|
219
|
+
success = success_from(response)
|
220
|
+
|
221
|
+
Response.new(
|
222
|
+
success,
|
223
|
+
message_from(response),
|
224
|
+
response,
|
225
|
+
authorization: success ? authorization_from(response) : nil,
|
226
|
+
cvv_result: success ? cvvresult_from(response) : nil,
|
227
|
+
error_code: success ? nil : error_from(response),
|
228
|
+
test: test?
|
229
|
+
)
|
230
|
+
end
|
231
|
+
|
232
|
+
def headers
|
233
|
+
{
|
234
|
+
'Accept' => 'application/json',
|
235
|
+
'Content-Type' => 'application/x-www-form-urlencoded;charset=UTF-8'
|
236
|
+
}
|
237
|
+
end
|
238
|
+
|
239
|
+
def post_data(action, params)
|
240
|
+
params.map { |k, v| "#{k}=#{CGI.escape(v.to_s)}" }.join('&')
|
241
|
+
end
|
242
|
+
|
243
|
+
def url
|
244
|
+
test? ? test_url : live_url
|
245
|
+
end
|
246
|
+
|
247
|
+
def parse(body)
|
248
|
+
JSON.parse(body)
|
249
|
+
rescue JSON::ParserError
|
250
|
+
message = 'Invalid JSON response received from CulqiGateway. Please contact CulqiGateway if you continue to receive this message.'
|
251
|
+
message += "(The raw response returned by the API was #{body.inspect})"
|
252
|
+
{
|
253
|
+
'status' => 'N',
|
254
|
+
'statusdescription' => message
|
255
|
+
}
|
256
|
+
end
|
257
|
+
|
258
|
+
def success_from(response)
|
259
|
+
response['status'] == 'Y'
|
260
|
+
end
|
261
|
+
|
262
|
+
def message_from(response)
|
263
|
+
response['statusdescription'] || response['statusDescription']
|
264
|
+
end
|
265
|
+
|
266
|
+
def authorization_from(response)
|
267
|
+
response['trackingid'] || response['token']
|
268
|
+
end
|
269
|
+
|
270
|
+
def cvvresult_from(response)
|
271
|
+
CVVResult.new(response['cvvresult'])
|
272
|
+
end
|
273
|
+
|
274
|
+
def error_from(response)
|
275
|
+
response['resultcode']
|
276
|
+
end
|
277
|
+
end
|
278
|
+
end
|
279
|
+
end
|