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,420 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class IpgGateway < Gateway
|
4
|
+
self.test_url = 'https://test.ipg-online.com/ipgapi/services'
|
5
|
+
self.live_url = 'https://www5.ipg-online.com'
|
6
|
+
|
7
|
+
self.supported_countries = %w(AR)
|
8
|
+
self.default_currency = 'ARS'
|
9
|
+
self.supported_cardtypes = %i[visa master american_express discover]
|
10
|
+
|
11
|
+
self.homepage_url = 'https://www.ipg-online.com'
|
12
|
+
self.display_name = 'IPG'
|
13
|
+
|
14
|
+
CURRENCY_CODES = {
|
15
|
+
'ARS' => '032'
|
16
|
+
}
|
17
|
+
|
18
|
+
ACTION_REQUEST_ITEMS = %w(vault unstore)
|
19
|
+
|
20
|
+
def initialize(options = {})
|
21
|
+
requires!(options, :store_id, :user_id, :password, :pem, :pem_password)
|
22
|
+
@credentials = options
|
23
|
+
@hosted_data_id = nil
|
24
|
+
super
|
25
|
+
end
|
26
|
+
|
27
|
+
def purchase(money, payment, options = {})
|
28
|
+
xml = build_purchase_and_authorize_request(money, payment, options)
|
29
|
+
|
30
|
+
commit('sale', xml, options)
|
31
|
+
end
|
32
|
+
|
33
|
+
def authorize(money, payment, options = {})
|
34
|
+
xml = build_purchase_and_authorize_request(money, payment, options)
|
35
|
+
|
36
|
+
commit('preAuth', xml, options)
|
37
|
+
end
|
38
|
+
|
39
|
+
def capture(money, authorization, options = {})
|
40
|
+
xml = build_capture_and_refund_request(money, authorization, options)
|
41
|
+
|
42
|
+
commit('postAuth', xml, options)
|
43
|
+
end
|
44
|
+
|
45
|
+
def refund(money, authorization, options = {})
|
46
|
+
xml = build_capture_and_refund_request(money, authorization, options)
|
47
|
+
|
48
|
+
commit('return', xml, options)
|
49
|
+
end
|
50
|
+
|
51
|
+
def void(authorization, options = {})
|
52
|
+
xml = Builder::XmlMarkup.new(indent: 2)
|
53
|
+
add_transaction_details(xml, options.merge!({ order_id: authorization }))
|
54
|
+
|
55
|
+
commit('void', xml, options)
|
56
|
+
end
|
57
|
+
|
58
|
+
def store(credit_card, options = {})
|
59
|
+
@hosted_data_id = options[:hosted_data_id] || generate_unique_id
|
60
|
+
xml = Builder::XmlMarkup.new(indent: 2)
|
61
|
+
add_storage_item(xml, credit_card, options)
|
62
|
+
|
63
|
+
commit('vault', xml, options)
|
64
|
+
end
|
65
|
+
|
66
|
+
def unstore(hosted_data_id)
|
67
|
+
xml = Builder::XmlMarkup.new(indent: 2)
|
68
|
+
add_unstore_item(xml, hosted_data_id)
|
69
|
+
|
70
|
+
commit('unstore', xml)
|
71
|
+
end
|
72
|
+
|
73
|
+
def verify(credit_card, options = {})
|
74
|
+
options[:currency] = self.default_currency unless options[:currency] && !options[:currency].empty?
|
75
|
+
MultiResponse.run(:use_first_response) do |r|
|
76
|
+
r.process { authorize(100, credit_card, options) }
|
77
|
+
r.process(:ignore_result) { void(r.authorization, options) }
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
def supports_scrubbing?
|
82
|
+
true
|
83
|
+
end
|
84
|
+
|
85
|
+
def scrub(transcript)
|
86
|
+
transcript.
|
87
|
+
gsub(%r((Authorization: Basic )\w+), '\1[FILTERED]').
|
88
|
+
gsub(%r((<v1:CardNumber>).+(</v1:CardNumber>)), '\1[FILTERED]\2').
|
89
|
+
gsub(%r((<v1:CardCodeValue>).+(</v1:CardCodeValue>)), '\1[FILTERED]\2').
|
90
|
+
gsub(%r((<v1:StoreId>).+(</v1:StoreId>)), '\1[FILTERED]\2')
|
91
|
+
end
|
92
|
+
|
93
|
+
private
|
94
|
+
|
95
|
+
NAMESPACE_BASE_URL = 'http://ipg-online.com'
|
96
|
+
|
97
|
+
def build_purchase_and_authorize_request(money, payment, options)
|
98
|
+
xml = Builder::XmlMarkup.new(indent: 2)
|
99
|
+
|
100
|
+
add_credit_card(xml, payment, options)
|
101
|
+
add_sub_merchant(xml, options[:submerchant]) if options[:submerchant]
|
102
|
+
add_three_d_secure(xml, options[:three_d_secure]) if options[:three_d_secure]
|
103
|
+
add_stored_credentials(xml, options) if options[:stored_credential] || options[:recurring_type]
|
104
|
+
add_payment(xml, money, payment, options)
|
105
|
+
add_transaction_details(xml, options)
|
106
|
+
add_billing(xml, options[:billing]) if options[:billing]
|
107
|
+
add_shipping(xml, options[:shipping]) if options[:shipping]
|
108
|
+
xml
|
109
|
+
end
|
110
|
+
|
111
|
+
def build_capture_and_refund_request(money, authorization, options)
|
112
|
+
xml = Builder::XmlMarkup.new(indent: 2)
|
113
|
+
add_payment(xml, money, nil, options)
|
114
|
+
add_transaction_details(xml, options.merge!({ order_id: authorization }), true)
|
115
|
+
xml
|
116
|
+
end
|
117
|
+
|
118
|
+
def build_order_request(xml, action, body)
|
119
|
+
xml.tag!('ipg:IPGApiOrderRequest') do
|
120
|
+
xml.tag!('v1:Transaction') do
|
121
|
+
add_transaction_type(xml, action)
|
122
|
+
xml << body.target!
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
def build_action_request(xml, action, body)
|
128
|
+
xml.tag!('ns4:IPGApiActionRequest', ipg_action_namespaces) do
|
129
|
+
xml.tag!('ns2:Action') do
|
130
|
+
xml << body.target!
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
def build_soap_request(action, body)
|
136
|
+
xml = Builder::XmlMarkup.new(indent: 2)
|
137
|
+
xml.tag!('soapenv:Envelope', envelope_namespaces) do
|
138
|
+
xml.tag!('soapenv:Header')
|
139
|
+
xml.tag!('soapenv:Body') do
|
140
|
+
build_order_request(xml, action, body) unless ACTION_REQUEST_ITEMS.include?(action)
|
141
|
+
build_action_request(xml, action, body) if ACTION_REQUEST_ITEMS.include?(action)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
xml.target!
|
145
|
+
end
|
146
|
+
|
147
|
+
def add_stored_credentials(xml, params)
|
148
|
+
recurring_type = params[:stored_credential][:initial_transaction] ? 'FIRST' : 'REPEAT' if params[:stored_credential]
|
149
|
+
recurring_type = params[:recurring_type] if params[:recurring_type]
|
150
|
+
xml.tag!('v1:recurringType', recurring_type)
|
151
|
+
end
|
152
|
+
|
153
|
+
def add_storage_item(xml, credit_card, options)
|
154
|
+
requires!(options.merge!({ credit_card: credit_card, hosted_data_id: @hosted_data_id }), :credit_card, :hosted_data_id)
|
155
|
+
xml.tag!('ns2:StoreHostedData') do
|
156
|
+
xml.tag!('ns2:DataStorageItem') do
|
157
|
+
add_credit_card(xml, credit_card, {}, 'ns2')
|
158
|
+
add_three_d_secure(xml, options[:three_d_secure]) if options[:three_d_secure]
|
159
|
+
xml.tag!('ns2:HostedDataID', @hosted_data_id) if @hosted_data_id
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
def add_unstore_item(xml, hosted_data_id)
|
165
|
+
requires!({}.merge!({ hosted_data_id: hosted_data_id }), :hosted_data_id)
|
166
|
+
xml.tag!('ns2:StoreHostedData') do
|
167
|
+
xml.tag!('ns2:DataStorageItem') do
|
168
|
+
xml.tag!('ns2:Function', 'delete')
|
169
|
+
xml.tag!('ns2:HostedDataID', hosted_data_id)
|
170
|
+
end
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
174
|
+
def add_transaction_type(xml, type)
|
175
|
+
xml.tag!('v1:CreditCardTxType') do
|
176
|
+
xml.tag!('v1:StoreId', @credentials[:store_id])
|
177
|
+
xml.tag!('v1:Type', type)
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
def add_credit_card(xml, payment, options = {}, credit_envelope = 'v1')
|
182
|
+
if payment&.is_a?(CreditCard)
|
183
|
+
requires!(options.merge!({ card_number: payment.number, month: payment.month, year: payment.year }), :card_number, :month, :year)
|
184
|
+
|
185
|
+
xml.tag!("#{credit_envelope}:CreditCardData") do
|
186
|
+
xml.tag!('v1:CardNumber', payment.number) if payment.number
|
187
|
+
xml.tag!('v1:ExpMonth', format(payment.month, :two_digits)) if payment.month
|
188
|
+
xml.tag!('v1:ExpYear', format(payment.year, :two_digits)) if payment.year
|
189
|
+
xml.tag!('v1:CardCodeValue', payment.verification_value) if payment.verification_value
|
190
|
+
xml.tag!('v1:Brand', options[:brand]) if options[:brand]
|
191
|
+
end
|
192
|
+
end
|
193
|
+
|
194
|
+
if options[:card_function_type]
|
195
|
+
xml.tag!('v1:cardFunction') do
|
196
|
+
xml.tag!('v1:Type', options[:card_function_type])
|
197
|
+
end
|
198
|
+
end
|
199
|
+
|
200
|
+
if options[:track_data]
|
201
|
+
xml.tag!("#{credit_envelope}:CreditCardData") do
|
202
|
+
xml.tag!('v1:TrackData', options[:track_data])
|
203
|
+
end
|
204
|
+
end
|
205
|
+
end
|
206
|
+
|
207
|
+
def add_sub_merchant(xml, submerchant)
|
208
|
+
xml.tag!('v1:SubMerchant') do
|
209
|
+
xml.tag!('v1:Mcc', submerchant[:mcc]) if submerchant[:mcc]
|
210
|
+
xml.tag!('v1:LegalName', submerchant[:legal_name]) if submerchant[:legal_name]
|
211
|
+
add_address(xml, submerchant[:address]) if submerchant[:address]
|
212
|
+
add_document(xml, submerchant[:document]) if submerchant[:document]
|
213
|
+
xml.tag!('v1:MerchantID', submerchant[:merchant_id]) if submerchant[:merchant_id]
|
214
|
+
end
|
215
|
+
end
|
216
|
+
|
217
|
+
def add_address(xml, address)
|
218
|
+
xml.tag!('v1:Address') do
|
219
|
+
xml.tag!('v1:Address1', address[:address1]) if address[:address1]
|
220
|
+
xml.tag!('v1:Address2', address[:address2]) if address[:address2]
|
221
|
+
xml.tag!('v1:Zip', address[:zip]) if address[:zip]
|
222
|
+
xml.tag!('v1:City', address[:city]) if address[:city]
|
223
|
+
xml.tag!('v1:State', address[:state]) if address[:state]
|
224
|
+
xml.tag!('v1:Country', address[:country]) if address[:country]
|
225
|
+
end
|
226
|
+
end
|
227
|
+
|
228
|
+
def add_document(xml, document)
|
229
|
+
xml.tag!('v1:Document') do
|
230
|
+
xml.tag!('v1:Type', document[:type]) if document[:type]
|
231
|
+
xml.tag!('v1:Number', document[:number]) if document[:number]
|
232
|
+
end
|
233
|
+
end
|
234
|
+
|
235
|
+
def add_three_d_secure(xml, three_d_secure)
|
236
|
+
xml.tag!('v1:CreditCard3DSecure') do
|
237
|
+
xml.tag!('v1:AuthenticationValue', three_d_secure[:cavv]) if three_d_secure[:cavv]
|
238
|
+
xml.tag!('v1:XID', three_d_secure[:xid]) if three_d_secure[:xid]
|
239
|
+
xml.tag!('v1:Secure3D2TransactionStatus', three_d_secure[:directory_response_status]) if three_d_secure[:directory_response_status]
|
240
|
+
xml.tag!('v1:Secure3D2AuthenticationResponse', three_d_secure[:authentication_response_status]) if three_d_secure[:authentication_response_status]
|
241
|
+
xml.tag!('v1:Secure3DProtocolVersion', three_d_secure[:version]) if three_d_secure[:version]
|
242
|
+
xml.tag!('v1:DirectoryServerTransactionId', three_d_secure[:ds_transaction_id]) if three_d_secure[:ds_transaction_id]
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
246
|
+
def add_transaction_details(xml, options, pre_order = false)
|
247
|
+
requires!(options, :order_id) if pre_order
|
248
|
+
xml.tag!('v1:TransactionDetails') do
|
249
|
+
xml.tag!('v1:OrderId', options[:order_id]) if options[:order_id]
|
250
|
+
xml.tag!('v1:MerchantTransactionId', options[:merchant_transaction_id]) if options[:merchant_transaction_id]
|
251
|
+
xml.tag!('v1:Ip', options[:ip]) if options[:ip]
|
252
|
+
xml.tag!('v1:Tdate', options[:t_date]) if options[:t_date]
|
253
|
+
xml.tag!('v1:IpgTransactionId', options[:ipg_transaction_id]) if options[:ipg_transaction_id]
|
254
|
+
xml.tag!('v1:ReferencedMerchantTransactionId', options[:referenced_merchant_transaction_id]) if options[:referenced_merchant_transaction_id]
|
255
|
+
xml.tag!('v1:TransactionOrigin', options[:transaction_origin]) if options[:transaction_origin]
|
256
|
+
xml.tag!('v1:InvoiceNumber', options[:invoice_number]) if options[:invoice_number]
|
257
|
+
xml.tag!('v1:DynamicMerchantName', options[:dynamic_merchant_name]) if options[:dynamic_merchant_name]
|
258
|
+
xml.tag!('v1:Comments', options[:comments]) if options[:comments]
|
259
|
+
if options[:terminal_id]
|
260
|
+
xml.tag!('v1:Terminal') do
|
261
|
+
xml.tag!('v1:TerminalID', options[:terminal_id]) if options[:terminal_id]
|
262
|
+
end
|
263
|
+
end
|
264
|
+
end
|
265
|
+
end
|
266
|
+
|
267
|
+
def add_payment(xml, money, payment, options)
|
268
|
+
requires!(options.merge!({ money: money }), :currency, :money)
|
269
|
+
xml.tag!('v1:Payment') do
|
270
|
+
xml.tag!('v1:HostedDataID', payment) if payment&.is_a?(String)
|
271
|
+
xml.tag!('v1:HostedDataStoreID', options[:hosted_data_store_id]) if options[:hosted_data_store_id]
|
272
|
+
xml.tag!('v1:DeclineHostedDataDuplicates', options[:decline_hosted_data_duplicates]) if options[:decline_hosted_data_duplicates]
|
273
|
+
xml.tag!('v1:SubTotal', options[:sub_total]) if options[:sub_total]
|
274
|
+
xml.tag!('v1:ValueAddedTax', options[:value_added_tax]) if options[:value_added_tax]
|
275
|
+
xml.tag!('v1:DeliveryAmount', options[:delivery_amount]) if options[:delivery_amount]
|
276
|
+
xml.tag!('v1:ChargeTotal', money)
|
277
|
+
xml.tag!('v1:Currency', CURRENCY_CODES[options[:currency]])
|
278
|
+
xml.tag!('v1:numberOfInstallments', options[:number_of_installments]) if options[:number_of_installments]
|
279
|
+
end
|
280
|
+
end
|
281
|
+
|
282
|
+
def add_billing(xml, billing)
|
283
|
+
xml.tag!('v1:Billing') do
|
284
|
+
xml.tag!('v1:CustomerID', billing[:customer_id]) if billing[:customer_id]
|
285
|
+
xml.tag!('v1:Name', billing[:name]) if billing[:name]
|
286
|
+
xml.tag!('v1:Company', billing[:company]) if billing[:company]
|
287
|
+
xml.tag!('v1:Address1', billing[:address_1]) if billing[:address_1]
|
288
|
+
xml.tag!('v1:Address2', billing[:address_2]) if billing[:address_2]
|
289
|
+
xml.tag!('v1:City', billing[:city]) if billing[:city]
|
290
|
+
xml.tag!('v1:State', billing[:state]) if billing[:state]
|
291
|
+
xml.tag!('v1:Zip', billing[:zip]) if billing[:zip]
|
292
|
+
xml.tag!('v1:Country', billing[:country]) if billing[:country]
|
293
|
+
xml.tag!('v1:Phone', billing[:phone]) if billing[:phone]
|
294
|
+
xml.tag!('v1:Fax', billing[:fax]) if billing[:fax]
|
295
|
+
xml.tag!('v1:Email', billing[:email]) if billing[:email]
|
296
|
+
end
|
297
|
+
end
|
298
|
+
|
299
|
+
def add_shipping(xml, shipping)
|
300
|
+
xml.tag!('v1:Shipping') do
|
301
|
+
xml.tag!('v1:Type', shipping[:type]) if shipping[:type]
|
302
|
+
xml.tag!('v1:Name', shipping[:name]) if shipping[:name]
|
303
|
+
xml.tag!('v1:Address1', shipping[:address_1]) if shipping[:address_1]
|
304
|
+
xml.tag!('v1:Address2', shipping[:address_2]) if shipping[:address_2]
|
305
|
+
xml.tag!('v1:City', shipping[:city]) if shipping[:city]
|
306
|
+
xml.tag!('v1:State', shipping[:state]) if shipping[:state]
|
307
|
+
xml.tag!('v1:Zip', shipping[:zip]) if shipping[:zip]
|
308
|
+
xml.tag!('v1:Country', shipping[:country]) if shipping[:country]
|
309
|
+
end
|
310
|
+
end
|
311
|
+
|
312
|
+
def build_header
|
313
|
+
{
|
314
|
+
'Content-Type' => 'text/xml; charset=utf-8',
|
315
|
+
'Authorization' => "Basic #{encoded_credentials}"
|
316
|
+
}
|
317
|
+
end
|
318
|
+
|
319
|
+
def encoded_credentials
|
320
|
+
Base64.encode64("WS#{@credentials[:store_id]}._.#{@credentials[:user_id]}:#{@credentials[:password]}").delete("\n")
|
321
|
+
end
|
322
|
+
|
323
|
+
def envelope_namespaces
|
324
|
+
{
|
325
|
+
'xmlns:soapenv' => 'http://schemas.xmlsoap.org/soap/envelope/',
|
326
|
+
'xmlns:ipg' => "#{NAMESPACE_BASE_URL}/ipgapi/schemas/ipgapi",
|
327
|
+
'xmlns:v1' => "#{NAMESPACE_BASE_URL}/ipgapi/schemas/v1"
|
328
|
+
}
|
329
|
+
end
|
330
|
+
|
331
|
+
def ipg_order_namespaces
|
332
|
+
{
|
333
|
+
'xmlns:v1' => "#{NAMESPACE_BASE_URL}/ipgapi/schemas/v1",
|
334
|
+
'xmlns:ipgapi' => "#{NAMESPACE_BASE_URL}/ipgapi/schemas/ipgapi"
|
335
|
+
}
|
336
|
+
end
|
337
|
+
|
338
|
+
def ipg_action_namespaces
|
339
|
+
{
|
340
|
+
'xmlns:ns4' => "#{NAMESPACE_BASE_URL}/ipgapi/schemas/ipgapi",
|
341
|
+
'xmlns:ns2' => "#{NAMESPACE_BASE_URL}/ipgapi/schemas/a1",
|
342
|
+
'xmlns:ns3' => "#{NAMESPACE_BASE_URL}/ipgapi/schemas/v1"
|
343
|
+
}
|
344
|
+
end
|
345
|
+
|
346
|
+
def override_store_id(options)
|
347
|
+
@credentials[:store_id] = options[:store_id] if options[:store_id].present?
|
348
|
+
end
|
349
|
+
|
350
|
+
def commit(action, request, options = {})
|
351
|
+
override_store_id(options)
|
352
|
+
url = (test? ? test_url : live_url)
|
353
|
+
soap_request = build_soap_request(action, request)
|
354
|
+
response = parse(ssl_post(url, soap_request, build_header))
|
355
|
+
Response.new(
|
356
|
+
response[:success],
|
357
|
+
message_from(response),
|
358
|
+
response,
|
359
|
+
authorization: authorization_from(action, response),
|
360
|
+
avs_result: AVSResult.new(code: response[:AVSResponse]),
|
361
|
+
cvv_result: CVVResult.new(response[:ProcessorCCVResponse]),
|
362
|
+
test: test?,
|
363
|
+
error_code: error_code_from(response)
|
364
|
+
)
|
365
|
+
end
|
366
|
+
|
367
|
+
def parse(xml)
|
368
|
+
reply = {}
|
369
|
+
xml = REXML::Document.new(xml)
|
370
|
+
root = REXML::XPath.first(xml, '//ipgapi:IPGApiOrderResponse') || REXML::XPath.first(xml, '//ipgapi:IPGApiActionResponse') || REXML::XPath.first(xml, '//SOAP-ENV:Fault') || REXML::XPath.first(xml, '//ns4:IPGApiActionResponse')
|
371
|
+
reply[:success] = REXML::XPath.first(xml, '//faultcode') ? false : true
|
372
|
+
if REXML::XPath.first(xml, '//ns4:IPGApiActionResponse')
|
373
|
+
reply[:tpv_error_code] = REXML::XPath.first(root, '//ns2:Error').attributes['Code']
|
374
|
+
reply[:tpv_error_msg] = REXML::XPath.first(root, '//ns2:ErrorMessage').text
|
375
|
+
reply[:success] = false
|
376
|
+
end
|
377
|
+
root.elements.to_a.each do |node|
|
378
|
+
parse_element(reply, node)
|
379
|
+
end
|
380
|
+
reply[:hosted_data_id] = @hosted_data_id if @hosted_data_id
|
381
|
+
return reply
|
382
|
+
end
|
383
|
+
|
384
|
+
def parse_element(reply, node)
|
385
|
+
if node.has_elements?
|
386
|
+
node.elements.each { |e| parse_element(reply, e) }
|
387
|
+
else
|
388
|
+
if /item/.match?(node.parent.name)
|
389
|
+
parent = node.parent.name
|
390
|
+
parent += '_' + node.parent.attributes['id'] if node.parent.attributes['id']
|
391
|
+
parent += '_'
|
392
|
+
end
|
393
|
+
reply["#{parent}#{node.name}".to_sym] ||= node.text
|
394
|
+
end
|
395
|
+
return reply
|
396
|
+
end
|
397
|
+
|
398
|
+
def message_from(response)
|
399
|
+
[response[:TransactionResult], response[:ErrorMessage]&.split(':')&.last&.strip].compact.join(', ')
|
400
|
+
end
|
401
|
+
|
402
|
+
def authorization_from(action, response)
|
403
|
+
return (action == 'vault' ? response[:hosted_data_id] : response[:OrderId])
|
404
|
+
end
|
405
|
+
|
406
|
+
def error_code_from(response)
|
407
|
+
response[:ErrorMessage]&.split(':')&.first unless response[:success]
|
408
|
+
end
|
409
|
+
|
410
|
+
def handle_response(response)
|
411
|
+
case response.code.to_i
|
412
|
+
when 200...300, 500
|
413
|
+
response.body
|
414
|
+
else
|
415
|
+
raise ResponseError.new(response)
|
416
|
+
end
|
417
|
+
end
|
418
|
+
end
|
419
|
+
end
|
420
|
+
end
|
@@ -0,0 +1,176 @@
|
|
1
|
+
require 'nokogiri'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
class IppGateway < Gateway
|
6
|
+
self.live_url = 'https://www.ippayments.com.au/interface/api/dts.asmx'
|
7
|
+
self.test_url = 'https://demo.ippayments.com.au/interface/api/dts.asmx'
|
8
|
+
|
9
|
+
self.supported_countries = ['AU']
|
10
|
+
self.supported_cardtypes = %i[visa master american_express diners_club jcb]
|
11
|
+
|
12
|
+
self.homepage_url = 'http://www.ippayments.com.au/'
|
13
|
+
self.display_name = 'IPP'
|
14
|
+
|
15
|
+
self.money_format = :cents
|
16
|
+
|
17
|
+
STANDARD_ERROR_CODE_MAPPING = {
|
18
|
+
'05' => STANDARD_ERROR_CODE[:card_declined],
|
19
|
+
'06' => STANDARD_ERROR_CODE[:processing_error],
|
20
|
+
'14' => STANDARD_ERROR_CODE[:invalid_number],
|
21
|
+
'54' => STANDARD_ERROR_CODE[:expired_card]
|
22
|
+
}
|
23
|
+
|
24
|
+
def initialize(options = {})
|
25
|
+
ActiveMerchant.deprecated('IPP gateway is now named Bambora Asia-Pacific')
|
26
|
+
requires!(options, :username, :password)
|
27
|
+
super
|
28
|
+
end
|
29
|
+
|
30
|
+
def purchase(money, payment, options = {})
|
31
|
+
commit('SubmitSinglePayment') do |xml|
|
32
|
+
xml.Transaction do
|
33
|
+
xml.CustRef options[:order_id]
|
34
|
+
add_amount(xml, money)
|
35
|
+
xml.TrnType '1'
|
36
|
+
add_credit_card(xml, payment)
|
37
|
+
add_credentials(xml)
|
38
|
+
xml.TrnSource options[:ip]
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def authorize(money, payment, options = {})
|
44
|
+
commit('SubmitSinglePayment') do |xml|
|
45
|
+
xml.Transaction do
|
46
|
+
xml.CustRef options[:order_id]
|
47
|
+
add_amount(xml, money)
|
48
|
+
xml.TrnType '2'
|
49
|
+
add_credit_card(xml, payment)
|
50
|
+
add_credentials(xml)
|
51
|
+
xml.TrnSource options[:ip]
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
def capture(money, authorization, options = {})
|
57
|
+
commit('SubmitSingleCapture') do |xml|
|
58
|
+
xml.Capture do
|
59
|
+
xml.Receipt authorization
|
60
|
+
add_amount(xml, money)
|
61
|
+
add_credentials(xml)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
def refund(money, authorization, options = {})
|
67
|
+
commit('SubmitSingleRefund') do |xml|
|
68
|
+
xml.Refund do
|
69
|
+
xml.Receipt authorization
|
70
|
+
add_amount(xml, money)
|
71
|
+
add_credentials(xml)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
def supports_scrubbing?
|
77
|
+
true
|
78
|
+
end
|
79
|
+
|
80
|
+
def scrub(transcript)
|
81
|
+
transcript.
|
82
|
+
gsub(%r((<CardNumber>)[^<]+(<))i, '\1[FILTERED]\2').
|
83
|
+
gsub(%r((<CVN>)[^<]+(<))i, '\1[FILTERED]\2').
|
84
|
+
gsub(%r((<Password>)[^<]+(<))i, '\1[FILTERED]\2')
|
85
|
+
end
|
86
|
+
|
87
|
+
private
|
88
|
+
|
89
|
+
def add_credentials(xml)
|
90
|
+
xml.Security do
|
91
|
+
xml.UserName @options[:username]
|
92
|
+
xml.Password @options[:password]
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
def add_amount(xml, money)
|
97
|
+
xml.Amount amount(money)
|
98
|
+
end
|
99
|
+
|
100
|
+
def add_credit_card(xml, payment)
|
101
|
+
xml.CreditCard Registered: 'False' do
|
102
|
+
xml.CardNumber payment.number
|
103
|
+
xml.ExpM format(payment.month, :two_digits)
|
104
|
+
xml.ExpY format(payment.year, :four_digits)
|
105
|
+
xml.CVN payment.verification_value
|
106
|
+
xml.CardHolderName payment.name
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
def parse(body)
|
111
|
+
element = Nokogiri::XML(body).root.first_element_child.first_element_child
|
112
|
+
|
113
|
+
response = {}
|
114
|
+
doc = Nokogiri::XML(element)
|
115
|
+
doc.root.elements.each do |e|
|
116
|
+
response[e.name.underscore.to_sym] = e.inner_text
|
117
|
+
end
|
118
|
+
response
|
119
|
+
end
|
120
|
+
|
121
|
+
def commit(action, &block)
|
122
|
+
headers = {
|
123
|
+
'Content-Type' => 'text/xml; charset=utf-8',
|
124
|
+
'SOAPAction' => "http://www.ippayments.com.au/interface/api/dts/#{action}"
|
125
|
+
}
|
126
|
+
response = parse(ssl_post(commit_url, new_submit_xml(action, &block), headers))
|
127
|
+
|
128
|
+
Response.new(
|
129
|
+
success_from(response),
|
130
|
+
message_from(response),
|
131
|
+
response,
|
132
|
+
authorization: authorization_from(response),
|
133
|
+
error_code: error_code_from(response),
|
134
|
+
test: test?
|
135
|
+
)
|
136
|
+
end
|
137
|
+
|
138
|
+
def new_submit_xml(action)
|
139
|
+
xml = Builder::XmlMarkup.new(indent: 2)
|
140
|
+
xml.instruct!
|
141
|
+
xml.soap :Envelope, 'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance', 'xmlns:xsd' => 'http://www.w3.org/2001/XMLSchema', 'xmlns:soap' => 'http://schemas.xmlsoap.org/soap/envelope/' do
|
142
|
+
xml.soap :Body do
|
143
|
+
xml.__send__(action, 'xmlns' => 'http://www.ippayments.com.au/interface/api/dts') do
|
144
|
+
xml.trnXML do
|
145
|
+
inner_xml = Builder::XmlMarkup.new(indent: 2)
|
146
|
+
yield(inner_xml)
|
147
|
+
xml.cdata!(inner_xml.target!)
|
148
|
+
end
|
149
|
+
end
|
150
|
+
end
|
151
|
+
end
|
152
|
+
xml.target!
|
153
|
+
end
|
154
|
+
|
155
|
+
def commit_url
|
156
|
+
(test? ? test_url : live_url)
|
157
|
+
end
|
158
|
+
|
159
|
+
def success_from(response)
|
160
|
+
(response[:response_code] == '0')
|
161
|
+
end
|
162
|
+
|
163
|
+
def error_code_from(response)
|
164
|
+
STANDARD_ERROR_CODE_MAPPING[response[:declined_code]]
|
165
|
+
end
|
166
|
+
|
167
|
+
def message_from(response)
|
168
|
+
response[:declined_message]
|
169
|
+
end
|
170
|
+
|
171
|
+
def authorization_from(response)
|
172
|
+
response[:receipt]
|
173
|
+
end
|
174
|
+
end
|
175
|
+
end
|
176
|
+
end
|