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,396 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class NmiGateway < Gateway
|
4
|
+
include Empty
|
5
|
+
|
6
|
+
SUCCESS_CODE = 100
|
7
|
+
SOFT_DECLINE_CODES = [201, 203, 204, 221, 222, 224, 225, 226, 240].freeze
|
8
|
+
|
9
|
+
DUP_WINDOW_DEPRECATION_MESSAGE = 'The class-level duplicate_window variable is deprecated. Please use the :dup_seconds transaction option instead.'
|
10
|
+
|
11
|
+
self.test_url = self.live_url = 'https://secure.networkmerchants.com/api/transact.php'
|
12
|
+
self.default_currency = 'USD'
|
13
|
+
self.money_format = :dollars
|
14
|
+
self.supported_countries = ['US']
|
15
|
+
self.supported_cardtypes = %i[visa master american_express discover]
|
16
|
+
self.homepage_url = 'http://nmi.com/'
|
17
|
+
self.display_name = 'NMI'
|
18
|
+
|
19
|
+
def self.duplicate_window=(seconds)
|
20
|
+
ActiveMerchant.deprecated(DUP_WINDOW_DEPRECATION_MESSAGE)
|
21
|
+
@dup_seconds = seconds
|
22
|
+
end
|
23
|
+
|
24
|
+
def self.duplicate_window
|
25
|
+
instance_variable_defined?(:@dup_seconds) ? @dup_seconds : nil
|
26
|
+
end
|
27
|
+
|
28
|
+
def initialize(options = {})
|
29
|
+
if options.has_key?(:security_key)
|
30
|
+
requires!(options, :security_key)
|
31
|
+
else
|
32
|
+
requires!(options, :login, :password)
|
33
|
+
end
|
34
|
+
super
|
35
|
+
|
36
|
+
@response_http_code = nil
|
37
|
+
end
|
38
|
+
|
39
|
+
def purchase(amount, payment_method, options = {})
|
40
|
+
post = {}
|
41
|
+
add_invoice(post, amount, options)
|
42
|
+
add_payment_method(post, payment_method, options)
|
43
|
+
add_stored_credential(post, options)
|
44
|
+
add_customer_data(post, options)
|
45
|
+
add_vendor_data(post, options)
|
46
|
+
add_merchant_defined_fields(post, options)
|
47
|
+
add_level3_fields(post, options)
|
48
|
+
add_three_d_secure(post, options)
|
49
|
+
|
50
|
+
commit('sale', post)
|
51
|
+
end
|
52
|
+
|
53
|
+
def authorize(amount, payment_method, options = {})
|
54
|
+
post = {}
|
55
|
+
add_invoice(post, amount, options)
|
56
|
+
add_payment_method(post, payment_method, options)
|
57
|
+
add_stored_credential(post, options)
|
58
|
+
add_customer_data(post, options)
|
59
|
+
add_vendor_data(post, options)
|
60
|
+
add_merchant_defined_fields(post, options)
|
61
|
+
add_level3_fields(post, options)
|
62
|
+
add_three_d_secure(post, options)
|
63
|
+
commit('auth', post)
|
64
|
+
end
|
65
|
+
|
66
|
+
def capture(amount, authorization, options = {})
|
67
|
+
post = {}
|
68
|
+
add_invoice(post, amount, options)
|
69
|
+
add_reference(post, authorization)
|
70
|
+
add_merchant_defined_fields(post, options)
|
71
|
+
|
72
|
+
commit('capture', post)
|
73
|
+
end
|
74
|
+
|
75
|
+
def void(authorization, options = {})
|
76
|
+
post = {}
|
77
|
+
add_reference(post, authorization)
|
78
|
+
add_payment_type(post, authorization)
|
79
|
+
|
80
|
+
commit('void', post)
|
81
|
+
end
|
82
|
+
|
83
|
+
def refund(amount, authorization, options = {})
|
84
|
+
post = {}
|
85
|
+
add_invoice(post, amount, options)
|
86
|
+
add_reference(post, authorization)
|
87
|
+
add_payment_type(post, authorization)
|
88
|
+
|
89
|
+
commit('refund', post)
|
90
|
+
end
|
91
|
+
|
92
|
+
def credit(amount, payment_method, options = {})
|
93
|
+
post = {}
|
94
|
+
add_invoice(post, amount, options)
|
95
|
+
add_payment_method(post, payment_method, options)
|
96
|
+
add_customer_data(post, options)
|
97
|
+
add_vendor_data(post, options)
|
98
|
+
add_level3_fields(post, options)
|
99
|
+
|
100
|
+
commit('credit', post)
|
101
|
+
end
|
102
|
+
|
103
|
+
def verify(payment_method, options = {})
|
104
|
+
post = {}
|
105
|
+
add_payment_method(post, payment_method, options)
|
106
|
+
add_customer_data(post, options)
|
107
|
+
add_vendor_data(post, options)
|
108
|
+
add_merchant_defined_fields(post, options)
|
109
|
+
add_level3_fields(post, options)
|
110
|
+
|
111
|
+
commit('validate', post)
|
112
|
+
end
|
113
|
+
|
114
|
+
def store(payment_method, options = {})
|
115
|
+
post = {}
|
116
|
+
add_invoice(post, nil, options)
|
117
|
+
add_payment_method(post, payment_method, options)
|
118
|
+
add_customer_data(post, options)
|
119
|
+
add_vendor_data(post, options)
|
120
|
+
add_merchant_defined_fields(post, options)
|
121
|
+
|
122
|
+
commit('add_customer', post)
|
123
|
+
end
|
124
|
+
|
125
|
+
def verify_credentials
|
126
|
+
response = void('0')
|
127
|
+
response.message != 'Authentication Failed'
|
128
|
+
end
|
129
|
+
|
130
|
+
def supports_scrubbing?
|
131
|
+
true
|
132
|
+
end
|
133
|
+
|
134
|
+
def scrub(transcript)
|
135
|
+
transcript.
|
136
|
+
gsub(%r((password=)[^&\n]*), '\1[FILTERED]').
|
137
|
+
gsub(%r((security_key=)[^&\n]*), '\1[FILTERED]').
|
138
|
+
gsub(%r((ccnumber=)\d+), '\1[FILTERED]').
|
139
|
+
gsub(%r((cvv=)\d+), '\1[FILTERED]').
|
140
|
+
gsub(%r((checkaba=)\d+), '\1[FILTERED]').
|
141
|
+
gsub(%r((checkaccount=)\d+), '\1[FILTERED]').
|
142
|
+
gsub(%r((cryptogram=)[^&]+(&?)), '\1[FILTERED]\2')
|
143
|
+
end
|
144
|
+
|
145
|
+
def supports_network_tokenization?
|
146
|
+
true
|
147
|
+
end
|
148
|
+
|
149
|
+
private
|
150
|
+
|
151
|
+
def add_level3_fields(post, options)
|
152
|
+
add_fields_to_post_if_present(post, options, %i[tax shipping ponumber])
|
153
|
+
end
|
154
|
+
|
155
|
+
def add_invoice(post, money, options)
|
156
|
+
post[:amount] = amount(money)
|
157
|
+
post[:orderid] = options[:order_id]
|
158
|
+
post[:orderdescription] = options[:description]
|
159
|
+
post[:currency] = options[:currency] || currency(money)
|
160
|
+
post[:billing_method] = 'recurring' if options[:recurring]
|
161
|
+
if (dup_seconds = (options[:dup_seconds] || self.class.duplicate_window))
|
162
|
+
post[:dup_seconds] = dup_seconds
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
def add_payment_method(post, payment_method, options)
|
167
|
+
if payment_method.is_a?(String)
|
168
|
+
customer_vault_id, = split_authorization(payment_method)
|
169
|
+
post[:customer_vault_id] = customer_vault_id
|
170
|
+
elsif payment_method.is_a?(NetworkTokenizationCreditCard)
|
171
|
+
post[:ccnumber] = payment_method.number
|
172
|
+
post[:ccexp] = exp_date(payment_method)
|
173
|
+
post[:token_cryptogram] = payment_method.payment_cryptogram
|
174
|
+
elsif card_brand(payment_method) == 'check'
|
175
|
+
post[:payment] = 'check'
|
176
|
+
post[:firstname] = payment_method.first_name
|
177
|
+
post[:lastname] = payment_method.last_name
|
178
|
+
post[:checkname] = payment_method.name
|
179
|
+
post[:checkaba] = payment_method.routing_number
|
180
|
+
post[:checkaccount] = payment_method.account_number
|
181
|
+
post[:account_holder_type] = payment_method.account_holder_type
|
182
|
+
post[:account_type] = payment_method.account_type
|
183
|
+
post[:sec_code] = options[:sec_code] || 'WEB'
|
184
|
+
else
|
185
|
+
post[:payment] = 'creditcard'
|
186
|
+
post[:firstname] = payment_method.first_name
|
187
|
+
post[:lastname] = payment_method.last_name
|
188
|
+
post[:ccnumber] = payment_method.number
|
189
|
+
post[:cvv] = payment_method.verification_value unless empty?(payment_method.verification_value)
|
190
|
+
post[:ccexp] = exp_date(payment_method)
|
191
|
+
end
|
192
|
+
end
|
193
|
+
|
194
|
+
def add_stored_credential(post, options)
|
195
|
+
return unless (stored_credential = options[:stored_credential])
|
196
|
+
|
197
|
+
if stored_credential[:initiator] == 'cardholder'
|
198
|
+
post[:initiated_by] = 'customer'
|
199
|
+
else
|
200
|
+
post[:initiated_by] = 'merchant'
|
201
|
+
end
|
202
|
+
|
203
|
+
# :reason_type, when provided, overrides anything previously set in
|
204
|
+
# post[:billing_method] (see `add_invoice` and the :recurring) option
|
205
|
+
case stored_credential[:reason_type]
|
206
|
+
when 'recurring'
|
207
|
+
post[:billing_method] = 'recurring'
|
208
|
+
when 'installment'
|
209
|
+
post[:billing_method] = 'installment'
|
210
|
+
when 'unscheduled'
|
211
|
+
post.delete(:billing_method)
|
212
|
+
end
|
213
|
+
|
214
|
+
if stored_credential[:initial_transaction]
|
215
|
+
post[:stored_credential_indicator] = 'stored'
|
216
|
+
else
|
217
|
+
post[:stored_credential_indicator] = 'used'
|
218
|
+
# should only send :initial_transaction_id if it is a MIT
|
219
|
+
post[:initial_transaction_id] = stored_credential[:network_transaction_id] if post[:initiated_by] == 'merchant'
|
220
|
+
end
|
221
|
+
end
|
222
|
+
|
223
|
+
def add_customer_data(post, options)
|
224
|
+
post[:email] = options[:email]
|
225
|
+
post[:ipaddress] = options[:ip]
|
226
|
+
|
227
|
+
if (billing_address = options[:billing_address] || options[:address])
|
228
|
+
post[:company] = billing_address[:company]
|
229
|
+
post[:address1] = billing_address[:address1]
|
230
|
+
post[:address2] = billing_address[:address2]
|
231
|
+
post[:city] = billing_address[:city]
|
232
|
+
post[:state] = billing_address[:state]
|
233
|
+
post[:country] = billing_address[:country]
|
234
|
+
post[:zip] = billing_address[:zip]
|
235
|
+
post[:phone] = billing_address[:phone]
|
236
|
+
end
|
237
|
+
|
238
|
+
if (shipping_address = options[:shipping_address])
|
239
|
+
post[:shipping_company] = shipping_address[:company]
|
240
|
+
post[:shipping_address1] = shipping_address[:address1]
|
241
|
+
post[:shipping_address2] = shipping_address[:address2]
|
242
|
+
post[:shipping_city] = shipping_address[:city]
|
243
|
+
post[:shipping_state] = shipping_address[:state]
|
244
|
+
post[:shipping_country] = shipping_address[:country]
|
245
|
+
post[:shipping_zip] = shipping_address[:zip]
|
246
|
+
post[:shipping_phone] = shipping_address[:phone]
|
247
|
+
end
|
248
|
+
|
249
|
+
if (descriptor = options[:descriptors])
|
250
|
+
post[:descriptor] = options[:descriptor]
|
251
|
+
post[:descriptor_phone] = descriptor[:descriptor_phone]
|
252
|
+
post[:descriptor_address] = descriptor[:descriptor_address]
|
253
|
+
post[:descriptor_city] = descriptor[:descriptor_city]
|
254
|
+
post[:descriptor_state] = descriptor[:descriptor_state]
|
255
|
+
post[:descriptor_postal] = descriptor[:descriptor_postal]
|
256
|
+
post[:descriptor_country] = descriptor[:descriptor_country]
|
257
|
+
post[:descriptor_mcc] = descriptor[:descriptor_mcc]
|
258
|
+
post[:descriptor_merchant_id] = descriptor[:descriptor_merchant_id]
|
259
|
+
post[:descriptor_url] = descriptor[:descriptor_url]
|
260
|
+
end
|
261
|
+
end
|
262
|
+
|
263
|
+
def add_vendor_data(post, options)
|
264
|
+
post[:vendor_id] = options[:vendor_id] if options[:vendor_id]
|
265
|
+
post[:processor_id] = options[:processor_id] if options[:processor_id]
|
266
|
+
end
|
267
|
+
|
268
|
+
def add_merchant_defined_fields(post, options)
|
269
|
+
(1..20).each do |each|
|
270
|
+
key = "merchant_defined_field_#{each}".to_sym
|
271
|
+
post[key] = options[key] if options[key]
|
272
|
+
end
|
273
|
+
end
|
274
|
+
|
275
|
+
def add_three_d_secure(post, options)
|
276
|
+
three_d_secure = options[:three_d_secure]
|
277
|
+
return unless three_d_secure
|
278
|
+
|
279
|
+
post[:cardholder_auth] = cardholder_auth(three_d_secure[:authentication_response_status])
|
280
|
+
post[:cavv] = three_d_secure[:cavv]
|
281
|
+
post[:xid] = three_d_secure[:xid]
|
282
|
+
post[:three_ds_version] = three_d_secure[:version]
|
283
|
+
post[:directory_server_id] = three_d_secure[:ds_transaction_id]
|
284
|
+
end
|
285
|
+
|
286
|
+
def cardholder_auth(trans_status)
|
287
|
+
return nil if trans_status.nil?
|
288
|
+
|
289
|
+
trans_status == 'Y' ? 'verified' : 'attempted'
|
290
|
+
end
|
291
|
+
|
292
|
+
def add_reference(post, authorization)
|
293
|
+
transaction_id, = split_authorization(authorization)
|
294
|
+
post[:transactionid] = transaction_id
|
295
|
+
end
|
296
|
+
|
297
|
+
def add_payment_type(post, authorization)
|
298
|
+
_, payment_type = split_authorization(authorization)
|
299
|
+
post[:payment] = payment_type if payment_type
|
300
|
+
end
|
301
|
+
|
302
|
+
def exp_date(payment_method)
|
303
|
+
"#{format(payment_method.month, :two_digits)}#{format(payment_method.year, :two_digits)}"
|
304
|
+
end
|
305
|
+
|
306
|
+
def commit(action, params)
|
307
|
+
params[action == 'add_customer' ? :customer_vault : :type] = action
|
308
|
+
params[:username] = @options[:login] unless @options[:login].nil?
|
309
|
+
params[:password] = @options[:password] unless @options[:password].nil?
|
310
|
+
params[:security_key] = @options[:security_key] unless @options[:security_key].nil?
|
311
|
+
raw_response = ssl_post(url, post_data(action, params), headers)
|
312
|
+
response = parse(raw_response)
|
313
|
+
succeeded = success_from(response)
|
314
|
+
|
315
|
+
Response.new(
|
316
|
+
succeeded,
|
317
|
+
message_from(succeeded, response),
|
318
|
+
response,
|
319
|
+
error_code: error_code_from(succeeded, response),
|
320
|
+
authorization: authorization_from(response, params[:payment], action),
|
321
|
+
avs_result: AVSResult.new(code: response[:avsresponse]),
|
322
|
+
cvv_result: CVVResult.new(response[:cvvresponse]),
|
323
|
+
test: test?,
|
324
|
+
response_type: response_type(response[:response_code]&.to_i),
|
325
|
+
response_http_code: @response_http_code,
|
326
|
+
request_endpoint: url,
|
327
|
+
request_method: :post,
|
328
|
+
request_body: params,
|
329
|
+
auth_code: response[:authcode]
|
330
|
+
)
|
331
|
+
end
|
332
|
+
|
333
|
+
def authorization_from(response, payment_type, action)
|
334
|
+
authorization = (action == 'add_customer' ? response[:customer_vault_id] : response[:transactionid])
|
335
|
+
[authorization, payment_type].join('#')
|
336
|
+
end
|
337
|
+
|
338
|
+
def split_authorization(authorization)
|
339
|
+
authorization.split('#')
|
340
|
+
end
|
341
|
+
|
342
|
+
def headers
|
343
|
+
headers = { 'Content-Type' => 'application/x-www-form-urlencoded;charset=UTF-8' }
|
344
|
+
headers
|
345
|
+
end
|
346
|
+
|
347
|
+
def post_data(action, params)
|
348
|
+
params.map { |k, v| "#{k}=#{CGI.escape(v.to_s)}" }.join('&')
|
349
|
+
end
|
350
|
+
|
351
|
+
def url
|
352
|
+
test? ? test_url : live_url
|
353
|
+
end
|
354
|
+
|
355
|
+
def parse(body)
|
356
|
+
Hash[CGI::parse(body).map { |k, v| [k.intern, v.first] }]
|
357
|
+
end
|
358
|
+
|
359
|
+
def success_from(response)
|
360
|
+
response[:response] == '1'
|
361
|
+
end
|
362
|
+
|
363
|
+
def message_from(succeeded, response)
|
364
|
+
if succeeded
|
365
|
+
'Succeeded'
|
366
|
+
else
|
367
|
+
response[:responsetext]
|
368
|
+
end
|
369
|
+
end
|
370
|
+
|
371
|
+
def error_code_from(succeeded, response)
|
372
|
+
return response[:response_code].to_s unless succeeded
|
373
|
+
end
|
374
|
+
|
375
|
+
def response_type(code)
|
376
|
+
if code == SUCCESS_CODE
|
377
|
+
0
|
378
|
+
elsif SOFT_DECLINE_CODES.include?(code)
|
379
|
+
1
|
380
|
+
else
|
381
|
+
2
|
382
|
+
end
|
383
|
+
end
|
384
|
+
|
385
|
+
def handle_response(response)
|
386
|
+
@response_http_code = response.code.to_i
|
387
|
+
case @response_http_code
|
388
|
+
when 200...300
|
389
|
+
response.body
|
390
|
+
else
|
391
|
+
raise ResponseError.new(response)
|
392
|
+
end
|
393
|
+
end
|
394
|
+
end
|
395
|
+
end
|
396
|
+
end
|