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,338 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class CardConnectGateway < Gateway
|
4
|
+
self.test_url = 'https://fts-uat.cardconnect.com/cardconnect/rest/'
|
5
|
+
self.live_url = 'https://fts.cardconnect.com/cardconnect/rest/'
|
6
|
+
|
7
|
+
self.supported_countries = ['US']
|
8
|
+
self.default_currency = 'USD'
|
9
|
+
self.supported_cardtypes = %i[visa master american_express discover]
|
10
|
+
|
11
|
+
self.homepage_url = 'https://cardconnect.com/'
|
12
|
+
self.display_name = 'Card Connect'
|
13
|
+
|
14
|
+
STANDARD_ERROR_CODE_MAPPING = {
|
15
|
+
'11' => STANDARD_ERROR_CODE[:card_declined],
|
16
|
+
'12' => STANDARD_ERROR_CODE[:incorrect_number],
|
17
|
+
'13' => STANDARD_ERROR_CODE[:incorrect_cvc],
|
18
|
+
'14' => STANDARD_ERROR_CODE[:incorrect_cvc],
|
19
|
+
'15' => STANDARD_ERROR_CODE[:invalid_expiry_date],
|
20
|
+
'16' => STANDARD_ERROR_CODE[:expired_card],
|
21
|
+
'17' => STANDARD_ERROR_CODE[:incorrect_zip],
|
22
|
+
'21' => STANDARD_ERROR_CODE[:config_error],
|
23
|
+
'22' => STANDARD_ERROR_CODE[:config_error],
|
24
|
+
'23' => STANDARD_ERROR_CODE[:config_error],
|
25
|
+
'24' => STANDARD_ERROR_CODE[:processing_error],
|
26
|
+
'25' => STANDARD_ERROR_CODE[:processing_error],
|
27
|
+
'27' => STANDARD_ERROR_CODE[:processing_error],
|
28
|
+
'28' => STANDARD_ERROR_CODE[:processing_error],
|
29
|
+
'29' => STANDARD_ERROR_CODE[:processing_error],
|
30
|
+
'31' => STANDARD_ERROR_CODE[:processing_error],
|
31
|
+
'32' => STANDARD_ERROR_CODE[:processing_error],
|
32
|
+
'33' => STANDARD_ERROR_CODE[:card_declined],
|
33
|
+
'34' => STANDARD_ERROR_CODE[:card_declined],
|
34
|
+
'35' => STANDARD_ERROR_CODE[:incorrect_zip],
|
35
|
+
'36' => STANDARD_ERROR_CODE[:processing_error],
|
36
|
+
'37' => STANDARD_ERROR_CODE[:incorrect_cvc],
|
37
|
+
'41' => STANDARD_ERROR_CODE[:processing_error],
|
38
|
+
'42' => STANDARD_ERROR_CODE[:processing_error],
|
39
|
+
'43' => STANDARD_ERROR_CODE[:processing_error],
|
40
|
+
'44' => STANDARD_ERROR_CODE[:config_error],
|
41
|
+
'61' => STANDARD_ERROR_CODE[:processing_error],
|
42
|
+
'62' => STANDARD_ERROR_CODE[:processing_error],
|
43
|
+
'63' => STANDARD_ERROR_CODE[:processing_error],
|
44
|
+
'64' => STANDARD_ERROR_CODE[:config_error],
|
45
|
+
'65' => STANDARD_ERROR_CODE[:processing_error],
|
46
|
+
'66' => STANDARD_ERROR_CODE[:processing_error],
|
47
|
+
'91' => STANDARD_ERROR_CODE[:processing_error],
|
48
|
+
'92' => STANDARD_ERROR_CODE[:processing_error],
|
49
|
+
'93' => STANDARD_ERROR_CODE[:processing_error],
|
50
|
+
'94' => STANDARD_ERROR_CODE[:processing_error],
|
51
|
+
'95' => STANDARD_ERROR_CODE[:config_error],
|
52
|
+
'96' => STANDARD_ERROR_CODE[:processing_error],
|
53
|
+
'NU' => STANDARD_ERROR_CODE[:card_declined],
|
54
|
+
'N3' => STANDARD_ERROR_CODE[:card_declined],
|
55
|
+
'NJ' => STANDARD_ERROR_CODE[:card_declined],
|
56
|
+
'51' => STANDARD_ERROR_CODE[:card_declined],
|
57
|
+
'C2' => STANDARD_ERROR_CODE[:incorrect_cvc],
|
58
|
+
'54' => STANDARD_ERROR_CODE[:expired_card],
|
59
|
+
'05' => STANDARD_ERROR_CODE[:card_declined],
|
60
|
+
'03' => STANDARD_ERROR_CODE[:config_error],
|
61
|
+
'60' => STANDARD_ERROR_CODE[:pickup_card]
|
62
|
+
}
|
63
|
+
|
64
|
+
SCHEDULED_PAYMENT_TYPES = %w(recurring installment)
|
65
|
+
|
66
|
+
def initialize(options = {})
|
67
|
+
requires!(options, :merchant_id, :username, :password)
|
68
|
+
require_valid_domain!(options, :domain)
|
69
|
+
super
|
70
|
+
end
|
71
|
+
|
72
|
+
def require_valid_domain!(options, param)
|
73
|
+
if options[param]
|
74
|
+
raise ArgumentError.new('not a valid cardconnect domain') unless /https:\/\/\D*cardconnect.com/ =~ options[param]
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
def purchase(money, payment, options = {})
|
79
|
+
if options[:po_number]
|
80
|
+
MultiResponse.run do |r|
|
81
|
+
r.process { authorize(money, payment, options) }
|
82
|
+
r.process { capture(money, r.authorization, options) }
|
83
|
+
end
|
84
|
+
else
|
85
|
+
post = {}
|
86
|
+
add_invoice(post, options)
|
87
|
+
add_money(post, money)
|
88
|
+
add_payment(post, payment)
|
89
|
+
add_currency(post, money, options)
|
90
|
+
add_address(post, options)
|
91
|
+
add_customer_data(post, options)
|
92
|
+
add_three_ds_mpi_data(post, options)
|
93
|
+
add_additional_data(post, options)
|
94
|
+
add_stored_credential(post, options)
|
95
|
+
post[:capture] = 'Y'
|
96
|
+
commit('auth', post)
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
def authorize(money, payment, options = {})
|
101
|
+
post = {}
|
102
|
+
add_money(post, money)
|
103
|
+
add_currency(post, money, options)
|
104
|
+
add_invoice(post, options)
|
105
|
+
add_payment(post, payment)
|
106
|
+
add_address(post, options)
|
107
|
+
add_customer_data(post, options)
|
108
|
+
add_three_ds_mpi_data(post, options)
|
109
|
+
add_additional_data(post, options)
|
110
|
+
add_stored_credential(post, options)
|
111
|
+
commit('auth', post)
|
112
|
+
end
|
113
|
+
|
114
|
+
def capture(money, authorization, options = {})
|
115
|
+
post = {}
|
116
|
+
add_money(post, money)
|
117
|
+
add_reference(post, authorization)
|
118
|
+
add_additional_data(post, options)
|
119
|
+
commit('capture', post)
|
120
|
+
end
|
121
|
+
|
122
|
+
def refund(money, authorization, options = {})
|
123
|
+
post = {}
|
124
|
+
add_money(post, money)
|
125
|
+
add_reference(post, authorization)
|
126
|
+
commit('refund', post)
|
127
|
+
end
|
128
|
+
|
129
|
+
def void(authorization, options = {})
|
130
|
+
post = {}
|
131
|
+
add_reference(post, authorization)
|
132
|
+
commit('void', post)
|
133
|
+
end
|
134
|
+
|
135
|
+
def verify(credit_card, options = {})
|
136
|
+
authorize(0, credit_card, options)
|
137
|
+
end
|
138
|
+
|
139
|
+
def store(payment, options = {})
|
140
|
+
post = {}
|
141
|
+
add_payment(post, payment)
|
142
|
+
add_address(post, options)
|
143
|
+
add_customer_data(post, options)
|
144
|
+
commit('profile', post)
|
145
|
+
end
|
146
|
+
|
147
|
+
def unstore(authorization, options = {})
|
148
|
+
account_id, profile_id = authorization.split('|')
|
149
|
+
commit('profile', {},
|
150
|
+
verb: :delete,
|
151
|
+
path: "/#{profile_id}/#{account_id}/#{@options[:merchant_id]}")
|
152
|
+
end
|
153
|
+
|
154
|
+
def supports_scrubbing?
|
155
|
+
true
|
156
|
+
end
|
157
|
+
|
158
|
+
def scrub(transcript)
|
159
|
+
transcript.
|
160
|
+
gsub(%r((Authorization: Basic )\w+), '\1[FILTERED]').
|
161
|
+
gsub(%r(("cvv2\\":\\")\d*), '\1[FILTERED]').
|
162
|
+
gsub(%r(("merchid\\":\\")\d*), '\1[FILTERED]').
|
163
|
+
gsub(%r((&?"account\\":\\")\d*), '\1[FILTERED]').
|
164
|
+
gsub(%r((&?"token\\":\\")\d*), '\1[FILTERED]')
|
165
|
+
end
|
166
|
+
|
167
|
+
private
|
168
|
+
|
169
|
+
def add_customer_data(post, options)
|
170
|
+
post[:email] = options[:email] if options[:email]
|
171
|
+
end
|
172
|
+
|
173
|
+
def add_address(post, options)
|
174
|
+
if address = options[:billing_address] || options[:address]
|
175
|
+
post[:address] = address[:address1] if address[:address1]
|
176
|
+
post[:address2] = address[:address2] if address[:address2]
|
177
|
+
post[:city] = address[:city] if address[:city]
|
178
|
+
post[:region] = address[:state] if address[:state]
|
179
|
+
post[:country] = address[:country] if address[:country]
|
180
|
+
post[:postal] = address[:zip] if address[:zip]
|
181
|
+
post[:phone] = address[:phone] if address[:phone]
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
def add_money(post, money)
|
186
|
+
post[:amount] = amount(money)
|
187
|
+
end
|
188
|
+
|
189
|
+
def add_currency(post, money, options)
|
190
|
+
post[:currency] = (options[:currency] || currency(money))
|
191
|
+
end
|
192
|
+
|
193
|
+
def add_invoice(post, options)
|
194
|
+
post[:orderid] = options[:order_id]
|
195
|
+
post[:ecomind] = if options[:ecomind]
|
196
|
+
options[:ecomind].capitalize
|
197
|
+
else
|
198
|
+
(options[:recurring] ? 'R' : 'E')
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
def add_payment(post, payment)
|
203
|
+
if payment.is_a?(String)
|
204
|
+
account_id, profile_id = payment.split('|')
|
205
|
+
post[:profile] = profile_id
|
206
|
+
post[:acctid] = account_id
|
207
|
+
else
|
208
|
+
post[:name] = payment.name
|
209
|
+
if card_brand(payment) == 'check'
|
210
|
+
add_echeck(post, payment)
|
211
|
+
else
|
212
|
+
post[:account] = payment.number
|
213
|
+
post[:expiry] = expdate(payment)
|
214
|
+
post[:cvv2] = payment.verification_value
|
215
|
+
end
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
219
|
+
def add_echeck(post, payment)
|
220
|
+
post[:accttype] = 'ECHK'
|
221
|
+
post[:account] = payment.account_number
|
222
|
+
post[:bankaba] = payment.routing_number
|
223
|
+
end
|
224
|
+
|
225
|
+
def add_reference(post, authorization)
|
226
|
+
post[:retref] = authorization
|
227
|
+
end
|
228
|
+
|
229
|
+
def add_additional_data(post, options)
|
230
|
+
post[:ponumber] = options[:po_number]
|
231
|
+
post[:taxamnt] = options[:tax_amount] if options[:tax_amount]
|
232
|
+
post[:frtamnt] = options[:freight_amount] if options[:freight_amount]
|
233
|
+
post[:dutyamnt] = options[:duty_amount] if options[:duty_amount]
|
234
|
+
post[:orderdate] = options[:order_date] if options[:order_date]
|
235
|
+
post[:shipfromzip] = options[:ship_from_zip] if options[:ship_from_zip]
|
236
|
+
if (shipping_address = options[:shipping_address])
|
237
|
+
post[:shiptozip] = shipping_address[:zip]
|
238
|
+
post[:shiptocountry] = shipping_address[:country]
|
239
|
+
end
|
240
|
+
if options[:items]
|
241
|
+
post[:items] = options[:items].map do |item|
|
242
|
+
updated = {}
|
243
|
+
item.each_pair do |k, v|
|
244
|
+
updated.merge!(k.to_s.delete('_') => v)
|
245
|
+
end
|
246
|
+
updated
|
247
|
+
end
|
248
|
+
end
|
249
|
+
post[:userfields] = options[:user_fields] if options[:user_fields]
|
250
|
+
end
|
251
|
+
|
252
|
+
def add_three_ds_mpi_data(post, options)
|
253
|
+
return unless three_d_secure = options[:three_d_secure]
|
254
|
+
|
255
|
+
post[:secureflag] = three_d_secure[:eci]
|
256
|
+
post[:securevalue] = three_d_secure[:cavv]
|
257
|
+
post[:securedstid] = three_d_secure[:ds_transaction_id]
|
258
|
+
end
|
259
|
+
|
260
|
+
def add_stored_credential(post, options)
|
261
|
+
return unless stored_credential = options[:stored_credential]
|
262
|
+
|
263
|
+
post[:cof] = stored_credential[:initiator] == 'merchant' ? 'M' : 'C'
|
264
|
+
post[:cofscheduled] = SCHEDULED_PAYMENT_TYPES.include?(stored_credential[:reason_type]) ? 'Y' : 'N'
|
265
|
+
post[:cofpermission] = stored_credential[:initial_transaction] ? 'Y' : 'N'
|
266
|
+
end
|
267
|
+
|
268
|
+
def headers
|
269
|
+
{
|
270
|
+
'Authorization' => 'Basic ' + Base64.strict_encode64("#{@options[:username]}:#{@options[:password]}"),
|
271
|
+
'Content-Type' => 'application/json'
|
272
|
+
}
|
273
|
+
end
|
274
|
+
|
275
|
+
def expdate(credit_card)
|
276
|
+
"#{format(credit_card.month, :two_digits)}#{format(credit_card.year, :two_digits)}"
|
277
|
+
end
|
278
|
+
|
279
|
+
def parse(body)
|
280
|
+
JSON.parse(body)
|
281
|
+
end
|
282
|
+
|
283
|
+
def url(action, path)
|
284
|
+
if test?
|
285
|
+
test_url + action + path
|
286
|
+
else
|
287
|
+
(@options[:domain] || live_url) + action + path
|
288
|
+
end
|
289
|
+
end
|
290
|
+
|
291
|
+
def commit(action, parameters, verb: :put, path: '')
|
292
|
+
parameters[:frontendid] = application_id
|
293
|
+
parameters[:merchid] = @options[:merchant_id]
|
294
|
+
url = url(action, path)
|
295
|
+
response = parse(ssl_request(verb, url, post_data(parameters), headers))
|
296
|
+
|
297
|
+
Response.new(
|
298
|
+
success_from(response),
|
299
|
+
message_from(response),
|
300
|
+
response,
|
301
|
+
authorization: authorization_from(response),
|
302
|
+
avs_result: AVSResult.new(code: response['avsresp']),
|
303
|
+
cvv_result: CVVResult.new(response['cvvresp']),
|
304
|
+
test: test?,
|
305
|
+
error_code: error_code_from(response)
|
306
|
+
)
|
307
|
+
rescue ResponseError => e
|
308
|
+
return Response.new(false, 'Unable to authenticate. Please check your credentials.', {}, test: test?) if e.response.code == '401'
|
309
|
+
|
310
|
+
raise
|
311
|
+
end
|
312
|
+
|
313
|
+
def success_from(response)
|
314
|
+
response['respstat'] == 'A'
|
315
|
+
end
|
316
|
+
|
317
|
+
def message_from(response)
|
318
|
+
response['setlstat'] ? "#{response['resptext']} #{response['setlstat']}" : response['resptext']
|
319
|
+
end
|
320
|
+
|
321
|
+
def authorization_from(response)
|
322
|
+
if response['profileid']
|
323
|
+
"#{response['acctid']}|#{response['profileid']}"
|
324
|
+
else
|
325
|
+
response['retref']
|
326
|
+
end
|
327
|
+
end
|
328
|
+
|
329
|
+
def post_data(parameters = {})
|
330
|
+
parameters.to_json
|
331
|
+
end
|
332
|
+
|
333
|
+
def error_code_from(response)
|
334
|
+
STANDARD_ERROR_CODE_MAPPING[response['respcode']] unless success_from(response)
|
335
|
+
end
|
336
|
+
end
|
337
|
+
end
|
338
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class CardSaveGateway < IridiumGateway
|
4
|
+
# CardSave lets you handle failovers on payments by providing 3 gateways in case one happens to be down
|
5
|
+
# URLS = ['https://gw1.cardsaveonlinepayments.com:4430/','https://gw2.cardsaveonlinepayments.com:4430/','https://gw3.cardsaveonlinepayments.com:4430/']
|
6
|
+
|
7
|
+
self.money_format = :cents
|
8
|
+
self.default_currency = 'GBP'
|
9
|
+
self.supported_cardtypes = %i[visa maestro master american_express jcb]
|
10
|
+
self.supported_countries = ['GB']
|
11
|
+
self.homepage_url = 'http://www.cardsave.net/'
|
12
|
+
self.display_name = 'CardSave'
|
13
|
+
|
14
|
+
def initialize(options = {})
|
15
|
+
super
|
16
|
+
@test_url = 'https://gw1.cardsaveonlinepayments.com:4430/'
|
17
|
+
@live_url = 'https://gw1.cardsaveonlinepayments.com:4430/'
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|