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
@@ -1,8 +1,7 @@
1
1
  module ActiveMerchant #:nodoc:
2
2
  module Billing #:nodoc:
3
3
  class PaystationGateway < Gateway
4
-
5
- self.live_url = self.test_url = "https://www.paystation.co.nz/direct/paystation.dll"
4
+ self.live_url = self.test_url = 'https://www.paystation.co.nz/direct/paystation.dll'
6
5
 
7
6
  # an "error code" of "0" means "No error - transaction successful"
8
7
  SUCCESSFUL_RESPONSE_CODE = '0'
@@ -14,7 +13,7 @@ module ActiveMerchant #:nodoc:
14
13
  self.supported_countries = ['NZ']
15
14
 
16
15
  # TODO: check this with paystation (amex and diners need to be enabled)
17
- self.supported_cardtypes = [:visa, :master, :american_express, :diners_club ]
16
+ self.supported_cardtypes = %i[visa master american_express diners_club]
18
17
 
19
18
  self.homepage_url = 'http://paystation.co.nz'
20
19
  self.display_name = 'Paystation'
@@ -32,9 +31,7 @@ module ActiveMerchant #:nodoc:
32
31
 
33
32
  add_invoice(post, options)
34
33
  add_amount(post, money, options)
35
-
36
34
  add_credit_card(post, credit_card)
37
-
38
35
  add_authorize_flag(post, options)
39
36
 
40
37
  commit(post)
@@ -45,7 +42,6 @@ module ActiveMerchant #:nodoc:
45
42
 
46
43
  add_invoice(post, options)
47
44
  add_amount(post, money, options)
48
-
49
45
  add_authorization_token(post, authorization_token, options[:credit_card_verification])
50
46
 
51
47
  commit(post)
@@ -78,122 +74,131 @@ module ActiveMerchant #:nodoc:
78
74
  commit(post)
79
75
  end
80
76
 
81
- private
82
-
83
- def new_request
84
- {
85
- :pi => @options[:paystation_id], # paystation account id
86
- :gi => @options[:gateway_id], # paystation gateway id
87
- "2p" => "t", # two-party transaction type
88
- :nr => "t", # -- redirect??
89
- :df => "yymm" # date format: optional sometimes, required others
90
- }
91
- end
92
-
93
- def add_customer_data(post, options)
94
- post[:mc] = options[:customer]
95
- end
77
+ def refund(money, authorization, options = {})
78
+ post = new_request
79
+ add_amount(post, money, options)
80
+ add_invoice(post, options)
81
+ add_refund_specific_fields(post, authorization)
96
82
 
97
- def add_invoice(post, options)
98
- requires!(options, :order_id)
83
+ commit(post)
84
+ end
99
85
 
100
- post[:ms] = options[:order_id] # "Merchant Session", must be unique per request
101
- post[:mo] = options[:invoice] # "Order Details", displayed in Paystation Admin
102
- post[:mr] = options[:description] # "Merchant Reference Code", seen from Paystation Admin
103
- end
86
+ def verify(credit_card, options = {})
87
+ authorize(0, credit_card, options)
88
+ end
104
89
 
105
- def add_credit_card(post, credit_card)
90
+ def supports_scrubbing?
91
+ true
92
+ end
106
93
 
107
- post[:cn] = credit_card.number
108
- post[:ct] = credit_card.brand
109
- post[:ex] = format_date(credit_card.month, credit_card.year)
110
- post[:cc] = credit_card.verification_value if credit_card.verification_value?
94
+ def scrub(transcript)
95
+ transcript.
96
+ gsub(%r((pstn_cn=)\d*), '\1[FILTERED]').
97
+ gsub(%r((pstn_cc=)\d*), '\1[FILTERED]')
98
+ end
111
99
 
112
- end
100
+ private
113
101
 
114
- # bill a token (stored via "store") rather than a Credit Card
115
- def add_token(post, token)
116
- post[:fp] = "t" # turn on "future payments" - what paystation calls Token Billing
117
- post[:ft] = token
118
- end
102
+ def new_request
103
+ {
104
+ :pi => @options[:paystation_id], # paystation account id
105
+ :gi => @options[:gateway_id], # paystation gateway id
106
+ '2p' => 't', # two-party transaction type
107
+ :nr => 't', # -- redirect??
108
+ :df => 'yymm' # date format: optional sometimes, required others
109
+ }
110
+ end
119
111
 
120
- def store_credit_card(post, options)
112
+ def add_customer_data(post, options)
113
+ post[:mc] = options[:customer]
114
+ end
121
115
 
122
- post[:fp] = "t" # turn on "future payments" - what paystation calls Token Billing
123
- post[:fs] = "t" # tells paystation to store right now, not bill
124
- post[:ft] = options[:token] if options[:token] # specify a token to use that, or let Paystation generate one
116
+ def add_invoice(post, options)
117
+ post[:ms] = generate_unique_id
118
+ post[:mo] = options[:description]
119
+ post[:mr] = options[:order_id]
120
+ end
125
121
 
126
- end
122
+ def add_credit_card(post, credit_card)
123
+ post[:cn] = credit_card.number
124
+ post[:ct] = credit_card.brand
125
+ post[:ex] = format_date(credit_card.month, credit_card.year)
126
+ post[:cc] = credit_card.verification_value if credit_card.verification_value?
127
+ end
127
128
 
128
- def add_authorize_flag(post, options)
129
- post[:pa] = "t" # tells Paystation that this is a pre-auth authorisation payment (account must be in pre-auth mode)
130
- end
129
+ def add_token(post, token)
130
+ post[:fp] = 't' # turn on "future payments" - what paystation calls Token Billing
131
+ post[:ft] = token
132
+ end
131
133
 
132
- def add_authorization_token(post, auth_token, verification_value = nil)
133
- post[:cp] = "t" # Capture Payment flag tells Paystation this transaction should be treated as a capture payment
134
- post[:cx] = auth_token
135
- post[:cc] = verification_value
136
- end
134
+ def store_credit_card(post, options)
135
+ post[:fp] = 't' # turn on "future payments" - what paystation calls Token Billing
136
+ post[:fs] = 't' # tells paystation to store right now, not bill
137
+ post[:ft] = options[:token] if options[:token] # specify a token to use that, or let Paystation generate one
138
+ end
137
139
 
138
- def add_amount(post, money, options)
140
+ def add_authorize_flag(post, options)
141
+ post[:pa] = 't' # tells Paystation that this is a pre-auth authorisation payment (account must be in pre-auth mode)
142
+ end
139
143
 
140
- post[:am] = amount(money)
141
- post[:cu] = options[:currency] || currency(money)
144
+ def add_refund_specific_fields(post, authorization)
145
+ post[:rc] = 't'
146
+ post[:rt] = authorization
147
+ end
142
148
 
143
- end
149
+ def add_authorization_token(post, auth_token, verification_value = nil)
150
+ post[:cp] = 't' # Capture Payment flag – tells Paystation this transaction should be treated as a capture payment
151
+ post[:cx] = auth_token
152
+ post[:cc] = verification_value
153
+ end
144
154
 
145
- def parse(xml_response)
146
- response = {}
155
+ def add_amount(post, money, options)
156
+ post[:am] = amount(money)
157
+ post[:cu] = options[:currency] || currency(money)
158
+ end
147
159
 
148
- xml = REXML::Document.new(xml_response)
160
+ def parse(xml_response)
161
+ response = {}
149
162
 
150
- # for normal payments, the root node is <Response>
151
- # for "future payments", it's <PaystationFuturePaymentResponse>
152
- xml.elements.each("#{xml.root.name}/*") do |element|
153
- response[element.name.underscore.to_sym] = element.text
154
- end
163
+ xml = REXML::Document.new(xml_response)
155
164
 
156
- response
165
+ xml.elements.each("#{xml.root.name}/*") do |element|
166
+ response[element.name.underscore.to_sym] = element.text
157
167
  end
158
168
 
159
- def commit(post)
160
-
161
- post[:tm] = "T" if test? # test mode
162
-
163
- pstn_prefix_params = post.collect { |key, value| "pstn_#{key}=#{CGI.escape(value.to_s)}" }.join("&")
169
+ response
170
+ end
164
171
 
165
- # need include paystation param as "initiator flag for payment engine"
166
- data = ssl_post(self.live_url, "#{pstn_prefix_params}&paystation=_empty")
167
- response = parse(data)
168
- message = message_from(response)
172
+ def commit(post)
173
+ post[:tm] = 'T' if test?
174
+ pstn_prefix_params = post.collect { |key, value| "pstn_#{key}=#{CGI.escape(value.to_s)}" }.join('&')
169
175
 
170
- PaystationResponse.new(success?(response), message, response,
171
- :test => (response[:tm] && response[:tm].downcase == "t"),
172
- :authorization => response[:paystation_transaction_id]
173
- )
174
- end
176
+ data = ssl_post(self.live_url, "#{pstn_prefix_params}&paystation=_empty")
177
+ response = parse(data)
178
+ message = message_from(response)
175
179
 
176
- def success?(response)
177
- (response[:ec] == SUCCESSFUL_RESPONSE_CODE) || (response[:ec] == SUCCESSFUL_FUTURE_PAYMENT)
178
- end
180
+ PaystationResponse.new(success?(response), message, response,
181
+ test: (response[:tm]&.casecmp('t')&.zero?),
182
+ authorization: response[:paystation_transaction_id])
183
+ end
179
184
 
180
- def message_from(response)
181
- response[:em]
182
- end
185
+ def success?(response)
186
+ (response[:ec] == SUCCESSFUL_RESPONSE_CODE) || (response[:ec] == SUCCESSFUL_FUTURE_PAYMENT)
187
+ end
183
188
 
184
- def format_date(month, year)
185
- "#{format(year, :two_digits)}#{format(month, :two_digits)}"
186
- end
189
+ def message_from(response)
190
+ response[:em]
191
+ end
187
192
 
193
+ def format_date(month, year)
194
+ "#{format(year, :two_digits)}#{format(month, :two_digits)}"
195
+ end
188
196
  end
189
197
 
190
198
  class PaystationResponse < Response
191
- # add a method to response so we can easily get the token
192
- # for Validate transactions
193
199
  def token
194
- @params["future_payment_token"]
200
+ @params['future_payment_token']
195
201
  end
196
202
  end
197
203
  end
198
204
  end
199
-
@@ -0,0 +1,249 @@
1
+ # encoding: utf-8
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ class PayuInGateway < Gateway
6
+ self.test_url = 'https://test.payu.in/_payment'
7
+ self.live_url = 'https://secure.payu.in/_payment'
8
+
9
+ TEST_INFO_URL = 'https://test.payu.in/merchant/postservice.php?form=2'
10
+ LIVE_INFO_URL = 'https://info.payu.in/merchant/postservice.php?form=2'
11
+
12
+ self.supported_countries = ['IN']
13
+ self.default_currency = 'INR'
14
+ self.supported_cardtypes = %i[visa master american_express diners_club maestro]
15
+
16
+ self.homepage_url = 'https://www.payu.in/'
17
+ self.display_name = 'PayU India'
18
+
19
+ def initialize(options = {})
20
+ requires!(options, :key, :salt)
21
+ super
22
+ end
23
+
24
+ def purchase(money, payment, options = {})
25
+ requires!(options, :order_id)
26
+
27
+ post = {}
28
+ add_invoice(post, money, options)
29
+ add_payment(post, payment)
30
+ add_addresses(post, options)
31
+ add_customer_data(post, options)
32
+ add_auth(post)
33
+
34
+ MultiResponse.run do |r|
35
+ r.process { commit(url('purchase'), post) }
36
+ if r.params['enrolled'].to_s == '0'
37
+ r.process { commit(r.params['post_uri'], r.params['form_post_vars']) }
38
+ else
39
+ r.process { handle_3dsecure(r) }
40
+ end
41
+ end
42
+ end
43
+
44
+ def refund(money, authorization, options = {})
45
+ raise ArgumentError, 'Amount is required' unless money
46
+
47
+ post = {}
48
+
49
+ post[:command] = 'cancel_refund_transaction'
50
+ post[:var1] = authorization
51
+ post[:var2] = generate_unique_id
52
+ post[:var3] = amount(money)
53
+
54
+ add_auth(post, :command, :var1)
55
+
56
+ commit(url('refund'), post)
57
+ end
58
+
59
+ def supports_scrubbing?
60
+ true
61
+ end
62
+
63
+ def scrub(transcript)
64
+ transcript.
65
+ gsub(/(ccnum=)[^&\n"]*(&|\n|"|$)/, '\1[FILTERED]\2').
66
+ gsub(/(ccvv=)[^&\n"]*(&|\n|"|$)/, '\1[FILTERED]\2').
67
+ gsub(/(card_hash=)[^&\n"]*(&|\n|"|$)/, '\1[FILTERED]\2').
68
+ gsub(/(ccnum":")[^"]*(")/, '\1[FILTERED]\2').
69
+ gsub(/(ccvv":")[^"]*(")/, '\1[FILTERED]\2')
70
+ end
71
+
72
+ private
73
+
74
+ PAYMENT_DIGEST_KEYS = %w(
75
+ txnid amount productinfo firstname email
76
+ udf1 udf2 udf3 udf4 udf5
77
+ bogus bogus bogus bogus bogus
78
+ )
79
+ def add_auth(post, *digest_keys)
80
+ post[:key] = @options[:key]
81
+ post[:txn_s2s_flow] = 1
82
+
83
+ digest_keys = PAYMENT_DIGEST_KEYS if digest_keys.empty?
84
+ digest = Digest::SHA2.new(512)
85
+ digest << @options[:key] << '|'
86
+ digest_keys.each do |key|
87
+ digest << (post[key.to_sym] || '') << '|'
88
+ end
89
+ digest << @options[:salt]
90
+ post[:hash] = digest.hexdigest
91
+ end
92
+
93
+ def add_customer_data(post, options)
94
+ post[:email] = clean(options[:email] || 'unknown@example.com', nil, 50)
95
+ post[:phone] = clean((options[:billing_address] && options[:billing_address][:phone]) || '11111111111', :numeric, 50)
96
+ end
97
+
98
+ def add_addresses(post, options)
99
+ if options[:billing_address]
100
+ post[:address1] = clean(options[:billing_address][:address1], :text, 100)
101
+ post[:address2] = clean(options[:billing_address][:address2], :text, 100)
102
+ post[:city] = clean(options[:billing_address][:city], :text, 50)
103
+ post[:state] = clean(options[:billing_address][:state], :text, 50)
104
+ post[:country] = clean(options[:billing_address][:country], :text, 50)
105
+ post[:zipcode] = clean(options[:billing_address][:zip], :numeric, 20)
106
+ end
107
+
108
+ if options[:shipping_address]
109
+ if options[:shipping_address][:name]
110
+ first, *rest = options[:shipping_address][:name].split(/\s+/)
111
+ post[:shipping_firstname] = clean(first, :name, 60)
112
+ post[:shipping_lastname] = clean(rest.join(' '), :name, 20)
113
+ end
114
+ post[:shipping_address1] = clean(options[:shipping_address][:address1], :text, 100)
115
+ post[:shipping_address2] = clean(options[:shipping_address][:address2], :text, 100)
116
+ post[:shipping_city] = clean(options[:shipping_address][:city], :text, 50)
117
+ post[:shipping_state] = clean(options[:shipping_address][:state], :text, 50)
118
+ post[:shipping_country] = clean(options[:shipping_address][:country], :text, 50)
119
+ post[:shipping_zipcode] = clean(options[:shipping_address][:zip], :numeric, 20)
120
+ post[:shipping_phone] = clean(options[:shipping_address][:phone], :numeric, 50)
121
+ end
122
+ end
123
+
124
+ def add_invoice(post, money, options)
125
+ post[:amount] = amount(money)
126
+
127
+ post[:txnid] = clean(options[:order_id], :alphanumeric, 30)
128
+ post[:productinfo] = clean(options[:description] || 'Purchase', nil, 100)
129
+
130
+ post[:surl] = 'http://example.com'
131
+ post[:furl] = 'http://example.com'
132
+ end
133
+
134
+ BRAND_MAP = {
135
+ visa: 'VISA',
136
+ master: 'MAST',
137
+ american_express: 'AMEX',
138
+ diners_club: 'DINR',
139
+ maestro: 'MAES'
140
+ }
141
+
142
+ def add_payment(post, payment)
143
+ post[:pg] = 'CC'
144
+ post[:firstname] = clean(payment.first_name, :name, 60)
145
+ post[:lastname] = clean(payment.last_name, :name, 20)
146
+
147
+ post[:bankcode] = BRAND_MAP[payment.brand.to_sym]
148
+ post[:ccnum] = payment.number
149
+ post[:ccvv] = payment.verification_value
150
+ post[:ccname] = payment.name
151
+ post[:ccexpmon] = format(payment.month, :two_digits)
152
+ post[:ccexpyr] = format(payment.year, :four_digits)
153
+ end
154
+
155
+ def clean(value, format, maxlength)
156
+ value ||= ''
157
+ value =
158
+ case format
159
+ when :alphanumeric
160
+ value.gsub(/[^A-Za-z0-9]/, '')
161
+ when :name
162
+ value.gsub(/[^A-Za-z ]/, '')
163
+ when :numeric
164
+ value.gsub(/[^0-9]/, '')
165
+ when :text
166
+ value.gsub(/[^A-Za-z0-9@\-_\/\. ]/, '')
167
+ when nil
168
+ value
169
+ else
170
+ raise "Unknown format #{format} for #{value}"
171
+ end
172
+ value[0...maxlength]
173
+ end
174
+
175
+ def parse(body)
176
+ top = JSON.parse(body)
177
+
178
+ if result = top.delete('result')
179
+ result.split('&').inject({}) do |hash, string|
180
+ key, value = string.split('=')
181
+ hash[CGI.unescape(key).downcase] = CGI.unescape(value || '')
182
+ hash
183
+ end.each do |key, value|
184
+ if top[key]
185
+ top["result_#{key}"] = value
186
+ else
187
+ top[key] = value
188
+ end
189
+ end
190
+ end
191
+
192
+ if response = top.delete('response')
193
+ top.merge!(response)
194
+ end
195
+
196
+ top
197
+ rescue JSON::ParserError
198
+ {
199
+ 'error' => "Invalid response received from the PayU API. (The raw response was `#{body}`)."
200
+ }
201
+ end
202
+
203
+ def commit(url, parameters)
204
+ response = parse(ssl_post(url, post_data(parameters), 'Accept-Encoding' => 'identity'))
205
+
206
+ Response.new(
207
+ success_from(response),
208
+ message_from(response),
209
+ response,
210
+ authorization: authorization_from(response),
211
+ test: test?
212
+ )
213
+ end
214
+
215
+ def url(action)
216
+ case action
217
+ when 'purchase'
218
+ (test? ? test_url : live_url)
219
+ else
220
+ (test? ? TEST_INFO_URL : LIVE_INFO_URL)
221
+ end
222
+ end
223
+
224
+ def success_from(response)
225
+ if response['result_status']
226
+ (response['status'] == 'success' && response['result_status'] == 'success')
227
+ else
228
+ (response['status'] == 'success' || response['status'].to_s == '1')
229
+ end
230
+ end
231
+
232
+ def message_from(response)
233
+ (response['error_message'] || response['error'] || response['msg'])
234
+ end
235
+
236
+ def authorization_from(response)
237
+ response['mihpayid']
238
+ end
239
+
240
+ def post_data(parameters = {})
241
+ PostData.new.merge!(parameters).to_post_data
242
+ end
243
+
244
+ def handle_3dsecure(response)
245
+ Response.new(false, '3D-secure enrolled cards are not supported.')
246
+ end
247
+ end
248
+ end
249
+ end