activemerchant 1.45.0 → 1.126.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG +2167 -2
- data/CONTRIBUTORS +57 -0
- data/README.md +62 -41
- data/lib/active_merchant/billing/avs_result.rb +25 -28
- data/lib/active_merchant/billing/base.rb +11 -35
- data/lib/active_merchant/billing/check.rb +28 -24
- data/lib/active_merchant/billing/compatibility.rb +10 -12
- data/lib/active_merchant/billing/credit_card.rb +141 -69
- data/lib/active_merchant/billing/credit_card_formatting.rb +4 -4
- data/lib/active_merchant/billing/credit_card_methods.rb +348 -52
- data/lib/active_merchant/billing/cvv_result.rb +0 -1
- data/lib/active_merchant/billing/gateway.rb +125 -61
- data/lib/active_merchant/billing/gateways/adyen.rb +633 -127
- data/lib/active_merchant/billing/gateways/airwallex.rb +341 -0
- data/lib/active_merchant/billing/gateways/allied_wallet.rb +205 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +883 -195
- data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +31 -24
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +104 -103
- data/lib/active_merchant/billing/gateways/axcessms.rb +179 -0
- data/lib/active_merchant/billing/gateways/balanced.rb +72 -65
- data/lib/active_merchant/billing/gateways/bambora_apac.rb +222 -0
- data/lib/active_merchant/billing/gateways/bank_frick.rb +16 -16
- data/lib/active_merchant/billing/gateways/banwire.rb +24 -13
- data/lib/active_merchant/billing/gateways/barclaycard_smartpay.rb +397 -0
- data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +7 -7
- data/lib/active_merchant/billing/gateways/be2bill.rb +7 -7
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +143 -62
- data/lib/active_merchant/billing/gateways/beanstream.rb +45 -13
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +13 -10
- data/lib/active_merchant/billing/gateways/blue_pay.rb +549 -506
- data/lib/active_merchant/billing/gateways/blue_snap.rb +623 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +82 -36
- data/lib/active_merchant/billing/gateways/borgun.rb +61 -40
- data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
- data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +21 -2
- data/lib/active_merchant/billing/gateways/braintree/token_nonce.rb +113 -0
- data/lib/active_merchant/billing/gateways/braintree.rb +3 -3
- data/lib/active_merchant/billing/gateways/braintree_blue.rb +592 -203
- data/lib/active_merchant/billing/gateways/braintree_orange.rb +3 -4
- data/lib/active_merchant/billing/gateways/bridge_pay.rb +116 -61
- data/lib/active_merchant/billing/gateways/cams.rb +230 -0
- data/lib/active_merchant/billing/gateways/card_connect.rb +320 -0
- data/lib/active_merchant/billing/gateways/card_save.rb +7 -9
- data/lib/active_merchant/billing/gateways/card_stream.rb +248 -97
- data/lib/active_merchant/billing/gateways/cardknox.rb +327 -0
- data/lib/active_merchant/billing/gateways/cardprocess.rb +256 -0
- data/lib/active_merchant/billing/gateways/cashnet.rb +70 -26
- data/lib/active_merchant/billing/gateways/cc5.rb +14 -17
- data/lib/active_merchant/billing/gateways/cecabank.rb +73 -53
- data/lib/active_merchant/billing/gateways/cenpos.rb +328 -0
- data/lib/active_merchant/billing/gateways/checkout.rb +32 -33
- data/lib/active_merchant/billing/gateways/checkout_v2.rb +340 -0
- data/lib/active_merchant/billing/gateways/citrus_pay.rb +21 -0
- data/lib/active_merchant/billing/gateways/clearhaus.rb +219 -0
- data/lib/active_merchant/billing/gateways/commercegate.rb +11 -12
- data/lib/active_merchant/billing/gateways/conekta.rb +55 -34
- data/lib/active_merchant/billing/gateways/creditcall.rb +272 -0
- data/lib/active_merchant/billing/gateways/credorax.rb +506 -0
- data/lib/active_merchant/billing/gateways/ct_payment.rb +269 -0
- data/lib/active_merchant/billing/gateways/culqi.rb +279 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +637 -221
- data/lib/active_merchant/billing/gateways/d_local.rb +303 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +57 -355
- data/lib/active_merchant/billing/gateways/decidir.rb +347 -0
- data/lib/active_merchant/billing/gateways/decidir_plus.rb +344 -0
- data/lib/active_merchant/billing/gateways/dibs.rb +199 -0
- data/lib/active_merchant/billing/gateways/digitzs.rb +295 -0
- data/lib/active_merchant/billing/gateways/ebanx.rb +334 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +46 -50
- data/lib/active_merchant/billing/gateways/elavon.rb +377 -250
- data/lib/active_merchant/billing/gateways/element.rb +386 -0
- data/lib/active_merchant/billing/gateways/epay.rb +92 -71
- data/lib/active_merchant/billing/gateways/evo_ca.rb +13 -14
- data/lib/active_merchant/billing/gateways/eway.rb +85 -73
- data/lib/active_merchant/billing/gateways/eway_managed.rb +85 -87
- data/lib/active_merchant/billing/gateways/eway_rapid.rb +134 -80
- data/lib/active_merchant/billing/gateways/exact.rb +37 -36
- data/lib/active_merchant/billing/gateways/ezic.rb +195 -0
- data/lib/active_merchant/billing/gateways/fat_zebra.rb +124 -74
- data/lib/active_merchant/billing/gateways/federated_canada.rb +11 -13
- data/lib/active_merchant/billing/gateways/finansbank.rb +4 -5
- data/lib/active_merchant/billing/gateways/first_giving.rb +23 -23
- data/lib/active_merchant/billing/gateways/first_pay.rb +45 -23
- data/lib/active_merchant/billing/gateways/firstdata_e4.rb +184 -87
- data/lib/active_merchant/billing/gateways/firstdata_e4_v27.rb +505 -0
- data/lib/active_merchant/billing/gateways/flo2cash.rb +215 -0
- data/lib/active_merchant/billing/gateways/flo2cash_simple.rb +20 -0
- data/lib/active_merchant/billing/gateways/forte.rb +286 -0
- data/lib/active_merchant/billing/gateways/garanti.rb +31 -32
- data/lib/active_merchant/billing/gateways/global_collect.rb +507 -0
- data/lib/active_merchant/billing/gateways/global_transport.rb +25 -15
- data/lib/active_merchant/billing/gateways/hdfc.rb +55 -57
- data/lib/active_merchant/billing/gateways/hps.rb +252 -68
- data/lib/active_merchant/billing/gateways/iats_payments.rb +99 -38
- data/lib/active_merchant/billing/gateways/in_context_paypal_express.rb +15 -0
- data/lib/active_merchant/billing/gateways/inspire.rb +48 -48
- data/lib/active_merchant/billing/gateways/instapay.rb +10 -14
- data/lib/active_merchant/billing/gateways/ipg.rb +415 -0
- data/lib/active_merchant/billing/gateways/ipp.rb +176 -0
- data/lib/active_merchant/billing/gateways/iridium.rb +254 -244
- data/lib/active_merchant/billing/gateways/itransact.rb +14 -14
- data/lib/active_merchant/billing/gateways/iveri.rb +254 -0
- data/lib/active_merchant/billing/gateways/ixopay.rb +320 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +200 -80
- data/lib/active_merchant/billing/gateways/jetpay_v2.rb +432 -0
- data/lib/active_merchant/billing/gateways/komoju.rb +115 -0
- data/lib/active_merchant/billing/gateways/kushki.rb +277 -0
- data/lib/active_merchant/billing/gateways/latitude19.rb +412 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +95 -85
- data/lib/active_merchant/billing/gateways/litle.rb +371 -94
- data/lib/active_merchant/billing/gateways/mastercard.rb +293 -0
- data/lib/active_merchant/billing/gateways/maxipago.rb +146 -123
- data/lib/active_merchant/billing/gateways/mercado_pago.rb +331 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +47 -23
- data/lib/active_merchant/billing/gateways/merchant_one.rb +16 -20
- data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +54 -60
- data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +60 -44
- data/lib/active_merchant/billing/gateways/merchant_warrior.rb +76 -23
- data/lib/active_merchant/billing/gateways/mercury.rb +73 -54
- data/lib/active_merchant/billing/gateways/metrics_global.rb +33 -43
- data/lib/active_merchant/billing/gateways/micropayment.rb +182 -0
- data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +7 -7
- data/lib/active_merchant/billing/gateways/migs.rb +101 -37
- data/lib/active_merchant/billing/gateways/mit.rb +260 -0
- data/lib/active_merchant/billing/gateways/modern_payments.rb +3 -3
- data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +30 -34
- data/lib/active_merchant/billing/gateways/moka.rb +290 -0
- data/lib/active_merchant/billing/gateways/monei.rb +422 -0
- data/lib/active_merchant/billing/gateways/moneris.rb +236 -72
- data/lib/active_merchant/billing/gateways/money_movers.rb +11 -13
- data/lib/active_merchant/billing/gateways/mundipagg.rb +363 -0
- data/lib/active_merchant/billing/gateways/nab_transact.rb +87 -68
- data/lib/active_merchant/billing/gateways/ncr_secure_pay.rb +163 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +12 -12
- data/lib/active_merchant/billing/gateways/netaxept.rb +33 -34
- data/lib/active_merchant/billing/gateways/netbanx.rb +376 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +82 -43
- data/lib/active_merchant/billing/gateways/netpay.rb +10 -10
- data/lib/active_merchant/billing/gateways/network_merchants.rb +7 -11
- data/lib/active_merchant/billing/gateways/nmi.rb +279 -174
- data/lib/active_merchant/billing/gateways/ogone.rb +96 -50
- data/lib/active_merchant/billing/gateways/omise.rb +323 -0
- data/lib/active_merchant/billing/gateways/openpay.rb +58 -23
- data/lib/active_merchant/billing/gateways/opp.rb +394 -0
- data/lib/active_merchant/billing/gateways/optimal_payment.rb +87 -69
- data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +5 -7
- data/lib/active_merchant/billing/gateways/orbital.rb +771 -328
- data/lib/active_merchant/billing/gateways/pac_net_raven.rb +31 -32
- data/lib/active_merchant/billing/gateways/pagarme.rb +239 -0
- data/lib/active_merchant/billing/gateways/pago_facil.rb +12 -14
- data/lib/active_merchant/billing/gateways/pay_arc.rb +392 -0
- data/lib/active_merchant/billing/gateways/pay_conex.rb +245 -0
- data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +84 -68
- data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +37 -37
- data/lib/active_merchant/billing/gateways/pay_junction_v2.rb +206 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +15 -17
- data/lib/active_merchant/billing/gateways/pay_trace.rb +404 -0
- data/lib/active_merchant/billing/gateways/paybox_direct.rb +85 -49
- data/lib/active_merchant/billing/gateways/payeezy.rb +458 -0
- data/lib/active_merchant/billing/gateways/payex.rb +39 -42
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +67 -41
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +11 -8
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +3 -3
- data/lib/active_merchant/billing/gateways/payflow.rb +215 -46
- data/lib/active_merchant/billing/gateways/payflow_express.rb +64 -68
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +2 -3
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +5 -6
- data/lib/active_merchant/billing/gateways/payment_express.rb +78 -58
- data/lib/active_merchant/billing/gateways/paymentez.rb +353 -0
- data/lib/active_merchant/billing/gateways/paymill.rb +163 -75
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +55 -7
- data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +1 -1
- data/lib/active_merchant/billing/gateways/paypal.rb +37 -18
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +2 -2
- data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +5 -5
- data/lib/active_merchant/billing/gateways/paypal_express.rb +12 -6
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +3 -3
- data/lib/active_merchant/billing/gateways/paysafe.rb +412 -0
- data/lib/active_merchant/billing/gateways/payscout.rb +10 -13
- data/lib/active_merchant/billing/gateways/paystation.rb +96 -91
- data/lib/active_merchant/billing/gateways/payu_in.rb +249 -0
- data/lib/active_merchant/billing/gateways/payu_latam.rb +479 -0
- data/lib/active_merchant/billing/gateways/payway.rb +27 -27
- data/lib/active_merchant/billing/gateways/payway_dot_com.rb +253 -0
- data/lib/active_merchant/billing/gateways/pin.rb +113 -37
- data/lib/active_merchant/billing/gateways/plugnpay.rb +82 -82
- data/lib/active_merchant/billing/gateways/priority.rb +369 -0
- data/lib/active_merchant/billing/gateways/pro_pay.rb +325 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +55 -44
- data/lib/active_merchant/billing/gateways/psl_card.rb +32 -40
- data/lib/active_merchant/billing/gateways/qbms.rb +86 -76
- data/lib/active_merchant/billing/gateways/quantum.rb +21 -23
- data/lib/active_merchant/billing/gateways/quickbooks.rb +377 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_common.rb +184 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v10.rb +297 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v4to7.rb +226 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +10 -353
- data/lib/active_merchant/billing/gateways/qvalent.rb +305 -0
- data/lib/active_merchant/billing/gateways/rapyd.rb +258 -0
- data/lib/active_merchant/billing/gateways/realex.rb +154 -52
- data/lib/active_merchant/billing/gateways/redsys.rb +488 -161
- data/lib/active_merchant/billing/gateways/s5.rb +247 -0
- data/lib/active_merchant/billing/gateways/safe_charge.rb +298 -0
- data/lib/active_merchant/billing/gateways/sage.rb +404 -133
- data/lib/active_merchant/billing/gateways/sage_pay.rb +145 -109
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +13 -15
- data/lib/active_merchant/billing/gateways/secure_net.rb +62 -54
- data/lib/active_merchant/billing/gateways/secure_pay.rb +32 -42
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +36 -27
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +14 -16
- data/lib/active_merchant/billing/gateways/securion_pay.rb +265 -0
- data/lib/active_merchant/billing/gateways/simetrik.rb +362 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +52 -54
- data/lib/active_merchant/billing/gateways/smart_ps.rb +51 -60
- data/lib/active_merchant/billing/gateways/so_easy_pay.rb +29 -29
- data/lib/active_merchant/billing/gateways/spreedly_core.rb +108 -43
- data/lib/active_merchant/billing/gateways/stripe.rb +536 -120
- data/lib/active_merchant/billing/gateways/stripe_payment_intents.rb +516 -0
- data/lib/active_merchant/billing/gateways/swipe_checkout.rb +19 -25
- data/lib/active_merchant/billing/gateways/telr.rb +273 -0
- data/lib/active_merchant/billing/gateways/tns.rb +16 -217
- data/lib/active_merchant/billing/gateways/trans_first.rb +148 -34
- data/lib/active_merchant/billing/gateways/trans_first_transaction_express.rb +612 -0
- data/lib/active_merchant/billing/gateways/transact_pro.rb +222 -0
- data/lib/active_merchant/billing/gateways/transax.rb +6 -8
- data/lib/active_merchant/billing/gateways/transnational.rb +1 -2
- data/lib/active_merchant/billing/gateways/trexle.rb +221 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +162 -89
- data/lib/active_merchant/billing/gateways/usa_epay.rb +5 -6
- data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +332 -236
- data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +185 -72
- data/lib/active_merchant/billing/gateways/vanco.rb +294 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +52 -53
- data/lib/active_merchant/billing/gateways/viaklix.rb +19 -31
- data/lib/active_merchant/billing/gateways/visanet_peru.rb +250 -0
- data/lib/active_merchant/billing/gateways/vpos.rb +220 -0
- data/lib/active_merchant/billing/gateways/webpay.rb +9 -9
- data/lib/active_merchant/billing/gateways/wepay.rb +108 -62
- data/lib/active_merchant/billing/gateways/wirecard.rb +52 -43
- data/lib/active_merchant/billing/gateways/wompi.rb +193 -0
- data/lib/active_merchant/billing/gateways/world_net.rb +345 -0
- data/lib/active_merchant/billing/gateways/worldpay.rb +725 -121
- data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +208 -0
- data/lib/active_merchant/billing/gateways/worldpay_us.rb +79 -39
- data/lib/active_merchant/billing/gateways.rb +8 -11
- data/lib/active_merchant/billing/model.rb +2 -2
- data/lib/active_merchant/billing/network_tokenization_credit_card.rb +39 -0
- data/lib/active_merchant/billing/payment_token.rb +1 -1
- data/lib/active_merchant/billing/rails.rb +1 -1
- data/lib/active_merchant/billing/response.rb +19 -13
- data/lib/active_merchant/billing/three_d_secure_eci_mapper.rb +27 -0
- data/lib/active_merchant/billing.rb +3 -0
- data/lib/active_merchant/connection.rb +196 -0
- data/lib/active_merchant/country.rb +13 -8
- data/lib/active_merchant/errors.rb +6 -0
- data/lib/active_merchant/net_http_ssl_connection.rb +11 -0
- data/lib/active_merchant/network_connection_retries.rb +78 -0
- data/lib/active_merchant/post_data.rb +26 -0
- data/lib/active_merchant/posts_data.rb +92 -0
- data/lib/active_merchant/version.rb +1 -1
- data/lib/active_merchant.rb +14 -59
- data/lib/activemerchant.rb +1 -1
- data/lib/certs/cacert.pem +3214 -0
- data/lib/support/gateway_support.rb +8 -10
- data/lib/support/outbound_hosts.rb +13 -10
- data/lib/support/ssl_verify.rb +9 -14
- data/lib/support/ssl_version.rb +86 -0
- metadata +136 -94
- checksums.yaml.gz.sig +0 -1
- data/lib/active_merchant/billing/gateways/app55.rb +0 -176
- data/lib/active_merchant/billing/gateways/barclays_epdq.rb +0 -314
- data/lib/active_merchant/billing/gateways/certo_direct.rb +0 -278
- data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +0 -246
- data/lib/active_merchant/billing/gateways/ideal/ideal_rabobank.pem +0 -13
- data/lib/active_merchant/billing/gateways/ideal/ideal_response.rb +0 -29
- data/lib/active_merchant/billing/gateways/ideal_rabobank.rb +0 -66
- data/lib/active_merchant/billing/gateways/moneris_us.rb +0 -291
- data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +0 -87
- data/lib/active_merchant/billing/gateways/sage/sage_core.rb +0 -114
- data/lib/active_merchant/billing/gateways/sage/sage_vault.rb +0 -149
- data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +0 -102
- data/lib/active_merchant/billing/gateways/vindicia.rb +0 -385
- data/lib/active_merchant/offsite_payments_shim.rb +0 -19
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -0
@@ -10,12 +10,12 @@ module ActiveMerchant #:nodoc:
|
|
10
10
|
self.live_url = self.test_url = 'https://gw1.iridiumcorp.net/'
|
11
11
|
|
12
12
|
# The countries the gateway supports merchants from as 2 digit ISO country codes
|
13
|
-
self.supported_countries = [
|
13
|
+
self.supported_countries = %w[GB ES]
|
14
14
|
self.default_currency = 'EUR'
|
15
15
|
self.money_format = :cents
|
16
16
|
|
17
17
|
# The card types supported by the payment gateway
|
18
|
-
self.supported_cardtypes = [
|
18
|
+
self.supported_cardtypes = %i[visa master american_express discover maestro jcb diners_club]
|
19
19
|
|
20
20
|
# The homepage URL of the gateway
|
21
21
|
self.homepage_url = 'http://www.iridiumcorp.co.uk/'
|
@@ -24,202 +24,202 @@ module ActiveMerchant #:nodoc:
|
|
24
24
|
self.display_name = 'Iridium'
|
25
25
|
|
26
26
|
CURRENCY_CODES = {
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
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
207
|
}
|
208
208
|
|
209
209
|
AVS_CODE = {
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
210
|
+
'PASSED' => 'Y',
|
211
|
+
'FAILED' => 'N',
|
212
|
+
'PARTIAL' => 'X',
|
213
|
+
'NOT_CHECKED' => 'X',
|
214
|
+
'UNKNOWN' => 'X'
|
215
215
|
}
|
216
216
|
|
217
217
|
CVV_CODE = {
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
218
|
+
'PASSED' => 'M',
|
219
|
+
'FAILED' => 'N',
|
220
|
+
'PARTIAL' => 'I',
|
221
|
+
'NOT_CHECKED' => 'P',
|
222
|
+
'UNKNOWN' => 'U'
|
223
223
|
}
|
224
224
|
|
225
225
|
def initialize(options = {})
|
@@ -251,23 +251,34 @@ module ActiveMerchant #:nodoc:
|
|
251
251
|
commit(build_reference_request('COLLECTION', money, authorization, options), options)
|
252
252
|
end
|
253
253
|
|
254
|
-
def credit(money, authorization, options={})
|
254
|
+
def credit(money, authorization, options = {})
|
255
255
|
ActiveMerchant.deprecated CREDIT_DEPRECATION_MESSAGE
|
256
256
|
refund(money, authorization, options)
|
257
257
|
end
|
258
258
|
|
259
|
-
def refund(money, authorization, options={})
|
259
|
+
def refund(money, authorization, options = {})
|
260
260
|
commit(build_reference_request('REFUND', money, authorization, options), options)
|
261
261
|
end
|
262
262
|
|
263
|
-
def void(authorization, options={})
|
263
|
+
def void(authorization, options = {})
|
264
264
|
commit(build_reference_request('VOID', nil, authorization, options), options)
|
265
265
|
end
|
266
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
|
+
|
267
278
|
private
|
268
279
|
|
269
280
|
def build_purchase_request(type, money, creditcard, options)
|
270
|
-
options
|
281
|
+
options[:action] = 'CardDetailsTransaction'
|
271
282
|
build_request(options) do |xml|
|
272
283
|
add_purchase_data(xml, type, money, options)
|
273
284
|
add_creditcard(xml, creditcard)
|
@@ -276,16 +287,17 @@ module ActiveMerchant #:nodoc:
|
|
276
287
|
end
|
277
288
|
|
278
289
|
def build_reference_request(type, money, authorization, options)
|
279
|
-
options
|
280
|
-
order_id, cross_reference,
|
290
|
+
options[:action] = 'CrossReferenceTransaction'
|
291
|
+
order_id, cross_reference, = authorization.split(';')
|
281
292
|
build_request(options) do |xml|
|
282
293
|
if money
|
283
|
-
|
294
|
+
currency = options[:currency] || currency(money)
|
295
|
+
details = { 'CurrencyCode' => currency_code(currency), 'Amount' => localized_amount(money, currency) }
|
284
296
|
else
|
285
|
-
details = {'CurrencyCode' => currency_code(default_currency), 'Amount' => '0'}
|
297
|
+
details = { 'CurrencyCode' => currency_code(default_currency), 'Amount' => '0' }
|
286
298
|
end
|
287
299
|
xml.tag! 'TransactionDetails', details do
|
288
|
-
xml.tag! 'MessageDetails', {'TransactionType' => type, 'CrossReference' => cross_reference}
|
300
|
+
xml.tag! 'MessageDetails', { 'TransactionType' => type, 'CrossReference' => cross_reference }
|
289
301
|
xml.tag! 'OrderID', (options[:order_id] || order_id)
|
290
302
|
end
|
291
303
|
end
|
@@ -293,13 +305,13 @@ module ActiveMerchant #:nodoc:
|
|
293
305
|
|
294
306
|
def build_request(options)
|
295
307
|
requires!(options, :action)
|
296
|
-
xml = Builder::XmlMarkup.new :
|
297
|
-
xml.instruct!(:xml, :
|
308
|
+
xml = Builder::XmlMarkup.new indent: 2
|
309
|
+
xml.instruct!(:xml, version: '1.0', encoding: 'utf-8')
|
298
310
|
xml.tag! 'soap:Envelope', { 'xmlns:soap' => 'http://schemas.xmlsoap.org/soap/envelope/',
|
299
311
|
'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance',
|
300
|
-
'xmlns:xsd' => 'http://www.w3.org/2001/XMLSchema'} do
|
312
|
+
'xmlns:xsd' => 'http://www.w3.org/2001/XMLSchema' } do
|
301
313
|
xml.tag! 'soap:Body' do
|
302
|
-
xml.tag! options[:action], {'xmlns' =>
|
314
|
+
xml.tag! options[:action], { 'xmlns' => 'https://www.thepaymentgateway.net/' } do
|
303
315
|
xml.tag! 'PaymentMessage' do
|
304
316
|
add_merchant_data(xml, options)
|
305
317
|
yield(xml)
|
@@ -316,9 +328,10 @@ module ActiveMerchant #:nodoc:
|
|
316
328
|
end
|
317
329
|
|
318
330
|
def add_purchase_data(xml, type, money, options)
|
331
|
+
currency = options[:currency] || currency(money)
|
319
332
|
requires!(options, :order_id)
|
320
|
-
xml.tag! 'TransactionDetails', {'Amount' =>
|
321
|
-
xml.tag! 'MessageDetails', {'TransactionType' => type}
|
333
|
+
xml.tag! 'TransactionDetails', { 'Amount' => localized_amount(money, currency), 'CurrencyCode' => currency_code(currency) } do
|
334
|
+
xml.tag! 'MessageDetails', { 'TransactionType' => type }
|
322
335
|
xml.tag! 'OrderID', options[:order_id]
|
323
336
|
xml.tag! 'TransactionControl' do
|
324
337
|
xml.tag! 'ThreeDSecureOverridePolicy', 'FALSE'
|
@@ -331,9 +344,7 @@ module ActiveMerchant #:nodoc:
|
|
331
344
|
def add_customerdetails(xml, creditcard, address, options, shipTo = false)
|
332
345
|
xml.tag! 'CustomerDetails' do
|
333
346
|
if address
|
334
|
-
unless address[:country].blank?
|
335
|
-
country_code = Country.find(address[:country]).code(:numeric)
|
336
|
-
end
|
347
|
+
country_code = Country.find(address[:country]).code(:numeric) unless address[:country].blank?
|
337
348
|
xml.tag! 'BillingAddress' do
|
338
349
|
xml.tag! 'Address1', address[:address1]
|
339
350
|
xml.tag! 'Address2', address[:address2]
|
@@ -346,7 +357,7 @@ module ActiveMerchant #:nodoc:
|
|
346
357
|
end
|
347
358
|
|
348
359
|
xml.tag! 'EmailAddress', options[:email]
|
349
|
-
xml.tag! 'CustomerIPAddress', options[:ip] ||
|
360
|
+
xml.tag! 'CustomerIPAddress', options[:ip] || '127.0.0.1'
|
350
361
|
end
|
351
362
|
end
|
352
363
|
|
@@ -355,40 +366,39 @@ module ActiveMerchant #:nodoc:
|
|
355
366
|
xml.tag! 'CardName', creditcard.name
|
356
367
|
xml.tag! 'CV2', creditcard.verification_value if creditcard.verification_value
|
357
368
|
xml.tag! 'CardNumber', creditcard.number
|
358
|
-
xml.tag! 'ExpiryDate', { 'Month' => creditcard.month.to_s.rjust(2,
|
369
|
+
xml.tag! 'ExpiryDate', { 'Month' => creditcard.month.to_s.rjust(2, '0'), 'Year' => creditcard.year.to_s[/\d\d$/] }
|
359
370
|
end
|
360
371
|
end
|
361
372
|
|
362
373
|
def add_merchant_data(xml, options)
|
363
|
-
xml.tag! 'MerchantAuthentication', {
|
374
|
+
xml.tag! 'MerchantAuthentication', { 'MerchantID' => @options[:login], 'Password' => @options[:password] }
|
364
375
|
end
|
365
376
|
|
366
377
|
def commit(request, options)
|
367
378
|
requires!(options, :action)
|
368
379
|
response = parse(ssl_post(test? ? self.test_url : self.live_url, request,
|
369
|
-
|
370
|
-
|
380
|
+
{ 'SOAPAction' => 'https://www.thepaymentgateway.net/' + options[:action],
|
381
|
+
'Content-Type' => 'text/xml; charset=utf-8' }))
|
371
382
|
|
372
|
-
success = response[:transaction_result][:status_code] ==
|
383
|
+
success = response[:transaction_result][:status_code] == '0'
|
373
384
|
message = response[:transaction_result][:message]
|
374
|
-
authorization = success ? [
|
385
|
+
authorization = success ? [options[:order_id], response[:transaction_output_data][:cross_reference], response[:transaction_output_data][:auth_code]].compact.join(';') : nil
|
375
386
|
|
376
387
|
Response.new(success, message, response,
|
377
|
-
:
|
378
|
-
:
|
379
|
-
:
|
380
|
-
:
|
381
|
-
:
|
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] ]
|
382
393
|
},
|
383
|
-
:
|
384
|
-
)
|
394
|
+
cvv_result: CVV_CODE[ response[:transaction_output_data][:cv2_check_result] ])
|
385
395
|
end
|
386
396
|
|
387
397
|
def parse(xml)
|
388
398
|
reply = {}
|
389
399
|
xml = REXML::Document.new(xml)
|
390
|
-
if (root = REXML::XPath.first(xml,
|
391
|
-
|
400
|
+
if (root = REXML::XPath.first(xml, '//CardDetailsTransactionResponse')) ||
|
401
|
+
(root = REXML::XPath.first(xml, '//CrossReferenceTransactionResponse'))
|
392
402
|
root.elements.to_a.each do |node|
|
393
403
|
case node.name
|
394
404
|
when 'Message'
|
@@ -397,7 +407,7 @@ module ActiveMerchant #:nodoc:
|
|
397
407
|
parse_element(reply, node)
|
398
408
|
end
|
399
409
|
end
|
400
|
-
elsif root = REXML::XPath.first(xml,
|
410
|
+
elsif root = REXML::XPath.first(xml, '//soap:Fault')
|
401
411
|
parse_element(reply, root)
|
402
412
|
reply[:message] = "#{reply[:faultcode]}: #{reply[:faultstring]}"
|
403
413
|
end
|
@@ -406,41 +416,41 @@ module ActiveMerchant #:nodoc:
|
|
406
416
|
|
407
417
|
def parse_element(reply, node)
|
408
418
|
case node.name
|
409
|
-
when
|
419
|
+
when 'CrossReferenceTransactionResult'
|
410
420
|
reply[:transaction_result] = {}
|
411
|
-
node.attributes.each do |a,b|
|
421
|
+
node.attributes.each do |a, b|
|
412
422
|
reply[:transaction_result][a.underscore.to_sym] = b
|
413
423
|
end
|
414
|
-
node.elements.each{|e| parse_element(reply[:transaction_result], e) } if node.has_elements?
|
424
|
+
node.elements.each { |e| parse_element(reply[:transaction_result], e) } if node.has_elements?
|
415
425
|
|
416
|
-
when
|
426
|
+
when 'CardDetailsTransactionResult'
|
417
427
|
reply[:transaction_result] = {}
|
418
|
-
node.attributes.each do |a,b|
|
428
|
+
node.attributes.each do |a, b|
|
419
429
|
reply[:transaction_result][a.underscore.to_sym] = b
|
420
430
|
end
|
421
|
-
node.elements.each{|e| parse_element(reply[:transaction_result], e) } if node.has_elements?
|
431
|
+
node.elements.each { |e| parse_element(reply[:transaction_result], e) } if node.has_elements?
|
422
432
|
|
423
|
-
when
|
433
|
+
when 'TransactionOutputData'
|
424
434
|
reply[:transaction_output_data] = {}
|
425
|
-
node.attributes.each{|a,b| reply[:transaction_output_data][a.underscore.to_sym] = b }
|
426
|
-
node.elements.each{|e| parse_element(reply[:transaction_output_data], e) } if node.has_elements?
|
427
|
-
when
|
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'
|
428
438
|
reply[:custom_variables] = {}
|
429
|
-
node.attributes.each{|a,b| reply[:custom_variables][a.underscore.to_sym] = b }
|
430
|
-
node.elements.each{|e| parse_element(reply[:custom_variables], e) } if node.has_elements?
|
431
|
-
when
|
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'
|
432
442
|
reply[:gateway_entry_points] = {}
|
433
|
-
node.attributes.each{|a,b| reply[:gateway_entry_points][a.underscore.to_sym] = b }
|
434
|
-
node.elements.each{|e| parse_element(reply[:gateway_entry_points], e) } if node.has_elements?
|
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?
|
435
445
|
else
|
436
446
|
k = node.name.underscore.to_sym
|
437
447
|
if node.has_elements?
|
438
448
|
reply[k] = {}
|
439
|
-
node.elements.each{|e| parse_element(reply[k], e) }
|
449
|
+
node.elements.each { |e| parse_element(reply[k], e) }
|
440
450
|
else
|
441
451
|
if node.has_attributes?
|
442
452
|
reply[k] = {}
|
443
|
-
node.attributes.each{|a,b| reply[k][a.underscore.to_sym] = b }
|
453
|
+
node.attributes.each { |a, b| reply[k][a.underscore.to_sym] = b }
|
444
454
|
else
|
445
455
|
reply[k] = node.text
|
446
456
|
end
|