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,467 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
# For more information on the Iridium Gateway please download the
|
4
|
+
# documentation from their Merchant Management System.
|
5
|
+
#
|
6
|
+
# The login and password are not the username and password you use to
|
7
|
+
# login to the Iridium Merchant Management System. Instead, you will
|
8
|
+
# use the API username and password you were issued separately.
|
9
|
+
class IridiumGateway < Gateway
|
10
|
+
self.live_url = self.test_url = 'https://gw1.iridiumcorp.net/'
|
11
|
+
|
12
|
+
# The countries the gateway supports merchants from as 2 digit ISO country codes
|
13
|
+
self.supported_countries = %w[GB ES]
|
14
|
+
self.default_currency = 'EUR'
|
15
|
+
self.money_format = :cents
|
16
|
+
|
17
|
+
# The card types supported by the payment gateway
|
18
|
+
self.supported_cardtypes = %i[visa master american_express discover maestro jcb diners_club]
|
19
|
+
|
20
|
+
# The homepage URL of the gateway
|
21
|
+
self.homepage_url = 'http://www.iridiumcorp.co.uk/'
|
22
|
+
|
23
|
+
# The name of the gateway
|
24
|
+
self.display_name = 'Iridium'
|
25
|
+
|
26
|
+
CURRENCY_CODES = {
|
27
|
+
'AED' => '784',
|
28
|
+
'AFN' => '971',
|
29
|
+
'ALL' => '008',
|
30
|
+
'AMD' => '051',
|
31
|
+
'ANG' => '532',
|
32
|
+
'AOA' => '973',
|
33
|
+
'ARS' => '032',
|
34
|
+
'AUD' => '036',
|
35
|
+
'AWG' => '533',
|
36
|
+
'AZN' => '944',
|
37
|
+
'BAM' => '977',
|
38
|
+
'BBD' => '052',
|
39
|
+
'BDT' => '050',
|
40
|
+
'BGN' => '975',
|
41
|
+
'BHD' => '048',
|
42
|
+
'BIF' => '108',
|
43
|
+
'BMD' => '060',
|
44
|
+
'BND' => '096',
|
45
|
+
'BOB' => '068',
|
46
|
+
'BOV' => '984',
|
47
|
+
'BRL' => '986',
|
48
|
+
'BSD' => '044',
|
49
|
+
'BTN' => '064',
|
50
|
+
'BWP' => '072',
|
51
|
+
'BYR' => '974',
|
52
|
+
'BZD' => '084',
|
53
|
+
'CAD' => '124',
|
54
|
+
'CDF' => '976',
|
55
|
+
'CHE' => '947',
|
56
|
+
'CHF' => '756',
|
57
|
+
'CHW' => '948',
|
58
|
+
'CLF' => '990',
|
59
|
+
'CLP' => '152',
|
60
|
+
'CNY' => '156',
|
61
|
+
'COP' => '170',
|
62
|
+
'COU' => '970',
|
63
|
+
'CRC' => '188',
|
64
|
+
'CUP' => '192',
|
65
|
+
'CVE' => '132',
|
66
|
+
'CYP' => '196',
|
67
|
+
'CZK' => '203',
|
68
|
+
'DJF' => '262',
|
69
|
+
'DKK' => '208',
|
70
|
+
'DOP' => '214',
|
71
|
+
'DZD' => '012',
|
72
|
+
'EEK' => '233',
|
73
|
+
'EGP' => '818',
|
74
|
+
'ERN' => '232',
|
75
|
+
'ETB' => '230',
|
76
|
+
'EUR' => '978',
|
77
|
+
'FJD' => '242',
|
78
|
+
'FKP' => '238',
|
79
|
+
'GBP' => '826',
|
80
|
+
'GEL' => '981',
|
81
|
+
'GHS' => '288',
|
82
|
+
'GIP' => '292',
|
83
|
+
'GMD' => '270',
|
84
|
+
'GNF' => '324',
|
85
|
+
'GTQ' => '320',
|
86
|
+
'GYD' => '328',
|
87
|
+
'HKD' => '344',
|
88
|
+
'HNL' => '340',
|
89
|
+
'HRK' => '191',
|
90
|
+
'HTG' => '332',
|
91
|
+
'HUF' => '348',
|
92
|
+
'IDR' => '360',
|
93
|
+
'ILS' => '376',
|
94
|
+
'INR' => '356',
|
95
|
+
'IQD' => '368',
|
96
|
+
'IRR' => '364',
|
97
|
+
'ISK' => '352',
|
98
|
+
'JMD' => '388',
|
99
|
+
'JOD' => '400',
|
100
|
+
'JPY' => '392',
|
101
|
+
'KES' => '404',
|
102
|
+
'KGS' => '417',
|
103
|
+
'KHR' => '116',
|
104
|
+
'KMF' => '174',
|
105
|
+
'KPW' => '408',
|
106
|
+
'KRW' => '410',
|
107
|
+
'KWD' => '414',
|
108
|
+
'KYD' => '136',
|
109
|
+
'KZT' => '398',
|
110
|
+
'LAK' => '418',
|
111
|
+
'LBP' => '422',
|
112
|
+
'LKR' => '144',
|
113
|
+
'LRD' => '430',
|
114
|
+
'LSL' => '426',
|
115
|
+
'LTL' => '440',
|
116
|
+
'LVL' => '428',
|
117
|
+
'LYD' => '434',
|
118
|
+
'MAD' => '504',
|
119
|
+
'MDL' => '498',
|
120
|
+
'MGA' => '969',
|
121
|
+
'MKD' => '807',
|
122
|
+
'MMK' => '104',
|
123
|
+
'MNT' => '496',
|
124
|
+
'MOP' => '446',
|
125
|
+
'MRO' => '478',
|
126
|
+
'MTL' => '470',
|
127
|
+
'MUR' => '480',
|
128
|
+
'MVR' => '462',
|
129
|
+
'MWK' => '454',
|
130
|
+
'MXN' => '484',
|
131
|
+
'MXV' => '979',
|
132
|
+
'MYR' => '458',
|
133
|
+
'MZN' => '943',
|
134
|
+
'NAD' => '516',
|
135
|
+
'NGN' => '566',
|
136
|
+
'NIO' => '558',
|
137
|
+
'NOK' => '578',
|
138
|
+
'NPR' => '524',
|
139
|
+
'NZD' => '554',
|
140
|
+
'OMR' => '512',
|
141
|
+
'PAB' => '590',
|
142
|
+
'PEN' => '604',
|
143
|
+
'PGK' => '598',
|
144
|
+
'PHP' => '608',
|
145
|
+
'PKR' => '586',
|
146
|
+
'PLN' => '985',
|
147
|
+
'PYG' => '600',
|
148
|
+
'QAR' => '634',
|
149
|
+
'ROL' => '642',
|
150
|
+
'RON' => '946',
|
151
|
+
'RSD' => '941',
|
152
|
+
'RUB' => '643',
|
153
|
+
'RWF' => '646',
|
154
|
+
'SAR' => '682',
|
155
|
+
'SBD' => '090',
|
156
|
+
'SCR' => '690',
|
157
|
+
'SDG' => '938',
|
158
|
+
'SEK' => '752',
|
159
|
+
'SGD' => '702',
|
160
|
+
'SHP' => '654',
|
161
|
+
'SKK' => '703',
|
162
|
+
'SLL' => '694',
|
163
|
+
'SOS' => '706',
|
164
|
+
'SRD' => '968',
|
165
|
+
'STD' => '678',
|
166
|
+
'SYP' => '760',
|
167
|
+
'SZL' => '748',
|
168
|
+
'THB' => '764',
|
169
|
+
'TJS' => '972',
|
170
|
+
'TMM' => '795',
|
171
|
+
'TND' => '788',
|
172
|
+
'TOP' => '776',
|
173
|
+
'TRY' => '949',
|
174
|
+
'TTD' => '780',
|
175
|
+
'TWD' => '901',
|
176
|
+
'TZS' => '834',
|
177
|
+
'UAH' => '980',
|
178
|
+
'UGX' => '800',
|
179
|
+
'USD' => '840',
|
180
|
+
'USN' => '997',
|
181
|
+
'USS' => '998',
|
182
|
+
'UYU' => '858',
|
183
|
+
'UZS' => '860',
|
184
|
+
'VEB' => '862',
|
185
|
+
'VND' => '704',
|
186
|
+
'VUV' => '548',
|
187
|
+
'WST' => '882',
|
188
|
+
'XAF' => '950',
|
189
|
+
'XAG' => '961',
|
190
|
+
'XAU' => '959',
|
191
|
+
'XBA' => '955',
|
192
|
+
'XBB' => '956',
|
193
|
+
'XBC' => '957',
|
194
|
+
'XBD' => '958',
|
195
|
+
'XCD' => '951',
|
196
|
+
'XDR' => '960',
|
197
|
+
'XOF' => '952',
|
198
|
+
'XPD' => '964',
|
199
|
+
'XPF' => '953',
|
200
|
+
'XPT' => '962',
|
201
|
+
'XTS' => '963',
|
202
|
+
'XXX' => '999',
|
203
|
+
'YER' => '886',
|
204
|
+
'ZAR' => '710',
|
205
|
+
'ZMK' => '894',
|
206
|
+
'ZWD' => '716'
|
207
|
+
}
|
208
|
+
|
209
|
+
AVS_CODE = {
|
210
|
+
'PASSED' => 'Y',
|
211
|
+
'FAILED' => 'N',
|
212
|
+
'PARTIAL' => 'X',
|
213
|
+
'NOT_CHECKED' => 'X',
|
214
|
+
'UNKNOWN' => 'X'
|
215
|
+
}
|
216
|
+
|
217
|
+
CVV_CODE = {
|
218
|
+
'PASSED' => 'M',
|
219
|
+
'FAILED' => 'N',
|
220
|
+
'PARTIAL' => 'I',
|
221
|
+
'NOT_CHECKED' => 'P',
|
222
|
+
'UNKNOWN' => 'U'
|
223
|
+
}
|
224
|
+
|
225
|
+
def initialize(options = {})
|
226
|
+
requires!(options, :login, :password)
|
227
|
+
super
|
228
|
+
end
|
229
|
+
|
230
|
+
def authorize(money, payment_source, options = {})
|
231
|
+
setup_address_hash(options)
|
232
|
+
|
233
|
+
if payment_source.respond_to?(:number)
|
234
|
+
commit(build_purchase_request('PREAUTH', money, payment_source, options), options)
|
235
|
+
else
|
236
|
+
commit(build_reference_request('PREAUTH', money, payment_source, options), options)
|
237
|
+
end
|
238
|
+
end
|
239
|
+
|
240
|
+
def purchase(money, payment_source, options = {})
|
241
|
+
setup_address_hash(options)
|
242
|
+
|
243
|
+
if payment_source.respond_to?(:number)
|
244
|
+
commit(build_purchase_request('SALE', money, payment_source, options), options)
|
245
|
+
else
|
246
|
+
commit(build_reference_request('SALE', money, payment_source, options), options)
|
247
|
+
end
|
248
|
+
end
|
249
|
+
|
250
|
+
def capture(money, authorization, options = {})
|
251
|
+
commit(build_reference_request('COLLECTION', money, authorization, options), options)
|
252
|
+
end
|
253
|
+
|
254
|
+
def credit(money, authorization, options = {})
|
255
|
+
ActiveMerchant.deprecated CREDIT_DEPRECATION_MESSAGE
|
256
|
+
refund(money, authorization, options)
|
257
|
+
end
|
258
|
+
|
259
|
+
def refund(money, authorization, options = {})
|
260
|
+
commit(build_reference_request('REFUND', money, authorization, options), options)
|
261
|
+
end
|
262
|
+
|
263
|
+
def void(authorization, options = {})
|
264
|
+
commit(build_reference_request('VOID', nil, authorization, options), options)
|
265
|
+
end
|
266
|
+
|
267
|
+
def supports_scrubbing
|
268
|
+
true
|
269
|
+
end
|
270
|
+
|
271
|
+
def scrub(transcript)
|
272
|
+
transcript.
|
273
|
+
gsub(%r((Authorization: Basic )\w+), '\1[FILTERED]').
|
274
|
+
gsub(%r((<CardNumber>)\d+(</CardNumber>)), '\1[FILTERED]\2').
|
275
|
+
gsub(%r((<CV2>)\d+(</CV2>)), '\1[FILTERED]\2')
|
276
|
+
end
|
277
|
+
|
278
|
+
private
|
279
|
+
|
280
|
+
def build_purchase_request(type, money, creditcard, options)
|
281
|
+
options[:action] = 'CardDetailsTransaction'
|
282
|
+
build_request(options) do |xml|
|
283
|
+
add_purchase_data(xml, type, money, options)
|
284
|
+
add_creditcard(xml, creditcard)
|
285
|
+
add_customerdetails(xml, creditcard, options[:billing_address], options)
|
286
|
+
end
|
287
|
+
end
|
288
|
+
|
289
|
+
def build_reference_request(type, money, authorization, options)
|
290
|
+
options[:action] = 'CrossReferenceTransaction'
|
291
|
+
order_id, cross_reference, = authorization.split(';')
|
292
|
+
build_request(options) do |xml|
|
293
|
+
if money
|
294
|
+
currency = options[:currency] || currency(money)
|
295
|
+
details = { 'CurrencyCode' => currency_code(currency), 'Amount' => localized_amount(money, currency) }
|
296
|
+
else
|
297
|
+
details = { 'CurrencyCode' => currency_code(default_currency), 'Amount' => '0' }
|
298
|
+
end
|
299
|
+
xml.tag! 'TransactionDetails', details do
|
300
|
+
xml.tag! 'MessageDetails', { 'TransactionType' => type, 'CrossReference' => cross_reference }
|
301
|
+
xml.tag! 'OrderID', (options[:order_id] || order_id)
|
302
|
+
end
|
303
|
+
end
|
304
|
+
end
|
305
|
+
|
306
|
+
def build_request(options)
|
307
|
+
requires!(options, :action)
|
308
|
+
xml = Builder::XmlMarkup.new indent: 2
|
309
|
+
xml.instruct!(:xml, version: '1.0', encoding: 'utf-8')
|
310
|
+
xml.tag! 'soap:Envelope', { 'xmlns:soap' => 'http://schemas.xmlsoap.org/soap/envelope/',
|
311
|
+
'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance',
|
312
|
+
'xmlns:xsd' => 'http://www.w3.org/2001/XMLSchema' } do
|
313
|
+
xml.tag! 'soap:Body' do
|
314
|
+
xml.tag! options[:action], { 'xmlns' => 'https://www.thepaymentgateway.net/' } do
|
315
|
+
xml.tag! 'PaymentMessage' do
|
316
|
+
add_merchant_data(xml, options)
|
317
|
+
yield(xml)
|
318
|
+
end
|
319
|
+
end
|
320
|
+
end
|
321
|
+
end
|
322
|
+
xml.target!
|
323
|
+
end
|
324
|
+
|
325
|
+
def setup_address_hash(options)
|
326
|
+
options[:billing_address] = options[:billing_address] || options[:address] || {}
|
327
|
+
options[:shipping_address] = options[:shipping_address] || {}
|
328
|
+
end
|
329
|
+
|
330
|
+
def add_purchase_data(xml, type, money, options)
|
331
|
+
currency = options[:currency] || currency(money)
|
332
|
+
requires!(options, :order_id)
|
333
|
+
xml.tag! 'TransactionDetails', { 'Amount' => localized_amount(money, currency), 'CurrencyCode' => currency_code(currency) } do
|
334
|
+
xml.tag! 'MessageDetails', { 'TransactionType' => type }
|
335
|
+
xml.tag! 'OrderID', options[:order_id]
|
336
|
+
xml.tag! 'TransactionControl' do
|
337
|
+
xml.tag! 'ThreeDSecureOverridePolicy', 'FALSE'
|
338
|
+
xml.tag! 'EchoAVSCheckResult', 'TRUE'
|
339
|
+
xml.tag! 'EchoCV2CheckResult', 'TRUE'
|
340
|
+
end
|
341
|
+
end
|
342
|
+
end
|
343
|
+
|
344
|
+
def add_customerdetails(xml, creditcard, address, options, shipTo = false)
|
345
|
+
xml.tag! 'CustomerDetails' do
|
346
|
+
if address
|
347
|
+
country_code = Country.find(address[:country]).code(:numeric) unless address[:country].blank?
|
348
|
+
xml.tag! 'BillingAddress' do
|
349
|
+
xml.tag! 'Address1', address[:address1]
|
350
|
+
xml.tag! 'Address2', address[:address2]
|
351
|
+
xml.tag! 'City', address[:city]
|
352
|
+
xml.tag! 'State', address[:state]
|
353
|
+
xml.tag! 'PostCode', address[:zip]
|
354
|
+
xml.tag! 'CountryCode', country_code if country_code
|
355
|
+
end
|
356
|
+
xml.tag! 'PhoneNumber', address[:phone]
|
357
|
+
end
|
358
|
+
|
359
|
+
xml.tag! 'EmailAddress', options[:email]
|
360
|
+
xml.tag! 'CustomerIPAddress', options[:ip] || '127.0.0.1'
|
361
|
+
end
|
362
|
+
end
|
363
|
+
|
364
|
+
def add_creditcard(xml, creditcard)
|
365
|
+
xml.tag! 'CardDetails' do
|
366
|
+
xml.tag! 'CardName', creditcard.name
|
367
|
+
xml.tag! 'CV2', creditcard.verification_value if creditcard.verification_value
|
368
|
+
xml.tag! 'CardNumber', creditcard.number
|
369
|
+
xml.tag! 'ExpiryDate', { 'Month' => creditcard.month.to_s.rjust(2, '0'), 'Year' => creditcard.year.to_s[/\d\d$/] }
|
370
|
+
end
|
371
|
+
end
|
372
|
+
|
373
|
+
def add_merchant_data(xml, options)
|
374
|
+
xml.tag! 'MerchantAuthentication', { 'MerchantID' => @options[:login], 'Password' => @options[:password] }
|
375
|
+
end
|
376
|
+
|
377
|
+
def commit(request, options)
|
378
|
+
requires!(options, :action)
|
379
|
+
response = parse(ssl_post(test? ? self.test_url : self.live_url, request,
|
380
|
+
{ 'SOAPAction' => 'https://www.thepaymentgateway.net/' + options[:action],
|
381
|
+
'Content-Type' => 'text/xml; charset=utf-8' }))
|
382
|
+
|
383
|
+
success = response[:transaction_result][:status_code] == '0'
|
384
|
+
message = response[:transaction_result][:message]
|
385
|
+
authorization = success ? [options[:order_id], response[:transaction_output_data][:cross_reference], response[:transaction_output_data][:auth_code]].compact.join(';') : nil
|
386
|
+
|
387
|
+
Response.new(success, message, response,
|
388
|
+
test: test?,
|
389
|
+
authorization: authorization,
|
390
|
+
avs_result: {
|
391
|
+
street_match: AVS_CODE[ response[:transaction_output_data][:address_numeric_check_result] ],
|
392
|
+
postal_match: AVS_CODE[ response[:transaction_output_data][:post_code_check_result] ]
|
393
|
+
},
|
394
|
+
cvv_result: CVV_CODE[ response[:transaction_output_data][:cv2_check_result] ])
|
395
|
+
end
|
396
|
+
|
397
|
+
def parse(xml)
|
398
|
+
reply = {}
|
399
|
+
xml = REXML::Document.new(xml)
|
400
|
+
if (root = REXML::XPath.first(xml, '//CardDetailsTransactionResponse')) ||
|
401
|
+
(root = REXML::XPath.first(xml, '//CrossReferenceTransactionResponse'))
|
402
|
+
root.elements.to_a.each do |node|
|
403
|
+
case node.name
|
404
|
+
when 'Message'
|
405
|
+
reply[:message] = reply(node.text)
|
406
|
+
else
|
407
|
+
parse_element(reply, node)
|
408
|
+
end
|
409
|
+
end
|
410
|
+
elsif root = REXML::XPath.first(xml, '//soap:Fault')
|
411
|
+
parse_element(reply, root)
|
412
|
+
reply[:message] = "#{reply[:faultcode]}: #{reply[:faultstring]}"
|
413
|
+
end
|
414
|
+
reply
|
415
|
+
end
|
416
|
+
|
417
|
+
def parse_element(reply, node)
|
418
|
+
case node.name
|
419
|
+
when 'CrossReferenceTransactionResult'
|
420
|
+
reply[:transaction_result] = {}
|
421
|
+
node.attributes.each do |a, b|
|
422
|
+
reply[:transaction_result][a.underscore.to_sym] = b
|
423
|
+
end
|
424
|
+
node.elements.each { |e| parse_element(reply[:transaction_result], e) } if node.has_elements?
|
425
|
+
|
426
|
+
when 'CardDetailsTransactionResult'
|
427
|
+
reply[:transaction_result] = {}
|
428
|
+
node.attributes.each do |a, b|
|
429
|
+
reply[:transaction_result][a.underscore.to_sym] = b
|
430
|
+
end
|
431
|
+
node.elements.each { |e| parse_element(reply[:transaction_result], e) } if node.has_elements?
|
432
|
+
|
433
|
+
when 'TransactionOutputData'
|
434
|
+
reply[:transaction_output_data] = {}
|
435
|
+
node.attributes.each { |a, b| reply[:transaction_output_data][a.underscore.to_sym] = b }
|
436
|
+
node.elements.each { |e| parse_element(reply[:transaction_output_data], e) } if node.has_elements?
|
437
|
+
when 'CustomVariables'
|
438
|
+
reply[:custom_variables] = {}
|
439
|
+
node.attributes.each { |a, b| reply[:custom_variables][a.underscore.to_sym] = b }
|
440
|
+
node.elements.each { |e| parse_element(reply[:custom_variables], e) } if node.has_elements?
|
441
|
+
when 'GatewayEntryPoints'
|
442
|
+
reply[:gateway_entry_points] = {}
|
443
|
+
node.attributes.each { |a, b| reply[:gateway_entry_points][a.underscore.to_sym] = b }
|
444
|
+
node.elements.each { |e| parse_element(reply[:gateway_entry_points], e) } if node.has_elements?
|
445
|
+
else
|
446
|
+
k = node.name.underscore.to_sym
|
447
|
+
if node.has_elements?
|
448
|
+
reply[k] = {}
|
449
|
+
node.elements.each { |e| parse_element(reply[k], e) }
|
450
|
+
else
|
451
|
+
if node.has_attributes?
|
452
|
+
reply[k] = {}
|
453
|
+
node.attributes.each { |a, b| reply[k][a.underscore.to_sym] = b }
|
454
|
+
else
|
455
|
+
reply[k] = node.text
|
456
|
+
end
|
457
|
+
end
|
458
|
+
end
|
459
|
+
reply
|
460
|
+
end
|
461
|
+
|
462
|
+
def currency_code(currency)
|
463
|
+
CURRENCY_CODES[currency]
|
464
|
+
end
|
465
|
+
end
|
466
|
+
end
|
467
|
+
end
|