activemerchant 1.45.0 → 1.126.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (288) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG +2167 -2
  3. data/CONTRIBUTORS +57 -0
  4. data/README.md +62 -41
  5. data/lib/active_merchant/billing/avs_result.rb +25 -28
  6. data/lib/active_merchant/billing/base.rb +11 -35
  7. data/lib/active_merchant/billing/check.rb +28 -24
  8. data/lib/active_merchant/billing/compatibility.rb +10 -12
  9. data/lib/active_merchant/billing/credit_card.rb +141 -69
  10. data/lib/active_merchant/billing/credit_card_formatting.rb +4 -4
  11. data/lib/active_merchant/billing/credit_card_methods.rb +348 -52
  12. data/lib/active_merchant/billing/cvv_result.rb +0 -1
  13. data/lib/active_merchant/billing/gateway.rb +125 -61
  14. data/lib/active_merchant/billing/gateways/adyen.rb +633 -127
  15. data/lib/active_merchant/billing/gateways/airwallex.rb +341 -0
  16. data/lib/active_merchant/billing/gateways/allied_wallet.rb +205 -0
  17. data/lib/active_merchant/billing/gateways/authorize_net.rb +883 -195
  18. data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +31 -24
  19. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +104 -103
  20. data/lib/active_merchant/billing/gateways/axcessms.rb +179 -0
  21. data/lib/active_merchant/billing/gateways/balanced.rb +72 -65
  22. data/lib/active_merchant/billing/gateways/bambora_apac.rb +222 -0
  23. data/lib/active_merchant/billing/gateways/bank_frick.rb +16 -16
  24. data/lib/active_merchant/billing/gateways/banwire.rb +24 -13
  25. data/lib/active_merchant/billing/gateways/barclaycard_smartpay.rb +397 -0
  26. data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +7 -7
  27. data/lib/active_merchant/billing/gateways/be2bill.rb +7 -7
  28. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +143 -62
  29. data/lib/active_merchant/billing/gateways/beanstream.rb +45 -13
  30. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +13 -10
  31. data/lib/active_merchant/billing/gateways/blue_pay.rb +549 -506
  32. data/lib/active_merchant/billing/gateways/blue_snap.rb +623 -0
  33. data/lib/active_merchant/billing/gateways/bogus.rb +82 -36
  34. data/lib/active_merchant/billing/gateways/borgun.rb +61 -40
  35. data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
  36. data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +21 -2
  37. data/lib/active_merchant/billing/gateways/braintree/token_nonce.rb +113 -0
  38. data/lib/active_merchant/billing/gateways/braintree.rb +3 -3
  39. data/lib/active_merchant/billing/gateways/braintree_blue.rb +592 -203
  40. data/lib/active_merchant/billing/gateways/braintree_orange.rb +3 -4
  41. data/lib/active_merchant/billing/gateways/bridge_pay.rb +116 -61
  42. data/lib/active_merchant/billing/gateways/cams.rb +230 -0
  43. data/lib/active_merchant/billing/gateways/card_connect.rb +320 -0
  44. data/lib/active_merchant/billing/gateways/card_save.rb +7 -9
  45. data/lib/active_merchant/billing/gateways/card_stream.rb +248 -97
  46. data/lib/active_merchant/billing/gateways/cardknox.rb +327 -0
  47. data/lib/active_merchant/billing/gateways/cardprocess.rb +256 -0
  48. data/lib/active_merchant/billing/gateways/cashnet.rb +70 -26
  49. data/lib/active_merchant/billing/gateways/cc5.rb +14 -17
  50. data/lib/active_merchant/billing/gateways/cecabank.rb +73 -53
  51. data/lib/active_merchant/billing/gateways/cenpos.rb +328 -0
  52. data/lib/active_merchant/billing/gateways/checkout.rb +32 -33
  53. data/lib/active_merchant/billing/gateways/checkout_v2.rb +340 -0
  54. data/lib/active_merchant/billing/gateways/citrus_pay.rb +21 -0
  55. data/lib/active_merchant/billing/gateways/clearhaus.rb +219 -0
  56. data/lib/active_merchant/billing/gateways/commercegate.rb +11 -12
  57. data/lib/active_merchant/billing/gateways/conekta.rb +55 -34
  58. data/lib/active_merchant/billing/gateways/creditcall.rb +272 -0
  59. data/lib/active_merchant/billing/gateways/credorax.rb +506 -0
  60. data/lib/active_merchant/billing/gateways/ct_payment.rb +269 -0
  61. data/lib/active_merchant/billing/gateways/culqi.rb +279 -0
  62. data/lib/active_merchant/billing/gateways/cyber_source.rb +637 -221
  63. data/lib/active_merchant/billing/gateways/d_local.rb +303 -0
  64. data/lib/active_merchant/billing/gateways/data_cash.rb +57 -355
  65. data/lib/active_merchant/billing/gateways/decidir.rb +347 -0
  66. data/lib/active_merchant/billing/gateways/decidir_plus.rb +344 -0
  67. data/lib/active_merchant/billing/gateways/dibs.rb +199 -0
  68. data/lib/active_merchant/billing/gateways/digitzs.rb +295 -0
  69. data/lib/active_merchant/billing/gateways/ebanx.rb +334 -0
  70. data/lib/active_merchant/billing/gateways/efsnet.rb +46 -50
  71. data/lib/active_merchant/billing/gateways/elavon.rb +377 -250
  72. data/lib/active_merchant/billing/gateways/element.rb +386 -0
  73. data/lib/active_merchant/billing/gateways/epay.rb +92 -71
  74. data/lib/active_merchant/billing/gateways/evo_ca.rb +13 -14
  75. data/lib/active_merchant/billing/gateways/eway.rb +85 -73
  76. data/lib/active_merchant/billing/gateways/eway_managed.rb +85 -87
  77. data/lib/active_merchant/billing/gateways/eway_rapid.rb +134 -80
  78. data/lib/active_merchant/billing/gateways/exact.rb +37 -36
  79. data/lib/active_merchant/billing/gateways/ezic.rb +195 -0
  80. data/lib/active_merchant/billing/gateways/fat_zebra.rb +124 -74
  81. data/lib/active_merchant/billing/gateways/federated_canada.rb +11 -13
  82. data/lib/active_merchant/billing/gateways/finansbank.rb +4 -5
  83. data/lib/active_merchant/billing/gateways/first_giving.rb +23 -23
  84. data/lib/active_merchant/billing/gateways/first_pay.rb +45 -23
  85. data/lib/active_merchant/billing/gateways/firstdata_e4.rb +184 -87
  86. data/lib/active_merchant/billing/gateways/firstdata_e4_v27.rb +505 -0
  87. data/lib/active_merchant/billing/gateways/flo2cash.rb +215 -0
  88. data/lib/active_merchant/billing/gateways/flo2cash_simple.rb +20 -0
  89. data/lib/active_merchant/billing/gateways/forte.rb +286 -0
  90. data/lib/active_merchant/billing/gateways/garanti.rb +31 -32
  91. data/lib/active_merchant/billing/gateways/global_collect.rb +507 -0
  92. data/lib/active_merchant/billing/gateways/global_transport.rb +25 -15
  93. data/lib/active_merchant/billing/gateways/hdfc.rb +55 -57
  94. data/lib/active_merchant/billing/gateways/hps.rb +252 -68
  95. data/lib/active_merchant/billing/gateways/iats_payments.rb +99 -38
  96. data/lib/active_merchant/billing/gateways/in_context_paypal_express.rb +15 -0
  97. data/lib/active_merchant/billing/gateways/inspire.rb +48 -48
  98. data/lib/active_merchant/billing/gateways/instapay.rb +10 -14
  99. data/lib/active_merchant/billing/gateways/ipg.rb +415 -0
  100. data/lib/active_merchant/billing/gateways/ipp.rb +176 -0
  101. data/lib/active_merchant/billing/gateways/iridium.rb +254 -244
  102. data/lib/active_merchant/billing/gateways/itransact.rb +14 -14
  103. data/lib/active_merchant/billing/gateways/iveri.rb +254 -0
  104. data/lib/active_merchant/billing/gateways/ixopay.rb +320 -0
  105. data/lib/active_merchant/billing/gateways/jetpay.rb +200 -80
  106. data/lib/active_merchant/billing/gateways/jetpay_v2.rb +432 -0
  107. data/lib/active_merchant/billing/gateways/komoju.rb +115 -0
  108. data/lib/active_merchant/billing/gateways/kushki.rb +277 -0
  109. data/lib/active_merchant/billing/gateways/latitude19.rb +412 -0
  110. data/lib/active_merchant/billing/gateways/linkpoint.rb +95 -85
  111. data/lib/active_merchant/billing/gateways/litle.rb +371 -94
  112. data/lib/active_merchant/billing/gateways/mastercard.rb +293 -0
  113. data/lib/active_merchant/billing/gateways/maxipago.rb +146 -123
  114. data/lib/active_merchant/billing/gateways/mercado_pago.rb +331 -0
  115. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +47 -23
  116. data/lib/active_merchant/billing/gateways/merchant_one.rb +16 -20
  117. data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
  118. data/lib/active_merchant/billing/gateways/merchant_ware.rb +54 -60
  119. data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +60 -44
  120. data/lib/active_merchant/billing/gateways/merchant_warrior.rb +76 -23
  121. data/lib/active_merchant/billing/gateways/mercury.rb +73 -54
  122. data/lib/active_merchant/billing/gateways/metrics_global.rb +33 -43
  123. data/lib/active_merchant/billing/gateways/micropayment.rb +182 -0
  124. data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +7 -7
  125. data/lib/active_merchant/billing/gateways/migs.rb +101 -37
  126. data/lib/active_merchant/billing/gateways/mit.rb +260 -0
  127. data/lib/active_merchant/billing/gateways/modern_payments.rb +3 -3
  128. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +30 -34
  129. data/lib/active_merchant/billing/gateways/moka.rb +290 -0
  130. data/lib/active_merchant/billing/gateways/monei.rb +422 -0
  131. data/lib/active_merchant/billing/gateways/moneris.rb +236 -72
  132. data/lib/active_merchant/billing/gateways/money_movers.rb +11 -13
  133. data/lib/active_merchant/billing/gateways/mundipagg.rb +363 -0
  134. data/lib/active_merchant/billing/gateways/nab_transact.rb +87 -68
  135. data/lib/active_merchant/billing/gateways/ncr_secure_pay.rb +163 -0
  136. data/lib/active_merchant/billing/gateways/net_registry.rb +12 -12
  137. data/lib/active_merchant/billing/gateways/netaxept.rb +33 -34
  138. data/lib/active_merchant/billing/gateways/netbanx.rb +376 -0
  139. data/lib/active_merchant/billing/gateways/netbilling.rb +82 -43
  140. data/lib/active_merchant/billing/gateways/netpay.rb +10 -10
  141. data/lib/active_merchant/billing/gateways/network_merchants.rb +7 -11
  142. data/lib/active_merchant/billing/gateways/nmi.rb +279 -174
  143. data/lib/active_merchant/billing/gateways/ogone.rb +96 -50
  144. data/lib/active_merchant/billing/gateways/omise.rb +323 -0
  145. data/lib/active_merchant/billing/gateways/openpay.rb +58 -23
  146. data/lib/active_merchant/billing/gateways/opp.rb +394 -0
  147. data/lib/active_merchant/billing/gateways/optimal_payment.rb +87 -69
  148. data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +5 -7
  149. data/lib/active_merchant/billing/gateways/orbital.rb +771 -328
  150. data/lib/active_merchant/billing/gateways/pac_net_raven.rb +31 -32
  151. data/lib/active_merchant/billing/gateways/pagarme.rb +239 -0
  152. data/lib/active_merchant/billing/gateways/pago_facil.rb +12 -14
  153. data/lib/active_merchant/billing/gateways/pay_arc.rb +392 -0
  154. data/lib/active_merchant/billing/gateways/pay_conex.rb +245 -0
  155. data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +84 -68
  156. data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
  157. data/lib/active_merchant/billing/gateways/pay_junction.rb +37 -37
  158. data/lib/active_merchant/billing/gateways/pay_junction_v2.rb +206 -0
  159. data/lib/active_merchant/billing/gateways/pay_secure.rb +15 -17
  160. data/lib/active_merchant/billing/gateways/pay_trace.rb +404 -0
  161. data/lib/active_merchant/billing/gateways/paybox_direct.rb +85 -49
  162. data/lib/active_merchant/billing/gateways/payeezy.rb +458 -0
  163. data/lib/active_merchant/billing/gateways/payex.rb +39 -42
  164. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +67 -41
  165. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +11 -8
  166. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +3 -3
  167. data/lib/active_merchant/billing/gateways/payflow.rb +215 -46
  168. data/lib/active_merchant/billing/gateways/payflow_express.rb +64 -68
  169. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +2 -3
  170. data/lib/active_merchant/billing/gateways/payflow_uk.rb +5 -6
  171. data/lib/active_merchant/billing/gateways/payment_express.rb +78 -58
  172. data/lib/active_merchant/billing/gateways/paymentez.rb +353 -0
  173. data/lib/active_merchant/billing/gateways/paymill.rb +163 -75
  174. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +55 -7
  175. data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +1 -1
  176. data/lib/active_merchant/billing/gateways/paypal.rb +37 -18
  177. data/lib/active_merchant/billing/gateways/paypal_ca.rb +2 -2
  178. data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +5 -5
  179. data/lib/active_merchant/billing/gateways/paypal_express.rb +12 -6
  180. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +3 -3
  181. data/lib/active_merchant/billing/gateways/paysafe.rb +412 -0
  182. data/lib/active_merchant/billing/gateways/payscout.rb +10 -13
  183. data/lib/active_merchant/billing/gateways/paystation.rb +96 -91
  184. data/lib/active_merchant/billing/gateways/payu_in.rb +249 -0
  185. data/lib/active_merchant/billing/gateways/payu_latam.rb +479 -0
  186. data/lib/active_merchant/billing/gateways/payway.rb +27 -27
  187. data/lib/active_merchant/billing/gateways/payway_dot_com.rb +253 -0
  188. data/lib/active_merchant/billing/gateways/pin.rb +113 -37
  189. data/lib/active_merchant/billing/gateways/plugnpay.rb +82 -82
  190. data/lib/active_merchant/billing/gateways/priority.rb +369 -0
  191. data/lib/active_merchant/billing/gateways/pro_pay.rb +325 -0
  192. data/lib/active_merchant/billing/gateways/psigate.rb +55 -44
  193. data/lib/active_merchant/billing/gateways/psl_card.rb +32 -40
  194. data/lib/active_merchant/billing/gateways/qbms.rb +86 -76
  195. data/lib/active_merchant/billing/gateways/quantum.rb +21 -23
  196. data/lib/active_merchant/billing/gateways/quickbooks.rb +377 -0
  197. data/lib/active_merchant/billing/gateways/quickpay/quickpay_common.rb +184 -0
  198. data/lib/active_merchant/billing/gateways/quickpay/quickpay_v10.rb +297 -0
  199. data/lib/active_merchant/billing/gateways/quickpay/quickpay_v4to7.rb +226 -0
  200. data/lib/active_merchant/billing/gateways/quickpay.rb +10 -353
  201. data/lib/active_merchant/billing/gateways/qvalent.rb +305 -0
  202. data/lib/active_merchant/billing/gateways/rapyd.rb +258 -0
  203. data/lib/active_merchant/billing/gateways/realex.rb +154 -52
  204. data/lib/active_merchant/billing/gateways/redsys.rb +488 -161
  205. data/lib/active_merchant/billing/gateways/s5.rb +247 -0
  206. data/lib/active_merchant/billing/gateways/safe_charge.rb +298 -0
  207. data/lib/active_merchant/billing/gateways/sage.rb +404 -133
  208. data/lib/active_merchant/billing/gateways/sage_pay.rb +145 -109
  209. data/lib/active_merchant/billing/gateways/sallie_mae.rb +13 -15
  210. data/lib/active_merchant/billing/gateways/secure_net.rb +62 -54
  211. data/lib/active_merchant/billing/gateways/secure_pay.rb +32 -42
  212. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +36 -27
  213. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +14 -16
  214. data/lib/active_merchant/billing/gateways/securion_pay.rb +265 -0
  215. data/lib/active_merchant/billing/gateways/simetrik.rb +362 -0
  216. data/lib/active_merchant/billing/gateways/skip_jack.rb +52 -54
  217. data/lib/active_merchant/billing/gateways/smart_ps.rb +51 -60
  218. data/lib/active_merchant/billing/gateways/so_easy_pay.rb +29 -29
  219. data/lib/active_merchant/billing/gateways/spreedly_core.rb +108 -43
  220. data/lib/active_merchant/billing/gateways/stripe.rb +536 -120
  221. data/lib/active_merchant/billing/gateways/stripe_payment_intents.rb +516 -0
  222. data/lib/active_merchant/billing/gateways/swipe_checkout.rb +19 -25
  223. data/lib/active_merchant/billing/gateways/telr.rb +273 -0
  224. data/lib/active_merchant/billing/gateways/tns.rb +16 -217
  225. data/lib/active_merchant/billing/gateways/trans_first.rb +148 -34
  226. data/lib/active_merchant/billing/gateways/trans_first_transaction_express.rb +612 -0
  227. data/lib/active_merchant/billing/gateways/transact_pro.rb +222 -0
  228. data/lib/active_merchant/billing/gateways/transax.rb +6 -8
  229. data/lib/active_merchant/billing/gateways/transnational.rb +1 -2
  230. data/lib/active_merchant/billing/gateways/trexle.rb +221 -0
  231. data/lib/active_merchant/billing/gateways/trust_commerce.rb +162 -89
  232. data/lib/active_merchant/billing/gateways/usa_epay.rb +5 -6
  233. data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +332 -236
  234. data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +185 -72
  235. data/lib/active_merchant/billing/gateways/vanco.rb +294 -0
  236. data/lib/active_merchant/billing/gateways/verifi.rb +52 -53
  237. data/lib/active_merchant/billing/gateways/viaklix.rb +19 -31
  238. data/lib/active_merchant/billing/gateways/visanet_peru.rb +250 -0
  239. data/lib/active_merchant/billing/gateways/vpos.rb +220 -0
  240. data/lib/active_merchant/billing/gateways/webpay.rb +9 -9
  241. data/lib/active_merchant/billing/gateways/wepay.rb +108 -62
  242. data/lib/active_merchant/billing/gateways/wirecard.rb +52 -43
  243. data/lib/active_merchant/billing/gateways/wompi.rb +193 -0
  244. data/lib/active_merchant/billing/gateways/world_net.rb +345 -0
  245. data/lib/active_merchant/billing/gateways/worldpay.rb +725 -121
  246. data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +208 -0
  247. data/lib/active_merchant/billing/gateways/worldpay_us.rb +79 -39
  248. data/lib/active_merchant/billing/gateways.rb +8 -11
  249. data/lib/active_merchant/billing/model.rb +2 -2
  250. data/lib/active_merchant/billing/network_tokenization_credit_card.rb +39 -0
  251. data/lib/active_merchant/billing/payment_token.rb +1 -1
  252. data/lib/active_merchant/billing/rails.rb +1 -1
  253. data/lib/active_merchant/billing/response.rb +19 -13
  254. data/lib/active_merchant/billing/three_d_secure_eci_mapper.rb +27 -0
  255. data/lib/active_merchant/billing.rb +3 -0
  256. data/lib/active_merchant/connection.rb +196 -0
  257. data/lib/active_merchant/country.rb +13 -8
  258. data/lib/active_merchant/errors.rb +6 -0
  259. data/lib/active_merchant/net_http_ssl_connection.rb +11 -0
  260. data/lib/active_merchant/network_connection_retries.rb +78 -0
  261. data/lib/active_merchant/post_data.rb +26 -0
  262. data/lib/active_merchant/posts_data.rb +92 -0
  263. data/lib/active_merchant/version.rb +1 -1
  264. data/lib/active_merchant.rb +14 -59
  265. data/lib/activemerchant.rb +1 -1
  266. data/lib/certs/cacert.pem +3214 -0
  267. data/lib/support/gateway_support.rb +8 -10
  268. data/lib/support/outbound_hosts.rb +13 -10
  269. data/lib/support/ssl_verify.rb +9 -14
  270. data/lib/support/ssl_version.rb +86 -0
  271. metadata +136 -94
  272. checksums.yaml.gz.sig +0 -1
  273. data/lib/active_merchant/billing/gateways/app55.rb +0 -176
  274. data/lib/active_merchant/billing/gateways/barclays_epdq.rb +0 -314
  275. data/lib/active_merchant/billing/gateways/certo_direct.rb +0 -278
  276. data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +0 -246
  277. data/lib/active_merchant/billing/gateways/ideal/ideal_rabobank.pem +0 -13
  278. data/lib/active_merchant/billing/gateways/ideal/ideal_response.rb +0 -29
  279. data/lib/active_merchant/billing/gateways/ideal_rabobank.rb +0 -66
  280. data/lib/active_merchant/billing/gateways/moneris_us.rb +0 -291
  281. data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +0 -87
  282. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +0 -114
  283. data/lib/active_merchant/billing/gateways/sage/sage_vault.rb +0 -149
  284. data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +0 -102
  285. data/lib/active_merchant/billing/gateways/vindicia.rb +0 -385
  286. data/lib/active_merchant/offsite_payments_shim.rb +0 -19
  287. data.tar.gz.sig +0 -0
  288. metadata.gz.sig +0 -0
@@ -0,0 +1,415 @@
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)
31
+ end
32
+
33
+ def authorize(money, payment, options = {})
34
+ xml = build_purchase_and_authorize_request(money, payment, options)
35
+
36
+ commit('preAuth', xml)
37
+ end
38
+
39
+ def capture(money, authorization, options = {})
40
+ xml = build_capture_and_refund_request(money, authorization, options)
41
+
42
+ commit('postAuth', xml)
43
+ end
44
+
45
+ def refund(money, authorization, options = {})
46
+ xml = build_capture_and_refund_request(money, authorization, options)
47
+
48
+ commit('return', xml)
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)
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)
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 commit(action, request)
347
+ url = (test? ? test_url : live_url)
348
+ soap_request = build_soap_request(action, request)
349
+ response = parse(ssl_post(url, soap_request, build_header))
350
+ Response.new(
351
+ response[:success],
352
+ message_from(response),
353
+ response,
354
+ authorization: authorization_from(action, response),
355
+ avs_result: AVSResult.new(code: response[:AVSResponse]),
356
+ cvv_result: CVVResult.new(response[:ProcessorCCVResponse]),
357
+ test: test?,
358
+ error_code: error_code_from(response)
359
+ )
360
+ end
361
+
362
+ def parse(xml)
363
+ reply = {}
364
+ xml = REXML::Document.new(xml)
365
+ 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')
366
+ reply[:success] = REXML::XPath.first(xml, '//faultcode') ? false : true
367
+ if REXML::XPath.first(xml, '//ns4:IPGApiActionResponse')
368
+ reply[:tpv_error_code] = REXML::XPath.first(root, '//ns2:Error').attributes['Code']
369
+ reply[:tpv_error_msg] = REXML::XPath.first(root, '//ns2:ErrorMessage').text
370
+ reply[:success] = false
371
+ end
372
+ root.elements.to_a.each do |node|
373
+ parse_element(reply, node)
374
+ end
375
+ reply[:hosted_data_id] = @hosted_data_id if @hosted_data_id
376
+ return reply
377
+ end
378
+
379
+ def parse_element(reply, node)
380
+ if node.has_elements?
381
+ node.elements.each { |e| parse_element(reply, e) }
382
+ else
383
+ if /item/.match?(node.parent.name)
384
+ parent = node.parent.name
385
+ parent += '_' + node.parent.attributes['id'] if node.parent.attributes['id']
386
+ parent += '_'
387
+ end
388
+ reply["#{parent}#{node.name}".to_sym] ||= node.text
389
+ end
390
+ return reply
391
+ end
392
+
393
+ def message_from(response)
394
+ response[:TransactionResult]
395
+ end
396
+
397
+ def authorization_from(action, response)
398
+ return (action == 'vault' ? response[:hosted_data_id] : response[:OrderId])
399
+ end
400
+
401
+ def error_code_from(response)
402
+ response[:ErrorMessage]&.split(':')&.first unless response[:success]
403
+ end
404
+
405
+ def handle_response(response)
406
+ case response.code.to_i
407
+ when 200...300, 500
408
+ response.body
409
+ else
410
+ raise ResponseError.new(response)
411
+ end
412
+ end
413
+ end
414
+ end
415
+ 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