swiss-crm-activemerchant 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG +4033 -0
- data/CONTRIBUTORS +568 -0
- data/MIT-LICENSE +20 -0
- data/README.md +252 -0
- data/lib/active_merchant/billing/apple_pay_payment_token.rb +22 -0
- data/lib/active_merchant/billing/avs_result.rb +95 -0
- data/lib/active_merchant/billing/base.rb +48 -0
- data/lib/active_merchant/billing/check.rb +112 -0
- data/lib/active_merchant/billing/compatibility.rb +118 -0
- data/lib/active_merchant/billing/credit_card.rb +451 -0
- data/lib/active_merchant/billing/credit_card_formatting.rb +24 -0
- data/lib/active_merchant/billing/credit_card_methods.rb +512 -0
- data/lib/active_merchant/billing/cvv_result.rb +37 -0
- data/lib/active_merchant/billing/gateway.rb +332 -0
- data/lib/active_merchant/billing/gateways/adyen.rb +774 -0
- data/lib/active_merchant/billing/gateways/airwallex.rb +370 -0
- data/lib/active_merchant/billing/gateways/alelo.rb +256 -0
- data/lib/active_merchant/billing/gateways/allied_wallet.rb +205 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +1125 -0
- data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +424 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +977 -0
- data/lib/active_merchant/billing/gateways/axcessms.rb +242 -0
- data/lib/active_merchant/billing/gateways/balanced.rb +263 -0
- data/lib/active_merchant/billing/gateways/bambora_apac.rb +222 -0
- data/lib/active_merchant/billing/gateways/bank_frick.rb +225 -0
- data/lib/active_merchant/billing/gateways/banwire.rb +116 -0
- data/lib/active_merchant/billing/gateways/barclaycard_smartpay.rb +397 -0
- data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +15 -0
- data/lib/active_merchant/billing/gateways/be2bill.rb +131 -0
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +474 -0
- data/lib/active_merchant/billing/gateways/beanstream.rb +238 -0
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +57 -0
- data/lib/active_merchant/billing/gateways/blue_pay.rb +549 -0
- data/lib/active_merchant/billing/gateways/blue_snap.rb +644 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +190 -0
- data/lib/active_merchant/billing/gateways/borgun.rb +272 -0
- data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
- data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +28 -0
- data/lib/active_merchant/billing/gateways/braintree/token_nonce.rb +113 -0
- data/lib/active_merchant/billing/gateways/braintree.rb +19 -0
- data/lib/active_merchant/billing/gateways/braintree_blue.rb +952 -0
- data/lib/active_merchant/billing/gateways/braintree_orange.rb +19 -0
- data/lib/active_merchant/billing/gateways/bridge_pay.rb +244 -0
- data/lib/active_merchant/billing/gateways/cams.rb +230 -0
- data/lib/active_merchant/billing/gateways/card_connect.rb +338 -0
- data/lib/active_merchant/billing/gateways/card_save.rb +21 -0
- data/lib/active_merchant/billing/gateways/card_stream.rb +394 -0
- 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 +235 -0
- data/lib/active_merchant/billing/gateways/cc5.rb +198 -0
- data/lib/active_merchant/billing/gateways/cecabank.rb +249 -0
- data/lib/active_merchant/billing/gateways/cenpos.rb +328 -0
- data/lib/active_merchant/billing/gateways/checkout.rb +212 -0
- data/lib/active_merchant/billing/gateways/checkout_v2.rb +587 -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/commerce_hub.rb +366 -0
- data/lib/active_merchant/billing/gateways/commercegate.rb +142 -0
- data/lib/active_merchant/billing/gateways/conekta.rb +230 -0
- data/lib/active_merchant/billing/gateways/creditcall.rb +272 -0
- data/lib/active_merchant/billing/gateways/credorax.rb +526 -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/cyber_source_common.rb +36 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +1148 -0
- data/lib/active_merchant/billing/gateways/cyber_source_rest.rb +454 -0
- data/lib/active_merchant/billing/gateways/d_local.rb +343 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +302 -0
- data/lib/active_merchant/billing/gateways/decidir.rb +358 -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 +346 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +215 -0
- data/lib/active_merchant/billing/gateways/elavon.rb +475 -0
- data/lib/active_merchant/billing/gateways/element.rb +406 -0
- data/lib/active_merchant/billing/gateways/epay.rb +296 -0
- data/lib/active_merchant/billing/gateways/evo_ca.rb +307 -0
- data/lib/active_merchant/billing/gateways/eway.rb +226 -0
- data/lib/active_merchant/billing/gateways/eway_managed.rb +289 -0
- data/lib/active_merchant/billing/gateways/eway_rapid.rb +578 -0
- data/lib/active_merchant/billing/gateways/exact.rb +219 -0
- data/lib/active_merchant/billing/gateways/ezic.rb +195 -0
- data/lib/active_merchant/billing/gateways/fat_zebra.rb +223 -0
- data/lib/active_merchant/billing/gateways/federated_canada.rb +158 -0
- data/lib/active_merchant/billing/gateways/finansbank.rb +22 -0
- data/lib/active_merchant/billing/gateways/first_giving.rb +143 -0
- data/lib/active_merchant/billing/gateways/first_pay.rb +182 -0
- data/lib/active_merchant/billing/gateways/firstdata_e4.rb +452 -0
- 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/fluidpay.rb +275 -0
- data/lib/active_merchant/billing/gateways/forte.rb +286 -0
- data/lib/active_merchant/billing/gateways/garanti.rb +256 -0
- data/lib/active_merchant/billing/gateways/global_collect.rb +580 -0
- data/lib/active_merchant/billing/gateways/global_transport.rb +193 -0
- data/lib/active_merchant/billing/gateways/hdfc.rb +205 -0
- data/lib/active_merchant/billing/gateways/hps.rb +472 -0
- data/lib/active_merchant/billing/gateways/iats_payments.rb +312 -0
- data/lib/active_merchant/billing/gateways/in_context_paypal_express.rb +15 -0
- data/lib/active_merchant/billing/gateways/inspire.rb +213 -0
- data/lib/active_merchant/billing/gateways/instapay.rb +159 -0
- data/lib/active_merchant/billing/gateways/ipg.rb +420 -0
- data/lib/active_merchant/billing/gateways/ipp.rb +176 -0
- data/lib/active_merchant/billing/gateways/iridium.rb +467 -0
- data/lib/active_merchant/billing/gateways/itransact.rb +448 -0
- data/lib/active_merchant/billing/gateways/iveri.rb +290 -0
- data/lib/active_merchant/billing/gateways/ixopay.rb +320 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +395 -0
- data/lib/active_merchant/billing/gateways/jetpay_v2.rb +432 -0
- data/lib/active_merchant/billing/gateways/klarna.rb +317 -0
- data/lib/active_merchant/billing/gateways/komoju.rb +115 -0
- data/lib/active_merchant/billing/gateways/kushki.rb +297 -0
- data/lib/active_merchant/billing/gateways/latitude19.rb +412 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +448 -0
- data/lib/active_merchant/billing/gateways/litle.rb +643 -0
- data/lib/active_merchant/billing/gateways/mastercard.rb +286 -0
- data/lib/active_merchant/billing/gateways/maxipago.rb +220 -0
- data/lib/active_merchant/billing/gateways/mercado_pago.rb +348 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +228 -0
- data/lib/active_merchant/billing/gateways/merchant_one.rb +110 -0
- data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +313 -0
- data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +284 -0
- data/lib/active_merchant/billing/gateways/merchant_warrior.rb +248 -0
- data/lib/active_merchant/billing/gateways/mercury.rb +352 -0
- data/lib/active_merchant/billing/gateways/metrics_global.rb +293 -0
- data/lib/active_merchant/billing/gateways/micropayment.rb +182 -0
- data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +100 -0
- data/lib/active_merchant/billing/gateways/migs.rb +329 -0
- data/lib/active_merchant/billing/gateways/mit.rb +260 -0
- data/lib/active_merchant/billing/gateways/modern_payments.rb +37 -0
- data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +215 -0
- data/lib/active_merchant/billing/gateways/moka.rb +290 -0
- data/lib/active_merchant/billing/gateways/monei.rb +424 -0
- data/lib/active_merchant/billing/gateways/moneris.rb +488 -0
- data/lib/active_merchant/billing/gateways/money_movers.rb +150 -0
- data/lib/active_merchant/billing/gateways/mundipagg.rb +366 -0
- data/lib/active_merchant/billing/gateways/nab_transact.rb +299 -0
- data/lib/active_merchant/billing/gateways/ncr_secure_pay.rb +163 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +198 -0
- data/lib/active_merchant/billing/gateways/netaxept.rb +180 -0
- data/lib/active_merchant/billing/gateways/netbanx.rb +376 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +229 -0
- data/lib/active_merchant/billing/gateways/netpay.rb +223 -0
- data/lib/active_merchant/billing/gateways/network_merchants.rb +238 -0
- data/lib/active_merchant/billing/gateways/nmi.rb +396 -0
- data/lib/active_merchant/billing/gateways/ogone.rb +509 -0
- data/lib/active_merchant/billing/gateways/omise.rb +323 -0
- data/lib/active_merchant/billing/gateways/openpay.rb +246 -0
- data/lib/active_merchant/billing/gateways/opp.rb +394 -0
- data/lib/active_merchant/billing/gateways/optimal_payment.rb +331 -0
- data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +45 -0
- data/lib/active_merchant/billing/gateways/orbital.rb +1267 -0
- data/lib/active_merchant/billing/gateways/pac_net_raven.rb +206 -0
- data/lib/active_merchant/billing/gateways/pagarme.rb +239 -0
- data/lib/active_merchant/billing/gateways/pago_facil.rb +120 -0
- 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 +277 -0
- data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +390 -0
- data/lib/active_merchant/billing/gateways/pay_junction_v2.rb +206 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +110 -0
- data/lib/active_merchant/billing/gateways/pay_trace.rb +450 -0
- data/lib/active_merchant/billing/gateways/paybox_direct.rb +224 -0
- data/lib/active_merchant/billing/gateways/payeezy.rb +513 -0
- data/lib/active_merchant/billing/gateways/payex.rb +409 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +235 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +42 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
- data/lib/active_merchant/billing/gateways/payflow.rb +473 -0
- data/lib/active_merchant/billing/gateways/payflow_express.rb +220 -0
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +14 -0
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +20 -0
- data/lib/active_merchant/billing/gateways/payment_express.rb +373 -0
- data/lib/active_merchant/billing/gateways/paymentez.rb +365 -0
- data/lib/active_merchant/billing/gateways/paymill.rb +369 -0
- data/lib/active_merchant/billing/gateways/paynetworx.rb +228 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +718 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +69 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +262 -0
- data/lib/active_merchant/billing/gateways/paypal.rb +136 -0
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
- data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +44 -0
- data/lib/active_merchant/billing/gateways/paypal_express.rb +272 -0
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +30 -0
- data/lib/active_merchant/billing/gateways/paypal_standard.rb +281 -0
- data/lib/active_merchant/billing/gateways/paysafe.rb +420 -0
- data/lib/active_merchant/billing/gateways/payscout.rb +159 -0
- data/lib/active_merchant/billing/gateways/paystation.rb +204 -0
- data/lib/active_merchant/billing/gateways/payu_in.rb +249 -0
- data/lib/active_merchant/billing/gateways/payu_latam.rb +482 -0
- data/lib/active_merchant/billing/gateways/payway.rb +207 -0
- data/lib/active_merchant/billing/gateways/payway_dot_com.rb +253 -0
- data/lib/active_merchant/billing/gateways/pin.rb +273 -0
- data/lib/active_merchant/billing/gateways/pixxels.rb +263 -0
- data/lib/active_merchant/billing/gateways/plexo.rb +308 -0
- data/lib/active_merchant/billing/gateways/plugnpay.rb +283 -0
- data/lib/active_merchant/billing/gateways/priority.rb +392 -0
- data/lib/active_merchant/billing/gateways/pro_pay.rb +325 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +227 -0
- data/lib/active_merchant/billing/gateways/psl_card.rb +295 -0
- data/lib/active_merchant/billing/gateways/qbms.rb +302 -0
- data/lib/active_merchant/billing/gateways/quantum.rb +274 -0
- 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 +24 -0
- data/lib/active_merchant/billing/gateways/qvalent.rb +305 -0
- data/lib/active_merchant/billing/gateways/rapyd.rb +319 -0
- data/lib/active_merchant/billing/gateways/reach.rb +277 -0
- data/lib/active_merchant/billing/gateways/realex.rb +400 -0
- data/lib/active_merchant/billing/gateways/redsys.rb +723 -0
- 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 +446 -0
- data/lib/active_merchant/billing/gateways/sage_pay.rb +434 -0
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +141 -0
- data/lib/active_merchant/billing/gateways/secure_net.rb +260 -0
- data/lib/active_merchant/billing/gateways/secure_pay.rb +191 -0
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +290 -0
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +103 -0
- data/lib/active_merchant/billing/gateways/securion_pay.rb +305 -0
- data/lib/active_merchant/billing/gateways/shift4.rb +345 -0
- data/lib/active_merchant/billing/gateways/simetrik.rb +368 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +450 -0
- data/lib/active_merchant/billing/gateways/smart_ps.rb +274 -0
- data/lib/active_merchant/billing/gateways/so_easy_pay.rb +194 -0
- data/lib/active_merchant/billing/gateways/spreedly_core.rb +354 -0
- data/lib/active_merchant/billing/gateways/stripe.rb +866 -0
- data/lib/active_merchant/billing/gateways/stripe_payment_intents.rb +602 -0
- data/lib/active_merchant/billing/gateways/swipe_checkout.rb +151 -0
- data/lib/active_merchant/billing/gateways/telr.rb +273 -0
- data/lib/active_merchant/billing/gateways/tns.rb +23 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +240 -0
- 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 +21 -0
- data/lib/active_merchant/billing/gateways/transnational.rb +9 -0
- data/lib/active_merchant/billing/gateways/trexle.rb +221 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +500 -0
- data/lib/active_merchant/billing/gateways/usa_epay.rb +24 -0
- data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +1612 -0
- data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +367 -0
- data/lib/active_merchant/billing/gateways/vanco.rb +303 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +224 -0
- data/lib/active_merchant/billing/gateways/viaklix.rb +171 -0
- data/lib/active_merchant/billing/gateways/visanet_peru.rb +250 -0
- data/lib/active_merchant/billing/gateways/vpos.rb +223 -0
- data/lib/active_merchant/billing/gateways/webpay.rb +97 -0
- data/lib/active_merchant/billing/gateways/wepay.rb +235 -0
- data/lib/active_merchant/billing/gateways/wirecard.rb +430 -0
- data/lib/active_merchant/billing/gateways/wompi.rb +197 -0
- data/lib/active_merchant/billing/gateways/world_net.rb +345 -0
- data/lib/active_merchant/billing/gateways/worldpay.rb +1050 -0
- data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +208 -0
- data/lib/active_merchant/billing/gateways/worldpay_us.rb +221 -0
- data/lib/active_merchant/billing/gateways.rb +14 -0
- data/lib/active_merchant/billing/model.rb +30 -0
- data/lib/active_merchant/billing/network_tokenization_credit_card.rb +39 -0
- data/lib/active_merchant/billing/payment_token.rb +21 -0
- data/lib/active_merchant/billing/rails.rb +3 -0
- data/lib/active_merchant/billing/response.rb +121 -0
- data/lib/active_merchant/billing/three_d_secure_eci_mapper.rb +27 -0
- data/lib/active_merchant/billing.rb +16 -0
- data/lib/active_merchant/connection.rb +194 -0
- data/lib/active_merchant/country.rb +338 -0
- data/lib/active_merchant/empty.rb +20 -0
- data/lib/active_merchant/errors.rb +38 -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 +3 -0
- data/lib/active_merchant.rb +63 -0
- data/lib/activemerchant.rb +1 -0
- data/lib/certs/cacert.pem +3214 -0
- data/lib/support/gateway_support.rb +69 -0
- data/lib/support/outbound_hosts.rb +28 -0
- data/lib/support/ssl_verify.rb +88 -0
- data/lib/support/ssl_version.rb +86 -0
- metadata +506 -0
@@ -0,0 +1,365 @@
|
|
1
|
+
require 'base64'
|
2
|
+
require 'digest'
|
3
|
+
|
4
|
+
module ActiveMerchant #:nodoc:
|
5
|
+
module Billing #:nodoc:
|
6
|
+
class PaymentezGateway < Gateway #:nodoc:
|
7
|
+
self.test_url = 'https://ccapi-stg.paymentez.com/v2/'
|
8
|
+
self.live_url = 'https://ccapi.paymentez.com/v2/'
|
9
|
+
|
10
|
+
self.supported_countries = %w[MX EC CO BR CL PE]
|
11
|
+
self.default_currency = 'USD'
|
12
|
+
self.supported_cardtypes = %i[visa master american_express diners_club elo alia olimpica discover maestro sodexo carnet unionpay jcb]
|
13
|
+
|
14
|
+
self.homepage_url = 'https://secure.paymentez.com/'
|
15
|
+
self.display_name = 'Paymentez'
|
16
|
+
|
17
|
+
STANDARD_ERROR_CODE_MAPPING = {
|
18
|
+
1 => :processing_error,
|
19
|
+
6 => :card_declined,
|
20
|
+
9 => :card_declined,
|
21
|
+
10 => :processing_error,
|
22
|
+
11 => :card_declined,
|
23
|
+
12 => :config_error,
|
24
|
+
13 => :config_error,
|
25
|
+
19 => :invalid_cvc,
|
26
|
+
20 => :config_error,
|
27
|
+
21 => :card_declined,
|
28
|
+
22 => :card_declined,
|
29
|
+
23 => :card_declined,
|
30
|
+
24 => :card_declined,
|
31
|
+
25 => :card_declined,
|
32
|
+
26 => :card_declined,
|
33
|
+
27 => :card_declined,
|
34
|
+
28 => :card_declined
|
35
|
+
}.freeze
|
36
|
+
|
37
|
+
SUCCESS_STATUS = ['success', 'pending', 1, 0]
|
38
|
+
|
39
|
+
CARD_MAPPING = {
|
40
|
+
'visa' => 'vi',
|
41
|
+
'master' => 'mc',
|
42
|
+
'american_express' => 'ax',
|
43
|
+
'diners_club' => 'di',
|
44
|
+
'elo' => 'el',
|
45
|
+
'discover' => 'dc',
|
46
|
+
'maestro' => 'ms',
|
47
|
+
'sodexo' => 'sx',
|
48
|
+
'olimpica' => 'ol',
|
49
|
+
'carnet' => 'ct',
|
50
|
+
'unionpay' => 'up',
|
51
|
+
'jcb' => 'jc'
|
52
|
+
}.freeze
|
53
|
+
|
54
|
+
def initialize(options = {})
|
55
|
+
requires!(options, :application_code, :app_key)
|
56
|
+
super
|
57
|
+
end
|
58
|
+
|
59
|
+
def purchase(money, payment, options = {})
|
60
|
+
post = {}
|
61
|
+
|
62
|
+
add_invoice(post, money, options)
|
63
|
+
add_payment(post, payment)
|
64
|
+
add_customer_data(post, options)
|
65
|
+
add_extra_params(post, options)
|
66
|
+
action = payment.is_a?(String) ? 'debit' : 'debit_cc'
|
67
|
+
|
68
|
+
commit_transaction(action, post)
|
69
|
+
end
|
70
|
+
|
71
|
+
def authorize(money, payment, options = {})
|
72
|
+
return purchase(money, payment, options) if options[:otp_flow]
|
73
|
+
|
74
|
+
post = {}
|
75
|
+
|
76
|
+
add_invoice(post, money, options)
|
77
|
+
add_payment(post, payment)
|
78
|
+
add_customer_data(post, options)
|
79
|
+
add_extra_params(post, options)
|
80
|
+
|
81
|
+
commit_transaction('authorize', post)
|
82
|
+
end
|
83
|
+
|
84
|
+
def capture(money, authorization, options = {})
|
85
|
+
post = {
|
86
|
+
transaction: { id: authorization }
|
87
|
+
}
|
88
|
+
verify_flow = options[:type] && options[:value]
|
89
|
+
|
90
|
+
if verify_flow
|
91
|
+
add_customer_data(post, options)
|
92
|
+
add_verify_value(post, options)
|
93
|
+
elsif money
|
94
|
+
post[:order] = { amount: amount(money).to_f }
|
95
|
+
end
|
96
|
+
|
97
|
+
action = verify_flow ? 'verify' : 'capture'
|
98
|
+
commit_transaction(action, post)
|
99
|
+
end
|
100
|
+
|
101
|
+
def refund(money, authorization, options = {})
|
102
|
+
post = { transaction: { id: authorization } }
|
103
|
+
post[:order] = { amount: amount(money).to_f } if money
|
104
|
+
add_more_info(post, options)
|
105
|
+
|
106
|
+
commit_transaction('refund', post)
|
107
|
+
end
|
108
|
+
|
109
|
+
def void(authorization, _options = {})
|
110
|
+
post = { transaction: { id: authorization } }
|
111
|
+
commit_transaction('refund', post)
|
112
|
+
end
|
113
|
+
|
114
|
+
def verify(credit_card, options = {})
|
115
|
+
MultiResponse.run do |r|
|
116
|
+
r.process { authorize(100, credit_card, options) }
|
117
|
+
r.process { void(r.authorization, options) }
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
def store(credit_card, options = {})
|
122
|
+
post = {}
|
123
|
+
|
124
|
+
add_customer_data(post, options)
|
125
|
+
add_payment(post, credit_card)
|
126
|
+
|
127
|
+
response = commit_card('add', post)
|
128
|
+
if !response.success? && !(token = extract_previous_card_token(response)).nil?
|
129
|
+
unstore(token, options)
|
130
|
+
response = commit_card('add', post)
|
131
|
+
end
|
132
|
+
response
|
133
|
+
end
|
134
|
+
|
135
|
+
def unstore(identification, options = {})
|
136
|
+
post = { card: { token: identification }, user: { id: options[:user_id] } }
|
137
|
+
commit_card('delete', post)
|
138
|
+
end
|
139
|
+
|
140
|
+
def inquire(authorization, options = {})
|
141
|
+
commit_transaction('inquire', authorization)
|
142
|
+
end
|
143
|
+
|
144
|
+
def supports_scrubbing?
|
145
|
+
true
|
146
|
+
end
|
147
|
+
|
148
|
+
def scrub(transcript)
|
149
|
+
transcript.
|
150
|
+
gsub(%r{(\\?"number\\?":)(\\?"[^"]+\\?")}, '\1[FILTERED]').
|
151
|
+
gsub(%r{(\\?"cvc\\?":)(\\?"[^"]+\\?")}, '\1[FILTERED]').
|
152
|
+
gsub(%r{(Auth-Token: )([A-Za-z0-9=]+)}, '\1[FILTERED]')
|
153
|
+
end
|
154
|
+
|
155
|
+
private
|
156
|
+
|
157
|
+
def add_customer_data(post, options)
|
158
|
+
requires!(options, :user_id)
|
159
|
+
post[:user] ||= {}
|
160
|
+
post[:user][:id] = options[:user_id]
|
161
|
+
post[:user][:email] = options[:email] if options[:email]
|
162
|
+
post[:user][:ip_address] = options[:ip] if options[:ip]
|
163
|
+
post[:user][:fiscal_number] = options[:fiscal_number] if options[:fiscal_number]
|
164
|
+
if phone = options[:phone] || options.dig(:billing_address, :phone)
|
165
|
+
post[:user][:phone] = phone
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
def add_invoice(post, money, options)
|
170
|
+
post[:session_id] = options[:session_id] if options[:session_id]
|
171
|
+
|
172
|
+
post[:order] ||= {}
|
173
|
+
post[:order][:amount] = amount(money).to_f
|
174
|
+
post[:order][:vat] = options[:vat] if options[:vat]
|
175
|
+
post[:order][:dev_reference] = options[:dev_reference] if options[:dev_reference]
|
176
|
+
post[:order][:description] = options[:description] if options[:description]
|
177
|
+
post[:order][:discount] = options[:discount] if options[:discount]
|
178
|
+
post[:order][:installments] = options[:installments] if options[:installments]
|
179
|
+
post[:order][:installments_type] = options[:installments_type] if options[:installments_type]
|
180
|
+
post[:order][:taxable_amount] = options[:taxable_amount] if options[:taxable_amount]
|
181
|
+
post[:order][:tax_percentage] = options[:tax_percentage] if options[:tax_percentage]
|
182
|
+
end
|
183
|
+
|
184
|
+
def add_payment(post, payment)
|
185
|
+
post[:card] ||= {}
|
186
|
+
if payment.is_a?(String)
|
187
|
+
post[:card][:token] = payment
|
188
|
+
else
|
189
|
+
post[:card][:number] = payment.number
|
190
|
+
post[:card][:holder_name] = payment.name
|
191
|
+
post[:card][:expiry_month] = payment.month
|
192
|
+
post[:card][:expiry_year] = payment.year
|
193
|
+
post[:card][:cvc] = payment.verification_value
|
194
|
+
post[:card][:type] = CARD_MAPPING[payment.brand]
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
def add_verify_value(post, options)
|
199
|
+
post[:type] = options[:type] if options[:type]
|
200
|
+
post[:value] = options[:value] if options[:value]
|
201
|
+
end
|
202
|
+
|
203
|
+
def add_extra_params(post, options)
|
204
|
+
extra_params = {}
|
205
|
+
extra_params.merge!(options[:extra_params]) if options[:extra_params]
|
206
|
+
|
207
|
+
add_external_mpi_fields(extra_params, options)
|
208
|
+
|
209
|
+
post['extra_params'] = extra_params unless extra_params.empty?
|
210
|
+
end
|
211
|
+
|
212
|
+
def add_external_mpi_fields(extra_params, options)
|
213
|
+
three_d_secure_options = options[:three_d_secure]
|
214
|
+
return unless three_d_secure_options
|
215
|
+
|
216
|
+
auth_data = {
|
217
|
+
cavv: three_d_secure_options[:cavv],
|
218
|
+
xid: three_d_secure_options[:xid],
|
219
|
+
eci: three_d_secure_options[:eci],
|
220
|
+
version: three_d_secure_options[:version],
|
221
|
+
reference_id: three_d_secure_options[:three_ds_server_trans_id],
|
222
|
+
status: three_d_secure_options[:authentication_response_status] || three_d_secure_options[:directory_response_status]
|
223
|
+
}.compact
|
224
|
+
|
225
|
+
return if auth_data.empty?
|
226
|
+
|
227
|
+
extra_params[:auth_data] = auth_data
|
228
|
+
end
|
229
|
+
|
230
|
+
def add_more_info(post, options)
|
231
|
+
post[:more_info] = options[:more_info] if options[:more_info]
|
232
|
+
end
|
233
|
+
|
234
|
+
def parse(body)
|
235
|
+
JSON.parse(body)
|
236
|
+
end
|
237
|
+
|
238
|
+
def commit_raw(object, action, parameters)
|
239
|
+
if action == 'inquire'
|
240
|
+
url = "#{(test? ? test_url : live_url)}#{object}/#{parameters}"
|
241
|
+
begin
|
242
|
+
raw_response = ssl_get(url, headers)
|
243
|
+
rescue ResponseError => e
|
244
|
+
raw_response = e.response.body
|
245
|
+
end
|
246
|
+
else
|
247
|
+
url = "#{(test? ? test_url : live_url)}#{object}/#{action}"
|
248
|
+
begin
|
249
|
+
raw_response = ssl_post(url, post_data(parameters), headers)
|
250
|
+
rescue ResponseError => e
|
251
|
+
raw_response = e.response.body
|
252
|
+
end
|
253
|
+
end
|
254
|
+
|
255
|
+
begin
|
256
|
+
parse(raw_response)
|
257
|
+
rescue JSON::ParserError
|
258
|
+
{ 'status' => 'Internal server error' }
|
259
|
+
end
|
260
|
+
end
|
261
|
+
|
262
|
+
def commit_transaction(action, parameters)
|
263
|
+
response = commit_raw('transaction', action, parameters)
|
264
|
+
Response.new(
|
265
|
+
success_from(response),
|
266
|
+
message_from(response),
|
267
|
+
response,
|
268
|
+
authorization: authorization_from(response),
|
269
|
+
test: test?,
|
270
|
+
error_code: error_code_from(response)
|
271
|
+
)
|
272
|
+
end
|
273
|
+
|
274
|
+
def commit_card(action, parameters)
|
275
|
+
response = commit_raw('card', action, parameters)
|
276
|
+
Response.new(
|
277
|
+
card_success_from(response),
|
278
|
+
card_message_from(response),
|
279
|
+
response,
|
280
|
+
authorization: card_authorization_from(response),
|
281
|
+
test: test?,
|
282
|
+
error_code: card_error_code_from(response)
|
283
|
+
)
|
284
|
+
end
|
285
|
+
|
286
|
+
def headers
|
287
|
+
{
|
288
|
+
'Auth-Token' => authentication_code,
|
289
|
+
'Content-Type' => 'application/json'
|
290
|
+
}
|
291
|
+
end
|
292
|
+
|
293
|
+
def success_from(response)
|
294
|
+
return false if response.include?('error')
|
295
|
+
|
296
|
+
SUCCESS_STATUS.include?(response['status'] || response['transaction']['status'])
|
297
|
+
end
|
298
|
+
|
299
|
+
def card_success_from(response)
|
300
|
+
return false if response.include?('error')
|
301
|
+
return true if response['message'] == 'card deleted'
|
302
|
+
|
303
|
+
response['card']['status'] == 'valid'
|
304
|
+
end
|
305
|
+
|
306
|
+
def message_from(response)
|
307
|
+
return response['detail'] if response['detail'].present?
|
308
|
+
|
309
|
+
if !success_from(response) && response['error']
|
310
|
+
response['error'] && response['error']['type']
|
311
|
+
else
|
312
|
+
(response['transaction'] && response['transaction']['message']) || (response['message'])
|
313
|
+
end
|
314
|
+
end
|
315
|
+
|
316
|
+
def card_message_from(response)
|
317
|
+
if !response.include?('error')
|
318
|
+
response['message'] || response['card']['message']
|
319
|
+
else
|
320
|
+
response['error']['type']
|
321
|
+
end
|
322
|
+
end
|
323
|
+
|
324
|
+
def authorization_from(response)
|
325
|
+
response['transaction'] && response['transaction']['id']
|
326
|
+
end
|
327
|
+
|
328
|
+
def card_authorization_from(response)
|
329
|
+
response['card'] && response['card']['token']
|
330
|
+
end
|
331
|
+
|
332
|
+
def extract_previous_card_token(response)
|
333
|
+
match = /Card already added: (\d+)/.match(response.message)
|
334
|
+
match && match[1]
|
335
|
+
end
|
336
|
+
|
337
|
+
def post_data(parameters = {})
|
338
|
+
JSON.dump(parameters)
|
339
|
+
end
|
340
|
+
|
341
|
+
def error_code_from(response)
|
342
|
+
return if success_from(response)
|
343
|
+
|
344
|
+
if response['transaction']
|
345
|
+
detail = response['transaction']['status_detail']
|
346
|
+
return STANDARD_ERROR_CODE[STANDARD_ERROR_CODE_MAPPING[detail]] if STANDARD_ERROR_CODE_MAPPING.include?(detail)
|
347
|
+
elsif response['error']
|
348
|
+
return STANDARD_ERROR_CODE[:config_error]
|
349
|
+
end
|
350
|
+
STANDARD_ERROR_CODE[:processing_error]
|
351
|
+
end
|
352
|
+
|
353
|
+
def card_error_code_from(response)
|
354
|
+
STANDARD_ERROR_CODE[:processing_error] unless card_success_from(response)
|
355
|
+
end
|
356
|
+
|
357
|
+
def authentication_code
|
358
|
+
timestamp = Time.new.to_i
|
359
|
+
unique_token = Digest::SHA256.hexdigest("#{@options[:app_key]}#{timestamp}")
|
360
|
+
authentication_string = "#{@options[:application_code]};#{timestamp};#{unique_token}"
|
361
|
+
Base64.encode64(authentication_string).delete("\n")
|
362
|
+
end
|
363
|
+
end
|
364
|
+
end
|
365
|
+
end
|