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,277 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class KushkiGateway < Gateway
4
+ self.display_name = 'Kushki'
5
+ self.homepage_url = 'https://www.kushkipagos.com'
6
+
7
+ self.test_url = 'https://api-uat.kushkipagos.com/'
8
+ self.live_url = 'https://api.kushkipagos.com/'
9
+
10
+ self.supported_countries = %w[CL CO EC MX PE]
11
+ self.default_currency = 'USD'
12
+ self.money_format = :dollars
13
+ self.supported_cardtypes = %i[visa master american_express discover diners_club alia]
14
+
15
+ def initialize(options = {})
16
+ requires!(options, :public_merchant_id, :private_merchant_id)
17
+ super
18
+ end
19
+
20
+ def purchase(amount, payment_method, options = {})
21
+ MultiResponse.run() do |r|
22
+ r.process { tokenize(amount, payment_method, options) }
23
+ r.process { charge(amount, r.authorization, options) }
24
+ end
25
+ end
26
+
27
+ def authorize(amount, payment_method, options = {})
28
+ MultiResponse.run() do |r|
29
+ r.process { tokenize(amount, payment_method, options) }
30
+ r.process { preauthorize(amount, r.authorization, options) }
31
+ end
32
+ end
33
+
34
+ def capture(amount, authorization, options = {})
35
+ action = 'capture'
36
+
37
+ post = {}
38
+ post[:ticketNumber] = authorization
39
+ add_invoice(action, post, amount, options)
40
+ add_full_response(post, options)
41
+
42
+ commit(action, post)
43
+ end
44
+
45
+ def refund(amount, authorization, options = {})
46
+ action = 'refund'
47
+
48
+ post = {}
49
+ post[:ticketNumber] = authorization
50
+ add_full_response(post, options)
51
+
52
+ commit(action, post)
53
+ end
54
+
55
+ def void(authorization, options = {})
56
+ action = 'void'
57
+
58
+ post = {}
59
+ post[:ticketNumber] = authorization
60
+ add_full_response(post, options)
61
+
62
+ commit(action, post)
63
+ end
64
+
65
+ def supports_scrubbing?
66
+ true
67
+ end
68
+
69
+ def scrub(transcript)
70
+ transcript.
71
+ gsub(%r((Private-Merchant-Id: )\d+), '\1[FILTERED]').
72
+ gsub(%r((\"card\\\":{\\\"number\\\":\\\")\d+), '\1[FILTERED]').
73
+ gsub(%r((\"cvv\\\":\\\")\d+), '\1[FILTERED]')
74
+ end
75
+
76
+ private
77
+
78
+ def tokenize(amount, payment_method, options)
79
+ action = 'tokenize'
80
+
81
+ post = {}
82
+ add_invoice(action, post, amount, options)
83
+ add_payment_method(post, payment_method, options)
84
+ add_full_response(post, options)
85
+ add_metadata(post, options)
86
+
87
+ commit(action, post)
88
+ end
89
+
90
+ def charge(amount, authorization, options)
91
+ action = 'charge'
92
+
93
+ post = {}
94
+ add_reference(post, authorization, options)
95
+ add_invoice(action, post, amount, options)
96
+ add_contact_details(post, options[:contact_details]) if options[:contact_details]
97
+ add_full_response(post, options)
98
+ add_metadata(post, options)
99
+
100
+ commit(action, post)
101
+ end
102
+
103
+ def preauthorize(amount, authorization, options)
104
+ action = 'preAuthorization'
105
+
106
+ post = {}
107
+ add_reference(post, authorization, options)
108
+ add_invoice(action, post, amount, options)
109
+ add_full_response(post, options)
110
+ add_metadata(post, options)
111
+
112
+ commit(action, post)
113
+ end
114
+
115
+ def add_invoice(action, post, money, options)
116
+ if action == 'tokenize'
117
+ post[:totalAmount] = amount(money).to_f
118
+ post[:currency] = options[:currency] || currency(money)
119
+ post[:isDeferred] = false
120
+ else
121
+ sum = {}
122
+ sum[:currency] = options[:currency] || currency(money)
123
+ add_amount_defaults(sum, money, options)
124
+ add_amount_by_country(sum, options)
125
+ post[:amount] = sum
126
+ end
127
+ end
128
+
129
+ def add_amount_defaults(sum, money, options)
130
+ sum[:subtotalIva] = amount(money).to_f
131
+ sum[:iva] = 0
132
+ sum[:subtotalIva0] = 0
133
+
134
+ sum[:ice] = 0 if sum[:currency] != 'COP'
135
+ end
136
+
137
+ def add_amount_by_country(sum, options)
138
+ if amount = options[:amount]
139
+ sum[:subtotalIva] = amount[:subtotal_iva].to_f if amount[:subtotal_iva]
140
+ sum[:iva] = amount[:iva].to_f if amount[:iva]
141
+ sum[:subtotalIva0] = amount[:subtotal_iva_0].to_f if amount[:subtotal_iva_0]
142
+ sum[:ice] = amount[:ice].to_f if amount[:ice]
143
+ if (extra_taxes = amount[:extra_taxes]) && sum[:currency] == 'COP'
144
+ sum[:extraTaxes] ||= Hash.new
145
+ sum[:extraTaxes][:propina] = extra_taxes[:propina].to_f if extra_taxes[:propina]
146
+ sum[:extraTaxes][:tasaAeroportuaria] = extra_taxes[:tasa_aeroportuaria].to_f if extra_taxes[:tasa_aeroportuaria]
147
+ sum[:extraTaxes][:agenciaDeViaje] = extra_taxes[:agencia_de_viaje].to_f if extra_taxes[:agencia_de_viaje]
148
+ sum[:extraTaxes][:iac] = extra_taxes[:iac].to_f if extra_taxes[:iac]
149
+ end
150
+ end
151
+ end
152
+
153
+ def add_payment_method(post, payment_method, options)
154
+ card = {}
155
+ card[:number] = payment_method.number
156
+ card[:cvv] = payment_method.verification_value
157
+ card[:expiryMonth] = format(payment_method.month, :two_digits)
158
+ card[:expiryYear] = format(payment_method.year, :two_digits)
159
+ card[:name] = payment_method.name
160
+ post[:card] = card
161
+ end
162
+
163
+ def add_reference(post, authorization, options)
164
+ post[:token] = authorization
165
+ end
166
+
167
+ def add_contact_details(post, contact_details_options)
168
+ contact_details = {}
169
+ contact_details[:documentType] = contact_details_options[:document_type] if contact_details_options[:document_type]
170
+ contact_details[:documentNumber] = contact_details_options[:document_number] if contact_details_options[:document_number]
171
+ contact_details[:email] = contact_details_options[:email] if contact_details_options[:email]
172
+ contact_details[:firstName] = contact_details_options[:first_name] if contact_details_options[:first_name]
173
+ contact_details[:lastName] = contact_details_options[:last_name] if contact_details_options[:last_name]
174
+ contact_details[:secondLastName] = contact_details_options[:second_last_name] if contact_details_options[:second_last_name]
175
+ contact_details[:phoneNumber] = contact_details_options[:phone_number] if contact_details_options[:phone_number]
176
+ post[:contactDetails] = contact_details
177
+ end
178
+
179
+ def add_full_response(post, options)
180
+ post[:fullResponse] = options[:full_response].to_s.casecmp('true').zero? if options[:full_response]
181
+ end
182
+
183
+ def add_metadata(post, options)
184
+ post[:metadata] = options[:metadata] if options[:metadata]
185
+ end
186
+
187
+ ENDPOINT = {
188
+ 'tokenize' => 'tokens',
189
+ 'charge' => 'charges',
190
+ 'void' => 'charges',
191
+ 'refund' => 'refund',
192
+ 'preAuthorization' => 'preAuthorization',
193
+ 'capture' => 'capture'
194
+ }
195
+
196
+ def commit(action, params)
197
+ response =
198
+ begin
199
+ parse(ssl_invoke(action, params))
200
+ rescue ResponseError => e
201
+ parse(e.response.body)
202
+ end
203
+
204
+ success = success_from(response)
205
+
206
+ Response.new(
207
+ success,
208
+ message_from(success, response),
209
+ response,
210
+ authorization: success ? authorization_from(response) : nil,
211
+ error_code: success ? nil : error_from(response),
212
+ test: test?
213
+ )
214
+ end
215
+
216
+ def ssl_invoke(action, params)
217
+ if %w[void refund].include?(action)
218
+ ssl_request(:delete, url(action, params), nil, headers(action))
219
+ else
220
+ ssl_post(url(action, params), post_data(params), headers(action))
221
+ end
222
+ end
223
+
224
+ def headers(action)
225
+ hfields = {}
226
+ hfields['Public-Merchant-Id'] = @options[:public_merchant_id] if action == 'tokenize'
227
+ hfields['Private-Merchant-Id'] = @options[:private_merchant_id] unless action == 'tokenize'
228
+ hfields['Content-Type'] = 'application/json'
229
+ hfields
230
+ end
231
+
232
+ def post_data(params)
233
+ params.to_json
234
+ end
235
+
236
+ def url(action, params)
237
+ base_url = test? ? test_url : live_url
238
+
239
+ if %w[void refund].include?(action)
240
+ base_url + 'v1/' + ENDPOINT[action] + '/' + params[:ticketNumber].to_s
241
+ else
242
+ base_url + 'card/v1/' + ENDPOINT[action]
243
+ end
244
+ end
245
+
246
+ def parse(body)
247
+ JSON.parse(body)
248
+ rescue JSON::ParserError
249
+ message = 'Invalid JSON response received from KushkiGateway. Please contact KushkiGateway if you continue to receive this message.'
250
+ message += " (The raw response returned by the API was #{body.inspect})"
251
+ {
252
+ 'message' => message
253
+ }
254
+ end
255
+
256
+ def success_from(response)
257
+ return true if response['token'] || response['ticketNumber'] || response['code'] == 'K000'
258
+ end
259
+
260
+ def message_from(succeeded, response)
261
+ if succeeded
262
+ 'Succeeded'
263
+ else
264
+ response['message']
265
+ end
266
+ end
267
+
268
+ def authorization_from(response)
269
+ response['token'] || response['ticketNumber']
270
+ end
271
+
272
+ def error_from(response)
273
+ response['code']
274
+ end
275
+ end
276
+ end
277
+ end
@@ -0,0 +1,412 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class Latitude19Gateway < Gateway
4
+ self.display_name = 'Latitude19 Gateway'
5
+ self.homepage_url = 'http://www.l19tech.com'
6
+
7
+ self.live_url = 'https://gateway.l19tech.com/payments/'
8
+ self.test_url = 'https://gateway-sb.l19tech.com/payments/'
9
+
10
+ self.supported_countries = %w[US CA]
11
+ self.default_currency = 'USD'
12
+ self.money_format = :dollars
13
+ self.supported_cardtypes = %i[visa master american_express discover diners_club jcb]
14
+
15
+ RESPONSE_CODE_MAPPING = {
16
+ '100' => 'Approved',
17
+ '101' => 'Local duplicate detected',
18
+ '102' => 'Accepted local capture with no match',
19
+ '103' => 'Auth succeeded but capture failed',
20
+ '104' => 'Auth succeeded but failed to save info',
21
+ '200' => STANDARD_ERROR_CODE[:card_declined],
22
+ '300' => 'Processor reject',
23
+ '301' => 'Local reject on user/password',
24
+ '302' => 'Local reject',
25
+ '303' => 'Processor unknown response',
26
+ '304' => 'Error parsing processor response',
27
+ '305' => 'Processor auth succeeded but settle failed',
28
+ '306' => 'Processor auth succeeded settle status unknown',
29
+ '307' => 'Processor settle status unknown',
30
+ '308' => 'Processor duplicate',
31
+ '400' => 'Not submitted',
32
+ '401' => 'Terminated before request submitted',
33
+ '402' => 'Local server busy',
34
+ '500' => 'Submitted not returned',
35
+ '501' => 'Terminated before response returned',
36
+ '502' => 'Processor returned timeout status',
37
+ '600' => 'Failed local capture with no match',
38
+ '601' => 'Failed local capture',
39
+ '700' => 'Failed local void (not in capture file)',
40
+ '701' => 'Failed local void',
41
+ '800' => 'Failed local refund (not authorized)',
42
+ '801' => 'Failed local refund'
43
+ }
44
+
45
+ BRAND_MAP = {
46
+ 'master' => 'MC',
47
+ 'visa' => 'VI',
48
+ 'american_express' => 'AX',
49
+ 'discover' => 'DS',
50
+ 'diners_club' => 'DC',
51
+ 'jcb' => 'JC'
52
+ }
53
+
54
+ def initialize(options = {})
55
+ requires!(options, :account_number, :configuration_id, :secret)
56
+ super
57
+ end
58
+
59
+ def purchase(amount, payment_method, options = {})
60
+ if payment_method.is_a?(String)
61
+ auth_or_sale('sale', payment_method, amount, nil, options)
62
+ else
63
+ MultiResponse.run() do |r|
64
+ r.process { get_session(options) }
65
+ r.process { get_token(r.authorization, payment_method, options) }
66
+ r.process { auth_or_sale('sale', r.authorization, amount, payment_method, options) }
67
+ end
68
+ end
69
+ end
70
+
71
+ def authorize(amount, payment_method, options = {})
72
+ if payment_method.is_a?(String)
73
+ auth_or_sale('auth', payment_method, amount, nil, options)
74
+ else
75
+ MultiResponse.run() do |r|
76
+ r.process { get_session(options) }
77
+ r.process { get_token(r.authorization, payment_method, options) }
78
+ r.process { auth_or_sale('auth', r.authorization, amount, payment_method, options) }
79
+ end
80
+ end
81
+ end
82
+
83
+ def capture(amount, authorization, options = {})
84
+ post = {}
85
+ post[:method] = 'deposit'
86
+ add_request_id(post)
87
+
88
+ params = {}
89
+
90
+ _, params[:pgwTID] = split_authorization(authorization)
91
+
92
+ add_invoice(params, amount, options)
93
+ add_credentials(params, post[:method])
94
+
95
+ post[:params] = [params]
96
+ commit('v1/', post)
97
+ end
98
+
99
+ def void(authorization, options = {})
100
+ method, pgwTID = split_authorization(authorization)
101
+ case method
102
+ when 'auth'
103
+ reverse_or_void('reversal', pgwTID, options)
104
+ when 'deposit', 'sale'
105
+ reverse_or_void('void', pgwTID, options)
106
+ else
107
+ message = 'Unsupported operation: successful Purchase, Authorize and unsettled Capture transactions can only be voided.'
108
+ return Response.new(false, message)
109
+ end
110
+ end
111
+
112
+ def credit(amount, payment_method, options = {})
113
+ if payment_method.is_a?(String)
114
+ refundWithCard(payment_method, amount, nil, options)
115
+ else
116
+ MultiResponse.run() do |r|
117
+ r.process { get_session(options) }
118
+ r.process { get_token(r.authorization, payment_method, options) }
119
+ r.process { refundWithCard(r.authorization, amount, payment_method, options) }
120
+ end
121
+ end
122
+ end
123
+
124
+ def verify(payment_method, options = {}, action = nil)
125
+ if payment_method.is_a?(String)
126
+ verifyOnly(action, payment_method, nil, options)
127
+ else
128
+ MultiResponse.run() do |r|
129
+ r.process { get_session(options) }
130
+ r.process { get_token(r.authorization, payment_method, options) }
131
+ r.process { verifyOnly(action, r.authorization, payment_method, options) }
132
+ end
133
+ end
134
+ end
135
+
136
+ def store(payment_method, options = {})
137
+ verify(payment_method, options, 'store')
138
+ end
139
+
140
+ def supports_scrubbing?
141
+ true
142
+ end
143
+
144
+ def scrub(transcript)
145
+ transcript.
146
+ gsub(%r((\"cardNumber\\\":\\\")\d+), '\1[FILTERED]').
147
+ gsub(%r((\"cvv\\\":\\\")\d+), '\1[FILTERED]')
148
+ end
149
+
150
+ private
151
+
152
+ def add_request_id(post)
153
+ post[:id] = SecureRandom.hex(16)
154
+ end
155
+
156
+ def add_timestamp
157
+ Time.now.getutc.strftime('%Y%m%d%H%M%S')
158
+ end
159
+
160
+ def add_hmac(params, method)
161
+ if method == 'getSession'
162
+ hmac_message = params[:pgwAccountNumber] + '|' + params[:pgwConfigurationId] + '|' + params[:requestTimeStamp] + '|' + method
163
+ else
164
+ hmac_message = params[:pgwAccountNumber] + '|' + params[:pgwConfigurationId] + '|' + (params[:orderNumber] || '') + '|' + method + '|' + (params[:amount] || '') + '|' + (params[:sessionToken] || '') + '|' + (params[:accountToken] || '')
165
+ end
166
+
167
+ OpenSSL::HMAC.hexdigest('sha512', @options[:secret], hmac_message)
168
+ end
169
+
170
+ def add_credentials(params, method)
171
+ params[:pgwAccountNumber] = @options[:account_number]
172
+ params[:pgwConfigurationId] = @options[:configuration_id]
173
+
174
+ params[:requestTimeStamp] = add_timestamp() if method == 'getSession'
175
+
176
+ params[:pgwHMAC] = add_hmac(params, method)
177
+ end
178
+
179
+ def add_invoice(params, money, options)
180
+ params[:amount] = amount(money)
181
+ params[:orderNumber] = options[:order_id]
182
+ params[:transactionClass] = options[:transaction_class] || 'eCommerce'
183
+ end
184
+
185
+ def add_payment_method(params, credit_card)
186
+ params[:cardExp] = format(credit_card.month, :two_digits).to_s + '/' + format(credit_card.year, :two_digits).to_s
187
+ params[:cardType] = BRAND_MAP[credit_card.brand.to_s]
188
+ params[:cvv] = credit_card.verification_value
189
+ params[:firstName] = credit_card.first_name
190
+ params[:lastName] = credit_card.last_name
191
+ end
192
+
193
+ def add_customer_data(params, options)
194
+ if (billing_address = options[:billing_address] || options[:address])
195
+ params[:address1] = billing_address[:address1]
196
+ params[:address2] = billing_address[:address2]
197
+ params[:city] = billing_address[:city]
198
+ params[:stateProvince] = billing_address[:state]
199
+ params[:zipPostalCode] = billing_address[:zip]
200
+ params[:countryCode] = billing_address[:country]
201
+ end
202
+ end
203
+
204
+ def get_session(options = {})
205
+ post = {}
206
+ post[:method] = 'getSession'
207
+ add_request_id(post)
208
+
209
+ params = {}
210
+ add_credentials(params, post[:method])
211
+
212
+ post[:params] = [params]
213
+ commit('session', post)
214
+ end
215
+
216
+ def get_token(authorization, payment_method, options = {})
217
+ post = {}
218
+ post[:method] = 'tokenize'
219
+ add_request_id(post)
220
+
221
+ params = {}
222
+ _, params[:sessionId] = split_authorization(authorization)
223
+ params[:cardNumber] = payment_method.number
224
+
225
+ post[:params] = [params]
226
+ commit('token', post)
227
+ end
228
+
229
+ def auth_or_sale(method, authorization, amount, credit_card, options = {})
230
+ post = {}
231
+ post[:method] = method
232
+ add_request_id(post)
233
+
234
+ params = {}
235
+ if credit_card
236
+ _, params[:sessionToken] = split_authorization(authorization)
237
+ add_payment_method(params, credit_card)
238
+ add_customer_data(params, options)
239
+ else
240
+ _, params[:accountToken] = split_authorization(authorization)
241
+ end
242
+ add_invoice(params, amount, options)
243
+ add_credentials(params, post[:method])
244
+
245
+ post[:params] = [params]
246
+ commit('v1/', post)
247
+ end
248
+
249
+ def verifyOnly(action, authorization, credit_card, options = {})
250
+ post = {}
251
+ post[:method] = 'verifyOnly'
252
+ add_request_id(post)
253
+
254
+ params = {}
255
+ if credit_card
256
+ _, params[:sessionToken] = split_authorization(authorization)
257
+ add_payment_method(params, credit_card)
258
+ add_customer_data(params, options)
259
+ else
260
+ _, params[:accountToken] = split_authorization(authorization)
261
+ end
262
+ params[:requestAccountToken] = '1' if action == 'store'
263
+ add_invoice(params, 0, options)
264
+ add_credentials(params, post[:method])
265
+
266
+ post[:params] = [params]
267
+ commit('v1/', post)
268
+ end
269
+
270
+ def refundWithCard(authorization, amount, credit_card, options = {})
271
+ post = {}
272
+ post[:method] = 'refundWithCard'
273
+ add_request_id(post)
274
+
275
+ params = {}
276
+ if credit_card
277
+ _, params[:sessionToken] = split_authorization(authorization)
278
+ add_payment_method(params, credit_card)
279
+ else
280
+ _, params[:accountToken] = split_authorization(authorization)
281
+ end
282
+ add_invoice(params, amount, options)
283
+ add_credentials(params, post[:method])
284
+
285
+ post[:params] = [params]
286
+ commit('v1/', post)
287
+ end
288
+
289
+ def reverse_or_void(method, pgwTID, options = {})
290
+ post = {}
291
+ post[:method] = method
292
+ add_request_id(post)
293
+
294
+ params = {}
295
+ params[:orderNumber] = options[:order_id]
296
+ params[:pgwTID] = pgwTID
297
+ add_credentials(params, post[:method])
298
+
299
+ post[:params] = [params]
300
+ commit('v1/', post)
301
+ end
302
+
303
+ def commit(endpoint, post)
304
+ raw_response = ssl_post(url() + endpoint, post_data(post), headers)
305
+ response = parse(raw_response)
306
+ rescue ResponseError => e
307
+ raw_response = e.response.body
308
+ response_error(raw_response)
309
+ rescue JSON::ParserError
310
+ unparsable_response(raw_response)
311
+ else
312
+ success = success_from(response)
313
+ Response.new(
314
+ success,
315
+ message_from(response),
316
+ response,
317
+ authorization: success ? authorization_from(response, post[:method]) : nil,
318
+ avs_result: success ? avs_from(response) : nil,
319
+ cvv_result: success ? cvv_from(response) : nil,
320
+ error_code: success ? nil : error_from(response),
321
+ test: test?
322
+ )
323
+ end
324
+
325
+ def headers
326
+ {
327
+ 'Content-Type' => 'application/json'
328
+ }
329
+ end
330
+
331
+ def post_data(params)
332
+ params.to_json
333
+ end
334
+
335
+ def url
336
+ test? ? test_url : live_url
337
+ end
338
+
339
+ def parse(body)
340
+ JSON.parse(body)
341
+ end
342
+
343
+ def success_from(response)
344
+ return false if response['result'].nil? || response['error']
345
+
346
+ if response['result'].key?('pgwResponseCode')
347
+ response['error'].nil? && response['result']['lastActionSucceeded'] == 1 && response['result']['pgwResponseCode'] == '100'
348
+ else
349
+ response['error'].nil? && response['result']['lastActionSucceeded'] == 1
350
+ end
351
+ end
352
+
353
+ def message_from(response)
354
+ return response['error'] if response['error']
355
+ return 'Failed' unless response.key?('result')
356
+
357
+ if response['result'].key?('pgwResponseCode')
358
+ RESPONSE_CODE_MAPPING[response['result']['pgwResponseCode']] || response['result']['responseText']
359
+ else
360
+ response['result']['lastActionSucceeded'] == 1 ? 'Succeeded' : 'Failed'
361
+ end
362
+ end
363
+
364
+ def error_from(response)
365
+ return response['error'] if response['error']
366
+ return 'Failed' unless response.key?('result')
367
+
368
+ return response['result']['pgwResponseCode'] || response['result']['processor']['responseCode'] || 'Failed'
369
+ end
370
+
371
+ def authorization_from(response, method)
372
+ method + '|' + (
373
+ response['result']['sessionId'] ||
374
+ response['result']['sessionToken'] ||
375
+ response['result']['pgwTID'] ||
376
+ response['result']['accountToken']
377
+ )
378
+ end
379
+
380
+ def split_authorization(authorization)
381
+ authorization.split('|')
382
+ end
383
+
384
+ def avs_from(response)
385
+ response['result'].key?('avsResponse') ? AVSResult.new(code: response['result']['avsResponse']) : nil
386
+ end
387
+
388
+ def cvv_from(response)
389
+ response['result'].key?('cvvResponse') ? CVVResult.new(response['result']['cvvResponse']) : nil
390
+ end
391
+
392
+ def response_error(raw_response)
393
+ response = parse(raw_response)
394
+ rescue JSON::ParserError
395
+ unparsable_response(raw_response)
396
+ else
397
+ return Response.new(
398
+ false,
399
+ message_from(response),
400
+ response,
401
+ test: test?
402
+ )
403
+ end
404
+
405
+ def unparsable_response(raw_response)
406
+ message = 'Invalid JSON response received from Latitude19Gateway. Please contact Latitude19Gateway if you continue to receive this message.'
407
+ message += " (The raw response returned by the API was #{raw_response.inspect})"
408
+ return Response.new(false, message)
409
+ end
410
+ end
411
+ end
412
+ end