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,277 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class KushkiGateway < Gateway
|
4
|
+
self.display_name = 'Kushki'
|
5
|
+
self.homepage_url = 'https://www.kushkipagos.com'
|
6
|
+
|
7
|
+
self.test_url = 'https://api-uat.kushkipagos.com/'
|
8
|
+
self.live_url = 'https://api.kushkipagos.com/'
|
9
|
+
|
10
|
+
self.supported_countries = %w[CL CO EC MX PE]
|
11
|
+
self.default_currency = 'USD'
|
12
|
+
self.money_format = :dollars
|
13
|
+
self.supported_cardtypes = %i[visa master american_express discover diners_club alia]
|
14
|
+
|
15
|
+
def initialize(options = {})
|
16
|
+
requires!(options, :public_merchant_id, :private_merchant_id)
|
17
|
+
super
|
18
|
+
end
|
19
|
+
|
20
|
+
def purchase(amount, payment_method, options = {})
|
21
|
+
MultiResponse.run() do |r|
|
22
|
+
r.process { tokenize(amount, payment_method, options) }
|
23
|
+
r.process { charge(amount, r.authorization, options) }
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def authorize(amount, payment_method, options = {})
|
28
|
+
MultiResponse.run() do |r|
|
29
|
+
r.process { tokenize(amount, payment_method, options) }
|
30
|
+
r.process { preauthorize(amount, r.authorization, options) }
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def capture(amount, authorization, options = {})
|
35
|
+
action = 'capture'
|
36
|
+
|
37
|
+
post = {}
|
38
|
+
post[:ticketNumber] = authorization
|
39
|
+
add_invoice(action, post, amount, options)
|
40
|
+
add_full_response(post, options)
|
41
|
+
|
42
|
+
commit(action, post)
|
43
|
+
end
|
44
|
+
|
45
|
+
def refund(amount, authorization, options = {})
|
46
|
+
action = 'refund'
|
47
|
+
|
48
|
+
post = {}
|
49
|
+
post[:ticketNumber] = authorization
|
50
|
+
add_full_response(post, options)
|
51
|
+
|
52
|
+
commit(action, post)
|
53
|
+
end
|
54
|
+
|
55
|
+
def void(authorization, options = {})
|
56
|
+
action = 'void'
|
57
|
+
|
58
|
+
post = {}
|
59
|
+
post[:ticketNumber] = authorization
|
60
|
+
add_full_response(post, options)
|
61
|
+
|
62
|
+
commit(action, post)
|
63
|
+
end
|
64
|
+
|
65
|
+
def supports_scrubbing?
|
66
|
+
true
|
67
|
+
end
|
68
|
+
|
69
|
+
def scrub(transcript)
|
70
|
+
transcript.
|
71
|
+
gsub(%r((Private-Merchant-Id: )\d+), '\1[FILTERED]').
|
72
|
+
gsub(%r((\"card\\\":{\\\"number\\\":\\\")\d+), '\1[FILTERED]').
|
73
|
+
gsub(%r((\"cvv\\\":\\\")\d+), '\1[FILTERED]')
|
74
|
+
end
|
75
|
+
|
76
|
+
private
|
77
|
+
|
78
|
+
def tokenize(amount, payment_method, options)
|
79
|
+
action = 'tokenize'
|
80
|
+
|
81
|
+
post = {}
|
82
|
+
add_invoice(action, post, amount, options)
|
83
|
+
add_payment_method(post, payment_method, options)
|
84
|
+
add_full_response(post, options)
|
85
|
+
add_metadata(post, options)
|
86
|
+
|
87
|
+
commit(action, post)
|
88
|
+
end
|
89
|
+
|
90
|
+
def charge(amount, authorization, options)
|
91
|
+
action = 'charge'
|
92
|
+
|
93
|
+
post = {}
|
94
|
+
add_reference(post, authorization, options)
|
95
|
+
add_invoice(action, post, amount, options)
|
96
|
+
add_contact_details(post, options[:contact_details]) if options[:contact_details]
|
97
|
+
add_full_response(post, options)
|
98
|
+
add_metadata(post, options)
|
99
|
+
|
100
|
+
commit(action, post)
|
101
|
+
end
|
102
|
+
|
103
|
+
def preauthorize(amount, authorization, options)
|
104
|
+
action = 'preAuthorization'
|
105
|
+
|
106
|
+
post = {}
|
107
|
+
add_reference(post, authorization, options)
|
108
|
+
add_invoice(action, post, amount, options)
|
109
|
+
add_full_response(post, options)
|
110
|
+
add_metadata(post, options)
|
111
|
+
|
112
|
+
commit(action, post)
|
113
|
+
end
|
114
|
+
|
115
|
+
def add_invoice(action, post, money, options)
|
116
|
+
if action == 'tokenize'
|
117
|
+
post[:totalAmount] = amount(money).to_f
|
118
|
+
post[:currency] = options[:currency] || currency(money)
|
119
|
+
post[:isDeferred] = false
|
120
|
+
else
|
121
|
+
sum = {}
|
122
|
+
sum[:currency] = options[:currency] || currency(money)
|
123
|
+
add_amount_defaults(sum, money, options)
|
124
|
+
add_amount_by_country(sum, options)
|
125
|
+
post[:amount] = sum
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
def add_amount_defaults(sum, money, options)
|
130
|
+
sum[:subtotalIva] = amount(money).to_f
|
131
|
+
sum[:iva] = 0
|
132
|
+
sum[:subtotalIva0] = 0
|
133
|
+
|
134
|
+
sum[:ice] = 0 if sum[:currency] != 'COP'
|
135
|
+
end
|
136
|
+
|
137
|
+
def add_amount_by_country(sum, options)
|
138
|
+
if amount = options[:amount]
|
139
|
+
sum[:subtotalIva] = amount[:subtotal_iva].to_f if amount[:subtotal_iva]
|
140
|
+
sum[:iva] = amount[:iva].to_f if amount[:iva]
|
141
|
+
sum[:subtotalIva0] = amount[:subtotal_iva_0].to_f if amount[:subtotal_iva_0]
|
142
|
+
sum[:ice] = amount[:ice].to_f if amount[:ice]
|
143
|
+
if (extra_taxes = amount[:extra_taxes]) && sum[:currency] == 'COP'
|
144
|
+
sum[:extraTaxes] ||= Hash.new
|
145
|
+
sum[:extraTaxes][:propina] = extra_taxes[:propina].to_f if extra_taxes[:propina]
|
146
|
+
sum[:extraTaxes][:tasaAeroportuaria] = extra_taxes[:tasa_aeroportuaria].to_f if extra_taxes[:tasa_aeroportuaria]
|
147
|
+
sum[:extraTaxes][:agenciaDeViaje] = extra_taxes[:agencia_de_viaje].to_f if extra_taxes[:agencia_de_viaje]
|
148
|
+
sum[:extraTaxes][:iac] = extra_taxes[:iac].to_f if extra_taxes[:iac]
|
149
|
+
end
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
153
|
+
def add_payment_method(post, payment_method, options)
|
154
|
+
card = {}
|
155
|
+
card[:number] = payment_method.number
|
156
|
+
card[:cvv] = payment_method.verification_value
|
157
|
+
card[:expiryMonth] = format(payment_method.month, :two_digits)
|
158
|
+
card[:expiryYear] = format(payment_method.year, :two_digits)
|
159
|
+
card[:name] = payment_method.name
|
160
|
+
post[:card] = card
|
161
|
+
end
|
162
|
+
|
163
|
+
def add_reference(post, authorization, options)
|
164
|
+
post[:token] = authorization
|
165
|
+
end
|
166
|
+
|
167
|
+
def add_contact_details(post, contact_details_options)
|
168
|
+
contact_details = {}
|
169
|
+
contact_details[:documentType] = contact_details_options[:document_type] if contact_details_options[:document_type]
|
170
|
+
contact_details[:documentNumber] = contact_details_options[:document_number] if contact_details_options[:document_number]
|
171
|
+
contact_details[:email] = contact_details_options[:email] if contact_details_options[:email]
|
172
|
+
contact_details[:firstName] = contact_details_options[:first_name] if contact_details_options[:first_name]
|
173
|
+
contact_details[:lastName] = contact_details_options[:last_name] if contact_details_options[:last_name]
|
174
|
+
contact_details[:secondLastName] = contact_details_options[:second_last_name] if contact_details_options[:second_last_name]
|
175
|
+
contact_details[:phoneNumber] = contact_details_options[:phone_number] if contact_details_options[:phone_number]
|
176
|
+
post[:contactDetails] = contact_details
|
177
|
+
end
|
178
|
+
|
179
|
+
def add_full_response(post, options)
|
180
|
+
post[:fullResponse] = options[:full_response].to_s.casecmp('true').zero? if options[:full_response]
|
181
|
+
end
|
182
|
+
|
183
|
+
def add_metadata(post, options)
|
184
|
+
post[:metadata] = options[:metadata] if options[:metadata]
|
185
|
+
end
|
186
|
+
|
187
|
+
ENDPOINT = {
|
188
|
+
'tokenize' => 'tokens',
|
189
|
+
'charge' => 'charges',
|
190
|
+
'void' => 'charges',
|
191
|
+
'refund' => 'refund',
|
192
|
+
'preAuthorization' => 'preAuthorization',
|
193
|
+
'capture' => 'capture'
|
194
|
+
}
|
195
|
+
|
196
|
+
def commit(action, params)
|
197
|
+
response =
|
198
|
+
begin
|
199
|
+
parse(ssl_invoke(action, params))
|
200
|
+
rescue ResponseError => e
|
201
|
+
parse(e.response.body)
|
202
|
+
end
|
203
|
+
|
204
|
+
success = success_from(response)
|
205
|
+
|
206
|
+
Response.new(
|
207
|
+
success,
|
208
|
+
message_from(success, response),
|
209
|
+
response,
|
210
|
+
authorization: success ? authorization_from(response) : nil,
|
211
|
+
error_code: success ? nil : error_from(response),
|
212
|
+
test: test?
|
213
|
+
)
|
214
|
+
end
|
215
|
+
|
216
|
+
def ssl_invoke(action, params)
|
217
|
+
if %w[void refund].include?(action)
|
218
|
+
ssl_request(:delete, url(action, params), nil, headers(action))
|
219
|
+
else
|
220
|
+
ssl_post(url(action, params), post_data(params), headers(action))
|
221
|
+
end
|
222
|
+
end
|
223
|
+
|
224
|
+
def headers(action)
|
225
|
+
hfields = {}
|
226
|
+
hfields['Public-Merchant-Id'] = @options[:public_merchant_id] if action == 'tokenize'
|
227
|
+
hfields['Private-Merchant-Id'] = @options[:private_merchant_id] unless action == 'tokenize'
|
228
|
+
hfields['Content-Type'] = 'application/json'
|
229
|
+
hfields
|
230
|
+
end
|
231
|
+
|
232
|
+
def post_data(params)
|
233
|
+
params.to_json
|
234
|
+
end
|
235
|
+
|
236
|
+
def url(action, params)
|
237
|
+
base_url = test? ? test_url : live_url
|
238
|
+
|
239
|
+
if %w[void refund].include?(action)
|
240
|
+
base_url + 'v1/' + ENDPOINT[action] + '/' + params[:ticketNumber].to_s
|
241
|
+
else
|
242
|
+
base_url + 'card/v1/' + ENDPOINT[action]
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
246
|
+
def parse(body)
|
247
|
+
JSON.parse(body)
|
248
|
+
rescue JSON::ParserError
|
249
|
+
message = 'Invalid JSON response received from KushkiGateway. Please contact KushkiGateway if you continue to receive this message.'
|
250
|
+
message += " (The raw response returned by the API was #{body.inspect})"
|
251
|
+
{
|
252
|
+
'message' => message
|
253
|
+
}
|
254
|
+
end
|
255
|
+
|
256
|
+
def success_from(response)
|
257
|
+
return true if response['token'] || response['ticketNumber'] || response['code'] == 'K000'
|
258
|
+
end
|
259
|
+
|
260
|
+
def message_from(succeeded, response)
|
261
|
+
if succeeded
|
262
|
+
'Succeeded'
|
263
|
+
else
|
264
|
+
response['message']
|
265
|
+
end
|
266
|
+
end
|
267
|
+
|
268
|
+
def authorization_from(response)
|
269
|
+
response['token'] || response['ticketNumber']
|
270
|
+
end
|
271
|
+
|
272
|
+
def error_from(response)
|
273
|
+
response['code']
|
274
|
+
end
|
275
|
+
end
|
276
|
+
end
|
277
|
+
end
|
@@ -0,0 +1,412 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class Latitude19Gateway < Gateway
|
4
|
+
self.display_name = 'Latitude19 Gateway'
|
5
|
+
self.homepage_url = 'http://www.l19tech.com'
|
6
|
+
|
7
|
+
self.live_url = 'https://gateway.l19tech.com/payments/'
|
8
|
+
self.test_url = 'https://gateway-sb.l19tech.com/payments/'
|
9
|
+
|
10
|
+
self.supported_countries = %w[US CA]
|
11
|
+
self.default_currency = 'USD'
|
12
|
+
self.money_format = :dollars
|
13
|
+
self.supported_cardtypes = %i[visa master american_express discover diners_club jcb]
|
14
|
+
|
15
|
+
RESPONSE_CODE_MAPPING = {
|
16
|
+
'100' => 'Approved',
|
17
|
+
'101' => 'Local duplicate detected',
|
18
|
+
'102' => 'Accepted local capture with no match',
|
19
|
+
'103' => 'Auth succeeded but capture failed',
|
20
|
+
'104' => 'Auth succeeded but failed to save info',
|
21
|
+
'200' => STANDARD_ERROR_CODE[:card_declined],
|
22
|
+
'300' => 'Processor reject',
|
23
|
+
'301' => 'Local reject on user/password',
|
24
|
+
'302' => 'Local reject',
|
25
|
+
'303' => 'Processor unknown response',
|
26
|
+
'304' => 'Error parsing processor response',
|
27
|
+
'305' => 'Processor auth succeeded but settle failed',
|
28
|
+
'306' => 'Processor auth succeeded settle status unknown',
|
29
|
+
'307' => 'Processor settle status unknown',
|
30
|
+
'308' => 'Processor duplicate',
|
31
|
+
'400' => 'Not submitted',
|
32
|
+
'401' => 'Terminated before request submitted',
|
33
|
+
'402' => 'Local server busy',
|
34
|
+
'500' => 'Submitted not returned',
|
35
|
+
'501' => 'Terminated before response returned',
|
36
|
+
'502' => 'Processor returned timeout status',
|
37
|
+
'600' => 'Failed local capture with no match',
|
38
|
+
'601' => 'Failed local capture',
|
39
|
+
'700' => 'Failed local void (not in capture file)',
|
40
|
+
'701' => 'Failed local void',
|
41
|
+
'800' => 'Failed local refund (not authorized)',
|
42
|
+
'801' => 'Failed local refund'
|
43
|
+
}
|
44
|
+
|
45
|
+
BRAND_MAP = {
|
46
|
+
'master' => 'MC',
|
47
|
+
'visa' => 'VI',
|
48
|
+
'american_express' => 'AX',
|
49
|
+
'discover' => 'DS',
|
50
|
+
'diners_club' => 'DC',
|
51
|
+
'jcb' => 'JC'
|
52
|
+
}
|
53
|
+
|
54
|
+
def initialize(options = {})
|
55
|
+
requires!(options, :account_number, :configuration_id, :secret)
|
56
|
+
super
|
57
|
+
end
|
58
|
+
|
59
|
+
def purchase(amount, payment_method, options = {})
|
60
|
+
if payment_method.is_a?(String)
|
61
|
+
auth_or_sale('sale', payment_method, amount, nil, options)
|
62
|
+
else
|
63
|
+
MultiResponse.run() do |r|
|
64
|
+
r.process { get_session(options) }
|
65
|
+
r.process { get_token(r.authorization, payment_method, options) }
|
66
|
+
r.process { auth_or_sale('sale', r.authorization, amount, payment_method, options) }
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
def authorize(amount, payment_method, options = {})
|
72
|
+
if payment_method.is_a?(String)
|
73
|
+
auth_or_sale('auth', payment_method, amount, nil, options)
|
74
|
+
else
|
75
|
+
MultiResponse.run() do |r|
|
76
|
+
r.process { get_session(options) }
|
77
|
+
r.process { get_token(r.authorization, payment_method, options) }
|
78
|
+
r.process { auth_or_sale('auth', r.authorization, amount, payment_method, options) }
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
def capture(amount, authorization, options = {})
|
84
|
+
post = {}
|
85
|
+
post[:method] = 'deposit'
|
86
|
+
add_request_id(post)
|
87
|
+
|
88
|
+
params = {}
|
89
|
+
|
90
|
+
_, params[:pgwTID] = split_authorization(authorization)
|
91
|
+
|
92
|
+
add_invoice(params, amount, options)
|
93
|
+
add_credentials(params, post[:method])
|
94
|
+
|
95
|
+
post[:params] = [params]
|
96
|
+
commit('v1/', post)
|
97
|
+
end
|
98
|
+
|
99
|
+
def void(authorization, options = {})
|
100
|
+
method, pgwTID = split_authorization(authorization)
|
101
|
+
case method
|
102
|
+
when 'auth'
|
103
|
+
reverse_or_void('reversal', pgwTID, options)
|
104
|
+
when 'deposit', 'sale'
|
105
|
+
reverse_or_void('void', pgwTID, options)
|
106
|
+
else
|
107
|
+
message = 'Unsupported operation: successful Purchase, Authorize and unsettled Capture transactions can only be voided.'
|
108
|
+
return Response.new(false, message)
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
def credit(amount, payment_method, options = {})
|
113
|
+
if payment_method.is_a?(String)
|
114
|
+
refundWithCard(payment_method, amount, nil, options)
|
115
|
+
else
|
116
|
+
MultiResponse.run() do |r|
|
117
|
+
r.process { get_session(options) }
|
118
|
+
r.process { get_token(r.authorization, payment_method, options) }
|
119
|
+
r.process { refundWithCard(r.authorization, amount, payment_method, options) }
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
def verify(payment_method, options = {}, action = nil)
|
125
|
+
if payment_method.is_a?(String)
|
126
|
+
verifyOnly(action, payment_method, nil, options)
|
127
|
+
else
|
128
|
+
MultiResponse.run() do |r|
|
129
|
+
r.process { get_session(options) }
|
130
|
+
r.process { get_token(r.authorization, payment_method, options) }
|
131
|
+
r.process { verifyOnly(action, r.authorization, payment_method, options) }
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
def store(payment_method, options = {})
|
137
|
+
verify(payment_method, options, 'store')
|
138
|
+
end
|
139
|
+
|
140
|
+
def supports_scrubbing?
|
141
|
+
true
|
142
|
+
end
|
143
|
+
|
144
|
+
def scrub(transcript)
|
145
|
+
transcript.
|
146
|
+
gsub(%r((\"cardNumber\\\":\\\")\d+), '\1[FILTERED]').
|
147
|
+
gsub(%r((\"cvv\\\":\\\")\d+), '\1[FILTERED]')
|
148
|
+
end
|
149
|
+
|
150
|
+
private
|
151
|
+
|
152
|
+
def add_request_id(post)
|
153
|
+
post[:id] = SecureRandom.hex(16)
|
154
|
+
end
|
155
|
+
|
156
|
+
def add_timestamp
|
157
|
+
Time.now.getutc.strftime('%Y%m%d%H%M%S')
|
158
|
+
end
|
159
|
+
|
160
|
+
def add_hmac(params, method)
|
161
|
+
if method == 'getSession'
|
162
|
+
hmac_message = params[:pgwAccountNumber] + '|' + params[:pgwConfigurationId] + '|' + params[:requestTimeStamp] + '|' + method
|
163
|
+
else
|
164
|
+
hmac_message = params[:pgwAccountNumber] + '|' + params[:pgwConfigurationId] + '|' + (params[:orderNumber] || '') + '|' + method + '|' + (params[:amount] || '') + '|' + (params[:sessionToken] || '') + '|' + (params[:accountToken] || '')
|
165
|
+
end
|
166
|
+
|
167
|
+
OpenSSL::HMAC.hexdigest('sha512', @options[:secret], hmac_message)
|
168
|
+
end
|
169
|
+
|
170
|
+
def add_credentials(params, method)
|
171
|
+
params[:pgwAccountNumber] = @options[:account_number]
|
172
|
+
params[:pgwConfigurationId] = @options[:configuration_id]
|
173
|
+
|
174
|
+
params[:requestTimeStamp] = add_timestamp() if method == 'getSession'
|
175
|
+
|
176
|
+
params[:pgwHMAC] = add_hmac(params, method)
|
177
|
+
end
|
178
|
+
|
179
|
+
def add_invoice(params, money, options)
|
180
|
+
params[:amount] = amount(money)
|
181
|
+
params[:orderNumber] = options[:order_id]
|
182
|
+
params[:transactionClass] = options[:transaction_class] || 'eCommerce'
|
183
|
+
end
|
184
|
+
|
185
|
+
def add_payment_method(params, credit_card)
|
186
|
+
params[:cardExp] = format(credit_card.month, :two_digits).to_s + '/' + format(credit_card.year, :two_digits).to_s
|
187
|
+
params[:cardType] = BRAND_MAP[credit_card.brand.to_s]
|
188
|
+
params[:cvv] = credit_card.verification_value
|
189
|
+
params[:firstName] = credit_card.first_name
|
190
|
+
params[:lastName] = credit_card.last_name
|
191
|
+
end
|
192
|
+
|
193
|
+
def add_customer_data(params, options)
|
194
|
+
if (billing_address = options[:billing_address] || options[:address])
|
195
|
+
params[:address1] = billing_address[:address1]
|
196
|
+
params[:address2] = billing_address[:address2]
|
197
|
+
params[:city] = billing_address[:city]
|
198
|
+
params[:stateProvince] = billing_address[:state]
|
199
|
+
params[:zipPostalCode] = billing_address[:zip]
|
200
|
+
params[:countryCode] = billing_address[:country]
|
201
|
+
end
|
202
|
+
end
|
203
|
+
|
204
|
+
def get_session(options = {})
|
205
|
+
post = {}
|
206
|
+
post[:method] = 'getSession'
|
207
|
+
add_request_id(post)
|
208
|
+
|
209
|
+
params = {}
|
210
|
+
add_credentials(params, post[:method])
|
211
|
+
|
212
|
+
post[:params] = [params]
|
213
|
+
commit('session', post)
|
214
|
+
end
|
215
|
+
|
216
|
+
def get_token(authorization, payment_method, options = {})
|
217
|
+
post = {}
|
218
|
+
post[:method] = 'tokenize'
|
219
|
+
add_request_id(post)
|
220
|
+
|
221
|
+
params = {}
|
222
|
+
_, params[:sessionId] = split_authorization(authorization)
|
223
|
+
params[:cardNumber] = payment_method.number
|
224
|
+
|
225
|
+
post[:params] = [params]
|
226
|
+
commit('token', post)
|
227
|
+
end
|
228
|
+
|
229
|
+
def auth_or_sale(method, authorization, amount, credit_card, options = {})
|
230
|
+
post = {}
|
231
|
+
post[:method] = method
|
232
|
+
add_request_id(post)
|
233
|
+
|
234
|
+
params = {}
|
235
|
+
if credit_card
|
236
|
+
_, params[:sessionToken] = split_authorization(authorization)
|
237
|
+
add_payment_method(params, credit_card)
|
238
|
+
add_customer_data(params, options)
|
239
|
+
else
|
240
|
+
_, params[:accountToken] = split_authorization(authorization)
|
241
|
+
end
|
242
|
+
add_invoice(params, amount, options)
|
243
|
+
add_credentials(params, post[:method])
|
244
|
+
|
245
|
+
post[:params] = [params]
|
246
|
+
commit('v1/', post)
|
247
|
+
end
|
248
|
+
|
249
|
+
def verifyOnly(action, authorization, credit_card, options = {})
|
250
|
+
post = {}
|
251
|
+
post[:method] = 'verifyOnly'
|
252
|
+
add_request_id(post)
|
253
|
+
|
254
|
+
params = {}
|
255
|
+
if credit_card
|
256
|
+
_, params[:sessionToken] = split_authorization(authorization)
|
257
|
+
add_payment_method(params, credit_card)
|
258
|
+
add_customer_data(params, options)
|
259
|
+
else
|
260
|
+
_, params[:accountToken] = split_authorization(authorization)
|
261
|
+
end
|
262
|
+
params[:requestAccountToken] = '1' if action == 'store'
|
263
|
+
add_invoice(params, 0, options)
|
264
|
+
add_credentials(params, post[:method])
|
265
|
+
|
266
|
+
post[:params] = [params]
|
267
|
+
commit('v1/', post)
|
268
|
+
end
|
269
|
+
|
270
|
+
def refundWithCard(authorization, amount, credit_card, options = {})
|
271
|
+
post = {}
|
272
|
+
post[:method] = 'refundWithCard'
|
273
|
+
add_request_id(post)
|
274
|
+
|
275
|
+
params = {}
|
276
|
+
if credit_card
|
277
|
+
_, params[:sessionToken] = split_authorization(authorization)
|
278
|
+
add_payment_method(params, credit_card)
|
279
|
+
else
|
280
|
+
_, params[:accountToken] = split_authorization(authorization)
|
281
|
+
end
|
282
|
+
add_invoice(params, amount, options)
|
283
|
+
add_credentials(params, post[:method])
|
284
|
+
|
285
|
+
post[:params] = [params]
|
286
|
+
commit('v1/', post)
|
287
|
+
end
|
288
|
+
|
289
|
+
def reverse_or_void(method, pgwTID, options = {})
|
290
|
+
post = {}
|
291
|
+
post[:method] = method
|
292
|
+
add_request_id(post)
|
293
|
+
|
294
|
+
params = {}
|
295
|
+
params[:orderNumber] = options[:order_id]
|
296
|
+
params[:pgwTID] = pgwTID
|
297
|
+
add_credentials(params, post[:method])
|
298
|
+
|
299
|
+
post[:params] = [params]
|
300
|
+
commit('v1/', post)
|
301
|
+
end
|
302
|
+
|
303
|
+
def commit(endpoint, post)
|
304
|
+
raw_response = ssl_post(url() + endpoint, post_data(post), headers)
|
305
|
+
response = parse(raw_response)
|
306
|
+
rescue ResponseError => e
|
307
|
+
raw_response = e.response.body
|
308
|
+
response_error(raw_response)
|
309
|
+
rescue JSON::ParserError
|
310
|
+
unparsable_response(raw_response)
|
311
|
+
else
|
312
|
+
success = success_from(response)
|
313
|
+
Response.new(
|
314
|
+
success,
|
315
|
+
message_from(response),
|
316
|
+
response,
|
317
|
+
authorization: success ? authorization_from(response, post[:method]) : nil,
|
318
|
+
avs_result: success ? avs_from(response) : nil,
|
319
|
+
cvv_result: success ? cvv_from(response) : nil,
|
320
|
+
error_code: success ? nil : error_from(response),
|
321
|
+
test: test?
|
322
|
+
)
|
323
|
+
end
|
324
|
+
|
325
|
+
def headers
|
326
|
+
{
|
327
|
+
'Content-Type' => 'application/json'
|
328
|
+
}
|
329
|
+
end
|
330
|
+
|
331
|
+
def post_data(params)
|
332
|
+
params.to_json
|
333
|
+
end
|
334
|
+
|
335
|
+
def url
|
336
|
+
test? ? test_url : live_url
|
337
|
+
end
|
338
|
+
|
339
|
+
def parse(body)
|
340
|
+
JSON.parse(body)
|
341
|
+
end
|
342
|
+
|
343
|
+
def success_from(response)
|
344
|
+
return false if response['result'].nil? || response['error']
|
345
|
+
|
346
|
+
if response['result'].key?('pgwResponseCode')
|
347
|
+
response['error'].nil? && response['result']['lastActionSucceeded'] == 1 && response['result']['pgwResponseCode'] == '100'
|
348
|
+
else
|
349
|
+
response['error'].nil? && response['result']['lastActionSucceeded'] == 1
|
350
|
+
end
|
351
|
+
end
|
352
|
+
|
353
|
+
def message_from(response)
|
354
|
+
return response['error'] if response['error']
|
355
|
+
return 'Failed' unless response.key?('result')
|
356
|
+
|
357
|
+
if response['result'].key?('pgwResponseCode')
|
358
|
+
RESPONSE_CODE_MAPPING[response['result']['pgwResponseCode']] || response['result']['responseText']
|
359
|
+
else
|
360
|
+
response['result']['lastActionSucceeded'] == 1 ? 'Succeeded' : 'Failed'
|
361
|
+
end
|
362
|
+
end
|
363
|
+
|
364
|
+
def error_from(response)
|
365
|
+
return response['error'] if response['error']
|
366
|
+
return 'Failed' unless response.key?('result')
|
367
|
+
|
368
|
+
return response['result']['pgwResponseCode'] || response['result']['processor']['responseCode'] || 'Failed'
|
369
|
+
end
|
370
|
+
|
371
|
+
def authorization_from(response, method)
|
372
|
+
method + '|' + (
|
373
|
+
response['result']['sessionId'] ||
|
374
|
+
response['result']['sessionToken'] ||
|
375
|
+
response['result']['pgwTID'] ||
|
376
|
+
response['result']['accountToken']
|
377
|
+
)
|
378
|
+
end
|
379
|
+
|
380
|
+
def split_authorization(authorization)
|
381
|
+
authorization.split('|')
|
382
|
+
end
|
383
|
+
|
384
|
+
def avs_from(response)
|
385
|
+
response['result'].key?('avsResponse') ? AVSResult.new(code: response['result']['avsResponse']) : nil
|
386
|
+
end
|
387
|
+
|
388
|
+
def cvv_from(response)
|
389
|
+
response['result'].key?('cvvResponse') ? CVVResult.new(response['result']['cvvResponse']) : nil
|
390
|
+
end
|
391
|
+
|
392
|
+
def response_error(raw_response)
|
393
|
+
response = parse(raw_response)
|
394
|
+
rescue JSON::ParserError
|
395
|
+
unparsable_response(raw_response)
|
396
|
+
else
|
397
|
+
return Response.new(
|
398
|
+
false,
|
399
|
+
message_from(response),
|
400
|
+
response,
|
401
|
+
test: test?
|
402
|
+
)
|
403
|
+
end
|
404
|
+
|
405
|
+
def unparsable_response(raw_response)
|
406
|
+
message = 'Invalid JSON response received from Latitude19Gateway. Please contact Latitude19Gateway if you continue to receive this message.'
|
407
|
+
message += " (The raw response returned by the API was #{raw_response.inspect})"
|
408
|
+
return Response.new(false, message)
|
409
|
+
end
|
410
|
+
end
|
411
|
+
end
|
412
|
+
end
|