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
@@ -4,14 +4,18 @@ module ActiveMerchant #:nodoc:
4
4
  class BogusGateway < Gateway
5
5
  AUTHORIZATION = '53433'
6
6
 
7
- SUCCESS_MESSAGE = "Bogus Gateway: Forced success"
8
- FAILURE_MESSAGE = "Bogus Gateway: Forced failure"
9
- ERROR_MESSAGE = "Bogus Gateway: Use CreditCard number ending in 1 for success, 2 for exception and anything else for error"
10
- UNSTORE_ERROR_MESSAGE = "Bogus Gateway: Use trans_id ending in 1 for success, 2 for exception and anything else for error"
11
- CAPTURE_ERROR_MESSAGE = "Bogus Gateway: Use authorization number ending in 1 for exception, 2 for error and anything else for success"
12
- VOID_ERROR_MESSAGE = "Bogus Gateway: Use authorization number ending in 1 for exception, 2 for error and anything else for success"
13
- REFUND_ERROR_MESSAGE = "Bogus Gateway: Use trans_id number ending in 1 for exception, 2 for error and anything else for success"
14
- CHECK_ERROR_MESSAGE = "Bogus Gateway: Use bank account number ending in 1 for success, 2 for exception and anything else for error"
7
+ AUTHORIZATION_EMV_SUCCESS = '8A023030'
8
+ AUTHORIZATION_EMV_DECLINE = '8A023035'
9
+
10
+ SUCCESS_MESSAGE = 'Bogus Gateway: Forced success'
11
+ FAILURE_MESSAGE = 'Bogus Gateway: Forced failure'
12
+ NUMBER_ERROR_MESSAGE = 'Bogus Gateway: Use CreditCard number ending in 1 for success, 2 for exception and anything else for error'
13
+ AMOUNT_ERROR_MESSAGE = 'Bogus Gateway: Use amount ending in 00 for success, 05 for failure and anything else for exception'
14
+ UNSTORE_ERROR_MESSAGE = 'Bogus Gateway: Use trans_id ending in 1 for success, 2 for exception and anything else for error'
15
+ CAPTURE_ERROR_MESSAGE = 'Bogus Gateway: Use authorization number ending in 1 for exception, 2 for error and anything else for success'
16
+ VOID_ERROR_MESSAGE = 'Bogus Gateway: Use authorization number ending in 1 for exception, 2 for error and anything else for success'
17
+ REFUND_ERROR_MESSAGE = 'Bogus Gateway: Use trans_id number ending in 1 for exception, 2 for error and anything else for success'
18
+ CHECK_ERROR_MESSAGE = 'Bogus Gateway: Use bank account number ending in 1 for success, 2 for exception and anything else for error'
15
19
 
16
20
  self.supported_countries = []
17
21
  self.supported_cardtypes = [:bogus]
@@ -19,26 +23,18 @@ module ActiveMerchant #:nodoc:
19
23
  self.display_name = 'Bogus'
20
24
 
21
25
  def authorize(money, paysource, options = {})
22
- money = amount(money)
23
- case normalize(paysource)
24
- when /1$/
25
- Response.new(true, SUCCESS_MESSAGE, {:authorized_amount => money}, :test => true, :authorization => AUTHORIZATION )
26
- when /2$/
27
- Response.new(false, FAILURE_MESSAGE, {:authorized_amount => money, :error => FAILURE_MESSAGE }, :test => true, :error_code => STANDARD_ERROR_CODE[:processing_error])
26
+ if paysource.respond_to?(:emv?) && paysource.emv?
27
+ authorize_emv(money, paysource, options)
28
28
  else
29
- raise Error, error_message(paysource)
29
+ authorize_swipe(money, paysource, options)
30
30
  end
31
31
  end
32
32
 
33
33
  def purchase(money, paysource, options = {})
34
- money = amount(money)
35
- case normalize(paysource)
36
- when /1$/, AUTHORIZATION
37
- Response.new(true, SUCCESS_MESSAGE, {:paid_amount => money}, :test => true, :authorization => AUTHORIZATION)
38
- when /2$/
39
- Response.new(false, FAILURE_MESSAGE, {:paid_amount => money, :error => FAILURE_MESSAGE }, :test => true, :error_code => STANDARD_ERROR_CODE[:processing_error])
34
+ if paysource.respond_to?(:emv?) && paysource.emv?
35
+ purchase_emv(money, paysource, options)
40
36
  else
41
- raise Error, error_message(paysource)
37
+ purchase_swipe(money, paysource, options)
42
38
  end
43
39
  end
44
40
 
@@ -51,9 +47,9 @@ module ActiveMerchant #:nodoc:
51
47
  money = amount(money)
52
48
  case normalize(paysource)
53
49
  when /1$/
54
- Response.new(true, SUCCESS_MESSAGE, {:paid_amount => money}, :test => true )
50
+ Response.new(true, SUCCESS_MESSAGE, { paid_amount: money }, test: true)
55
51
  when /2$/
56
- Response.new(false, FAILURE_MESSAGE, {:paid_amount => money, :error => FAILURE_MESSAGE }, :test => true, :error_code => STANDARD_ERROR_CODE[:processing_error])
52
+ Response.new(false, FAILURE_MESSAGE, { paid_amount: money, error: FAILURE_MESSAGE }, test: true, error_code: STANDARD_ERROR_CODE[:processing_error])
57
53
  else
58
54
  raise Error, error_message(paysource)
59
55
  end
@@ -65,9 +61,9 @@ module ActiveMerchant #:nodoc:
65
61
  when /1$/
66
62
  raise Error, REFUND_ERROR_MESSAGE
67
63
  when /2$/
68
- Response.new(false, FAILURE_MESSAGE, {:paid_amount => money, :error => FAILURE_MESSAGE }, :test => true, :error_code => STANDARD_ERROR_CODE[:processing_error])
64
+ Response.new(false, FAILURE_MESSAGE, { paid_amount: money, error: FAILURE_MESSAGE }, test: true, error_code: STANDARD_ERROR_CODE[:processing_error])
69
65
  else
70
- Response.new(true, SUCCESS_MESSAGE, {:paid_amount => money}, :test => true)
66
+ Response.new(true, SUCCESS_MESSAGE, { paid_amount: money }, test: true)
71
67
  end
72
68
  end
73
69
 
@@ -77,9 +73,9 @@ module ActiveMerchant #:nodoc:
77
73
  when /1$/
78
74
  raise Error, CAPTURE_ERROR_MESSAGE
79
75
  when /2$/
80
- Response.new(false, FAILURE_MESSAGE, {:paid_amount => money, :error => FAILURE_MESSAGE }, :test => true, :error_code => STANDARD_ERROR_CODE[:processing_error])
76
+ Response.new(false, FAILURE_MESSAGE, { paid_amount: money, error: FAILURE_MESSAGE }, test: true, error_code: STANDARD_ERROR_CODE[:processing_error])
81
77
  else
82
- Response.new(true, SUCCESS_MESSAGE, {:paid_amount => money}, :test => true)
78
+ Response.new(true, SUCCESS_MESSAGE, { paid_amount: money }, test: true)
83
79
  end
84
80
  end
85
81
 
@@ -88,18 +84,18 @@ module ActiveMerchant #:nodoc:
88
84
  when /1$/
89
85
  raise Error, VOID_ERROR_MESSAGE
90
86
  when /2$/
91
- Response.new(false, FAILURE_MESSAGE, {:authorization => reference, :error => FAILURE_MESSAGE }, :test => true, :error_code => STANDARD_ERROR_CODE[:processing_error])
87
+ Response.new(false, FAILURE_MESSAGE, { authorization: reference, error: FAILURE_MESSAGE }, test: true, error_code: STANDARD_ERROR_CODE[:processing_error])
92
88
  else
93
- Response.new(true, SUCCESS_MESSAGE, {:authorization => reference}, :test => true)
89
+ Response.new(true, SUCCESS_MESSAGE, { authorization: reference }, test: true)
94
90
  end
95
91
  end
96
92
 
97
93
  def store(paysource, options = {})
98
94
  case normalize(paysource)
99
95
  when /1$/
100
- Response.new(true, SUCCESS_MESSAGE, {:billingid => '1'}, :test => true, :authorization => AUTHORIZATION)
96
+ Response.new(true, SUCCESS_MESSAGE, { billingid: '1' }, test: true, authorization: AUTHORIZATION)
101
97
  when /2$/
102
- Response.new(false, FAILURE_MESSAGE, {:billingid => nil, :error => FAILURE_MESSAGE }, :test => true, :error_code => STANDARD_ERROR_CODE[:processing_error])
98
+ Response.new(false, FAILURE_MESSAGE, { billingid: nil, error: FAILURE_MESSAGE }, test: true, error_code: STANDARD_ERROR_CODE[:processing_error])
103
99
  else
104
100
  raise Error, error_message(paysource)
105
101
  end
@@ -108,9 +104,9 @@ module ActiveMerchant #:nodoc:
108
104
  def unstore(reference, options = {})
109
105
  case reference
110
106
  when /1$/
111
- Response.new(true, SUCCESS_MESSAGE, {}, :test => true)
107
+ Response.new(true, SUCCESS_MESSAGE, {}, test: true)
112
108
  when /2$/
113
- Response.new(false, FAILURE_MESSAGE, {:error => FAILURE_MESSAGE },:test => true, :error_code => STANDARD_ERROR_CODE[:processing_error])
109
+ Response.new(false, FAILURE_MESSAGE, { error: FAILURE_MESSAGE }, test: true, error_code: STANDARD_ERROR_CODE[:processing_error])
114
110
  else
115
111
  raise Error, UNSTORE_ERROR_MESSAGE
116
112
  end
@@ -118,6 +114,54 @@ module ActiveMerchant #:nodoc:
118
114
 
119
115
  private
120
116
 
117
+ def authorize_emv(money, paysource, options = {})
118
+ money = amount(money)
119
+ case money
120
+ when /00$/
121
+ Response.new(true, SUCCESS_MESSAGE, { authorized_amount: money }, test: true, authorization: AUTHORIZATION, emv_authorization: AUTHORIZATION_EMV_SUCCESS)
122
+ when /05$/
123
+ Response.new(false, FAILURE_MESSAGE, { authorized_amount: money, error: FAILURE_MESSAGE }, test: true, error_code: STANDARD_ERROR_CODE[:processing_error], emv_authorization: AUTHORIZATION_EMV_DECLINE)
124
+ else
125
+ raise Error, error_message(paysource)
126
+ end
127
+ end
128
+
129
+ def authorize_swipe(money, paysource, options = {})
130
+ money = amount(money)
131
+ case normalize(paysource)
132
+ when /1$/, AUTHORIZATION
133
+ Response.new(true, SUCCESS_MESSAGE, { authorized_amount: money }, test: true, authorization: AUTHORIZATION)
134
+ when /2$/
135
+ Response.new(false, FAILURE_MESSAGE, { authorized_amount: money, error: FAILURE_MESSAGE }, test: true, error_code: STANDARD_ERROR_CODE[:processing_error])
136
+ else
137
+ raise Error, error_message(paysource)
138
+ end
139
+ end
140
+
141
+ def purchase_emv(money, paysource, options = {})
142
+ money = amount(money)
143
+ case money
144
+ when /00$/
145
+ Response.new(true, SUCCESS_MESSAGE, { paid_amount: money }, test: true, authorization: AUTHORIZATION, emv_authorization: AUTHORIZATION_EMV_SUCCESS)
146
+ when /05$/
147
+ Response.new(false, FAILURE_MESSAGE, { paid_amount: money, error: FAILURE_MESSAGE }, test: true, error_code: STANDARD_ERROR_CODE[:processing_error], emv_authorization: AUTHORIZATION_EMV_DECLINE)
148
+ else
149
+ raise Error, error_message(paysource)
150
+ end
151
+ end
152
+
153
+ def purchase_swipe(money, paysource, options = {})
154
+ money = amount(money)
155
+ case normalize(paysource)
156
+ when /1$/, AUTHORIZATION
157
+ Response.new(true, SUCCESS_MESSAGE, { paid_amount: money }, test: true, authorization: AUTHORIZATION)
158
+ when /2$/
159
+ Response.new(false, FAILURE_MESSAGE, { paid_amount: money, error: FAILURE_MESSAGE }, test: true, error_code: STANDARD_ERROR_CODE[:processing_error])
160
+ else
161
+ raise Error, error_message(paysource)
162
+ end
163
+ end
164
+
121
165
  def normalize(paysource)
122
166
  if paysource.respond_to?(:account_number) && (paysource.try(:number).blank? || paysource.number.blank?)
123
167
  paysource.account_number
@@ -129,10 +173,12 @@ module ActiveMerchant #:nodoc:
129
173
  end
130
174
 
131
175
  def error_message(paysource)
132
- if paysource.respond_to?(:account_number)
176
+ if paysource.respond_to?(:emv?) && paysource.emv?
177
+ AMOUNT_ERROR_MESSAGE
178
+ elsif paysource.respond_to?(:account_number)
133
179
  CHECK_ERROR_MESSAGE
134
180
  elsif paysource.respond_to?(:number)
135
- ERROR_MESSAGE
181
+ NUMBER_ERROR_MESSAGE
136
182
  end
137
183
  end
138
184
  end
@@ -1,44 +1,43 @@
1
- require "nokogiri"
1
+ require 'nokogiri'
2
2
 
3
3
  module ActiveMerchant #:nodoc:
4
4
  module Billing #:nodoc:
5
5
  class BorgunGateway < Gateway
6
- self.display_name = "Borgun"
6
+ self.display_name = 'Borgun'
7
+ self.homepage_url = 'http://www.borgun.com'
7
8
 
8
9
  self.test_url = 'https://gatewaytest.borgun.is/ws/Heimir.pub.ws:Authorization'
9
10
  self.live_url = 'https://gateway01.borgun.is/ws/Heimir.pub.ws:Authorization'
10
11
 
11
- self.supported_countries = ['IS']
12
+ self.supported_countries = %w[IS GB HU CZ DE DK SE]
12
13
  self.default_currency = 'ISK'
13
14
  self.money_format = :cents
14
- self.supported_cardtypes = [:visa, :master, :american_express, :diners_club, :discover, :jcb]
15
+ self.supported_cardtypes = %i[visa master american_express diners_club discover jcb]
15
16
 
16
17
  self.homepage_url = 'https://www.borgun.is/'
17
18
 
18
- def initialize(options={})
19
+ def initialize(options = {})
19
20
  requires!(options, :processor, :merchant_id, :username, :password)
20
21
  super
21
22
  end
22
23
 
23
- def purchase(money, payment, options={})
24
+ def purchase(money, payment, options = {})
24
25
  post = {}
25
26
  post[:TransType] = '1'
26
27
  add_invoice(post, money, options)
27
28
  add_payment_method(post, payment)
28
-
29
29
  commit('sale', post)
30
30
  end
31
31
 
32
- def authorize(money, payment, options={})
32
+ def authorize(money, payment, options = {})
33
33
  post = {}
34
34
  post[:TransType] = '5'
35
35
  add_invoice(post, money, options)
36
36
  add_payment_method(post, payment)
37
-
38
- commit('authonly', post)
37
+ commit('authonly', post, options)
39
38
  end
40
39
 
41
- def capture(money, authorization, options={})
40
+ def capture(money, authorization, options = {})
42
41
  post = {}
43
42
  post[:TransType] = '1'
44
43
  add_invoice(post, money, options)
@@ -46,7 +45,7 @@ module ActiveMerchant #:nodoc:
46
45
  commit('capture', post)
47
46
  end
48
47
 
49
- def refund(money, authorization, options={})
48
+ def refund(money, authorization, options = {})
50
49
  post = {}
51
50
  post[:TransType] = '3'
52
51
  add_invoice(post, money, options)
@@ -54,39 +53,51 @@ module ActiveMerchant #:nodoc:
54
53
  commit('refund', post)
55
54
  end
56
55
 
57
- def void(authorization, options={})
56
+ def void(authorization, options = {})
58
57
  post = {}
59
- # TransType and TrAmount must match original values from auth or purchase.
60
- _, _, _, _, _, transtype, tramount = split_authorization(authorization)
58
+ # TransType, TrAmount, and currency must match original values from auth or purchase.
59
+ _, _, _, _, _, transtype, tramount, currency = split_authorization(authorization)
61
60
  post[:TransType] = transtype
61
+ options[:currency] = options[:currency] || CURRENCY_CODES.key(currency)
62
62
  add_invoice(post, tramount.to_i, options)
63
63
  add_reference(post, authorization)
64
64
  commit('void', post)
65
65
  end
66
66
 
67
+ def supports_scrubbing
68
+ true
69
+ end
70
+
71
+ def scrub(transcript)
72
+ transcript.gsub(%r((&lt;PAN&gt;)[^&]*(&lt;/PAN&gt;))i, '\1[FILTERED]\2').
73
+ gsub(%r((&lt;CVC2&gt;)[^&]*(&lt;/CVC2&gt;))i, '\1[FILTERED]\2').
74
+ gsub(%r(((?:\r\n)?Authorization: Basic )[^\r\n]+(\r\n)?), '\1[FILTERED]\2')
75
+ end
76
+
67
77
  private
68
78
 
69
- CURRENCY_CODES = Hash.new{|h,k| raise ArgumentError.new("Unsupported currency for HDFC: #{k}")}
70
- CURRENCY_CODES["ISK"] = "352"
71
- CURRENCY_CODES["EUR"] = "978"
79
+ CURRENCY_CODES = Hash.new { |_h, k| raise ArgumentError.new("Unsupported currency for HDFC: #{k}") }
80
+ CURRENCY_CODES['ISK'] = '352'
81
+ CURRENCY_CODES['EUR'] = '978'
82
+ CURRENCY_CODES['USD'] = '840'
72
83
 
73
84
  def add_invoice(post, money, options)
74
85
  post[:TrAmount] = amount(money)
75
86
  post[:TrCurrency] = CURRENCY_CODES[options[:currency] || currency(money)]
87
+ post[:TerminalID] = options[:terminal_id] || '1'
76
88
  end
77
89
 
78
90
  def add_payment_method(post, payment_method)
79
91
  post[:PAN] = payment_method.number
80
92
  post[:ExpDate] = format(payment_method.year, :two_digits) + format(payment_method.month, :two_digits)
81
93
  post[:CVC2] = payment_method.verification_value
82
- post[:DateAndTime] = Time.now.strftime("%y%m%d%H%M%S")
94
+ post[:DateAndTime] = Time.now.strftime('%y%m%d%H%M%S')
83
95
  post[:RRN] = 'AMRCNT' + six_random_digits
84
96
  end
85
97
 
86
98
  def add_reference(post, authorization)
87
- dateandtime, batch, transaction, rrn, authcode, _, _ = split_authorization(authorization)
99
+ dateandtime, _batch, transaction, rrn, authcode, = split_authorization(authorization)
88
100
  post[:DateAndTime] = dateandtime
89
- post[:Batch] = batch
90
101
  post[:Transaction] = transaction
91
102
  post[:RRN] = rrn
92
103
  post[:AuthCode] = authcode
@@ -101,7 +112,7 @@ module ActiveMerchant #:nodoc:
101
112
  body.children.each do |node|
102
113
  if node.text?
103
114
  next
104
- elsif (node.elements.size == 0)
115
+ elsif node.elements.size == 0
105
116
  response[node.name.downcase.to_sym] = node.text
106
117
  else
107
118
  node.elements.each do |childnode|
@@ -114,14 +125,12 @@ module ActiveMerchant #:nodoc:
114
125
  response
115
126
  end
116
127
 
117
- def commit(action, post)
128
+ def commit(action, post, options = {})
118
129
  post[:Version] = '1000'
119
130
  post[:Processor] = @options[:processor]
120
131
  post[:MerchantID] = @options[:merchant_id]
121
- post[:TerminalID] = 1
122
132
 
123
- url = (test? ? test_url : live_url)
124
- request = build_request(action, post)
133
+ request = build_request(action, post, options)
125
134
  raw = ssl_post(url(action), request, headers)
126
135
  pairs = parse(raw)
127
136
  success = success_from(pairs)
@@ -141,7 +150,7 @@ module ActiveMerchant #:nodoc:
141
150
 
142
151
  def message_from(succeeded, response)
143
152
  if succeeded
144
- "Succeeded"
153
+ 'Succeeded'
145
154
  else
146
155
  response[:message] || "Error with ActionCode=#{response[:actioncode]}"
147
156
  end
@@ -155,36 +164,48 @@ module ActiveMerchant #:nodoc:
155
164
  response[:rrn],
156
165
  response[:authcode],
157
166
  response[:transtype],
158
- response[:tramount]
159
- ].join("|")
167
+ response[:tramount],
168
+ response[:trcurrency]
169
+ ].join('|')
160
170
  end
161
171
 
162
172
  def split_authorization(authorization)
163
- dateandtime, batch, transaction, rrn, authcode, transtype, tramount = authorization.split("|")
164
- [dateandtime, batch, transaction, rrn, authcode, transtype, tramount]
173
+ dateandtime, batch, transaction, rrn, authcode, transtype, tramount, currency = authorization.split('|')
174
+ [dateandtime, batch, transaction, rrn, authcode, transtype, tramount, currency]
165
175
  end
166
176
 
167
177
  def headers
168
178
  {
169
- 'Authorization' => 'Basic ' + Base64.strict_encode64(@options[:username].to_s + ':' + @options[:password].to_s),
179
+ 'Authorization' => 'Basic ' + Base64.strict_encode64(@options[:username].to_s + ':' + @options[:password].to_s)
170
180
  }
171
181
  end
172
182
 
173
- def build_request(action, post)
174
- mode = (action == 'void') ? 'cancel' : 'get'
175
- xml = Builder::XmlMarkup.new :indent => 18
176
- xml.instruct!(:xml, :version => '1.0', :encoding => 'utf-8')
183
+ def build_request(action, post, options = {})
184
+ mode = action == 'void' ? 'cancel' : 'get'
185
+ xml = Builder::XmlMarkup.new indent: 18
186
+ xml.instruct!(:xml, version: '1.0', encoding: 'utf-8')
177
187
  xml.tag!("#{mode}Authorization") do
178
188
  post.each do |field, value|
179
189
  xml.tag!(field, value)
180
190
  end
191
+ build_airline_xml(xml, options[:passenger_itinerary_data]) if options[:passenger_itinerary_data]
181
192
  end
182
193
  inner = CGI.escapeHTML(xml.target!)
183
- envelope(mode).sub(/{{ :body }}/,inner)
194
+ envelope(mode).sub(/{{ :body }}/, inner)
195
+ end
196
+
197
+ def build_airline_xml(xml, airline_data)
198
+ xml.tag!('PassengerItineraryData') do
199
+ xml.tag!('A1') do
200
+ airline_data.each do |field, value|
201
+ xml.tag!(field, value)
202
+ end
203
+ end
204
+ end
184
205
  end
185
206
 
186
207
  def envelope(mode)
187
- <<-EOS
208
+ <<-XML
188
209
  <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:aut="http://Borgun/Heimir/pub/ws/Authorization">
189
210
  <soapenv:Header/>
190
211
  <soapenv:Body>
@@ -195,7 +216,7 @@ module ActiveMerchant #:nodoc:
195
216
  </aut:#{mode}AuthorizationInput>
196
217
  </soapenv:Body>
197
218
  </soapenv:Envelope>
198
- EOS
219
+ XML
199
220
  end
200
221
 
201
222
  def url(action)
@@ -203,7 +224,7 @@ module ActiveMerchant #:nodoc:
203
224
  end
204
225
 
205
226
  def six_random_digits
206
- (0...6).map { (48 + rand(10)).chr }.join
227
+ (0...6).map { rand(48..57).chr }.join
207
228
  end
208
229
  end
209
230
  end