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,377 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class QuickbooksGateway < Gateway
4
+ self.test_url = 'https://sandbox.api.intuit.com'
5
+ self.live_url = 'https://api.intuit.com'
6
+
7
+ self.supported_countries = ['US']
8
+ self.default_currency = 'USD'
9
+ self.supported_cardtypes = %i[visa master american_express discover diners]
10
+
11
+ self.homepage_url = 'http://payments.intuit.com'
12
+ self.display_name = 'QuickBooks Payments'
13
+ BASE = '/quickbooks/v4/payments'
14
+ ENDPOINT = "#{BASE}/charges"
15
+ VOID_ENDPOINT = "#{BASE}/txn-requests"
16
+ REFRESH_URI = 'https://oauth.platform.intuit.com/oauth2/v1/tokens/bearer'
17
+
18
+ # https://developer.intuit.com/docs/0150_payments/0300_developer_guides/error_handling
19
+
20
+ STANDARD_ERROR_CODE_MAPPING = {
21
+ # Fraud Warnings
22
+ 'PMT-1000' => STANDARD_ERROR_CODE[:processing_error], # payment was accepted, but refund was unsuccessful
23
+ 'PMT-1001' => STANDARD_ERROR_CODE[:invalid_cvc], # payment processed, but cvc was invalid
24
+ 'PMT-1002' => STANDARD_ERROR_CODE[:incorrect_address], # payment processed, incorrect address info
25
+ 'PMT-1003' => STANDARD_ERROR_CODE[:processing_error], # payment processed, address info couldn't be validated
26
+
27
+ # Fraud Errors
28
+ 'PMT-2000' => STANDARD_ERROR_CODE[:incorrect_cvc], # Incorrect CVC
29
+ 'PMT-2001' => STANDARD_ERROR_CODE[:invalid_cvc], # CVC check unavaliable
30
+ 'PMT-2002' => STANDARD_ERROR_CODE[:incorrect_address], # Incorrect address
31
+ 'PMT-2003' => STANDARD_ERROR_CODE[:incorrect_address], # Address info unavailable
32
+
33
+ 'PMT-3000' => STANDARD_ERROR_CODE[:processing_error], # Merchant account could not be validated
34
+
35
+ # Invalid Request
36
+ 'PMT-4000' => STANDARD_ERROR_CODE[:processing_error], # Object is invalid
37
+ 'PMT-4001' => STANDARD_ERROR_CODE[:processing_error], # Object not found
38
+ 'PMT-4002' => STANDARD_ERROR_CODE[:processing_error], # Object is required
39
+
40
+ # Transaction Declined
41
+ 'PMT-5000' => STANDARD_ERROR_CODE[:card_declined], # Request was declined
42
+ 'PMT-5001' => STANDARD_ERROR_CODE[:card_declined], # Merchant does not support given payment method
43
+
44
+ # System Error
45
+ 'PMT-6000' => STANDARD_ERROR_CODE[:processing_error], # A temporary Issue prevented this request from being processed.
46
+ }
47
+
48
+ FRAUD_WARNING_CODES = ['PMT-1000', 'PMT-1001', 'PMT-1002', 'PMT-1003']
49
+
50
+ def initialize(options = {})
51
+ # Quickbooks is deprecating OAuth 1.0 on December 17, 2019.
52
+ # OAuth 2.0 requires a client_id, client_secret, access_token, and refresh_token
53
+ # To maintain backwards compatibility, check for the presence of a refresh_token (only specified for OAuth 2.0)
54
+ # When present, validate that all OAuth 2.0 options are present
55
+ if options[:refresh_token]
56
+ requires!(options, :client_id, :client_secret, :access_token, :refresh_token)
57
+ else
58
+ requires!(options, :consumer_key, :consumer_secret, :access_token, :token_secret, :realm)
59
+ end
60
+ @options = options
61
+ super
62
+ end
63
+
64
+ def purchase(money, payment, options = {})
65
+ post = {}
66
+ add_amount(post, money, options)
67
+ add_charge_data(post, payment, options)
68
+ post[:capture] = 'true'
69
+
70
+ response = commit(ENDPOINT, post)
71
+ check_token_response(response, ENDPOINT, post, options)
72
+ end
73
+
74
+ def authorize(money, payment, options = {})
75
+ post = {}
76
+ add_amount(post, money, options)
77
+ add_charge_data(post, payment, options)
78
+ post[:capture] = 'false'
79
+
80
+ response = commit(ENDPOINT, post)
81
+ check_token_response(response, ENDPOINT, post, options)
82
+ end
83
+
84
+ def capture(money, authorization, options = {})
85
+ post = {}
86
+ authorization, = split_authorization(authorization)
87
+ post[:amount] = localized_amount(money, currency(money))
88
+ add_context(post, options)
89
+
90
+ response = commit(capture_uri(authorization), post)
91
+ check_token_response(response, capture_uri(authorization), post, options)
92
+ end
93
+
94
+ def refund(money, authorization, options = {})
95
+ post = {}
96
+ post[:amount] = localized_amount(money, currency(money))
97
+ add_context(post, options)
98
+ authorization, = split_authorization(authorization)
99
+
100
+ response = commit(refund_uri(authorization), post)
101
+ check_token_response(response, refund_uri(authorization), post, options)
102
+ end
103
+
104
+ def void(authorization, options = {})
105
+ _, request_id = split_authorization(authorization)
106
+
107
+ response = commit(void_uri(request_id))
108
+ check_token_response(response, void_uri(request_id), {}, options)
109
+ end
110
+
111
+ def verify(credit_card, options = {})
112
+ authorize(1.00, credit_card, options)
113
+ end
114
+
115
+ def refresh
116
+ response = refresh_access_token
117
+ response_object(response)
118
+ end
119
+
120
+ def supports_scrubbing?
121
+ true
122
+ end
123
+
124
+ def scrub(transcript)
125
+ transcript.
126
+ gsub(%r((realm=\")\w+), '\1[FILTERED]').
127
+ gsub(%r((oauth_consumer_key=\")\w+), '\1[FILTERED]').
128
+ gsub(%r((oauth_nonce=\")\w+), '\1[FILTERED]').
129
+ gsub(%r((oauth_signature=\")[a-zA-Z%0-9]+), '\1[FILTERED]').
130
+ gsub(%r((oauth_token=\")\w+), '\1[FILTERED]').
131
+ gsub(%r((number\D+)\d{16}), '\1[FILTERED]').
132
+ gsub(%r((cvc\D+)\d{3}), '\1[FILTERED]').
133
+ gsub(%r((Authorization: Basic )\w+), '\1[FILTERED]').
134
+ gsub(%r((access_token\\?":\\?")[\w\-\.]+)i, '\1[FILTERED]').
135
+ gsub(%r((refresh_token\\?":\\?")\w+), '\1[FILTERED]').
136
+ gsub(%r((refresh_token=)\w+), '\1[FILTERED]').
137
+ gsub(%r((Authorization: Bearer )[\w\-\.]+)i, '\1[FILTERED]\2')
138
+ end
139
+
140
+ private
141
+
142
+ def add_charge_data(post, payment, options = {})
143
+ add_payment(post, payment, options)
144
+ add_address(post, options)
145
+ end
146
+
147
+ def add_address(post, options)
148
+ return unless post[:card]&.kind_of?(Hash)
149
+
150
+ card_address = {}
151
+ if address = options[:billing_address] || options[:address]
152
+ card_address[:streetAddress] = address[:address1]
153
+ card_address[:city] = address[:city]
154
+ region = address[:state] || address[:region]
155
+ card_address[:region] = region if region.present?
156
+ card_address[:country] = address[:country] if address[:country].present?
157
+ card_address[:postalCode] = address[:zip] if address[:zip]
158
+ end
159
+ post[:card][:address] = card_address
160
+ end
161
+
162
+ def add_amount(post, money, options = {})
163
+ currency = options[:currency] || currency(money)
164
+ post[:amount] = localized_amount(money, currency)
165
+ post[:currency] = currency.upcase
166
+ end
167
+
168
+ def add_payment(post, payment, options = {})
169
+ add_creditcard(post, payment, options)
170
+ add_context(post, options)
171
+ end
172
+
173
+ def add_creditcard(post, creditcard, options = {})
174
+ card = {}
175
+ card[:number] = creditcard.number
176
+ card[:expMonth] = '%02d' % creditcard.month
177
+ card[:expYear] = creditcard.year
178
+ card[:cvc] = creditcard.verification_value if creditcard.verification_value?
179
+ card[:name] = creditcard.name if creditcard.name
180
+ card[:commercialCardCode] = options[:card_code] if options[:card_code]
181
+
182
+ post[:card] = card
183
+ end
184
+
185
+ def add_context(post, options = {})
186
+ post[:context] = {
187
+ mobile: options.fetch(:mobile, false),
188
+ isEcommerce: options.fetch(:ecommerce, true)
189
+ }
190
+ end
191
+
192
+ def parse(body)
193
+ JSON.parse(body)
194
+ end
195
+
196
+ def commit(uri, body = {}, method = :post)
197
+ endpoint = gateway_url + uri
198
+ # The QuickBooks API returns HTTP 4xx on failed transactions, which causes a
199
+ # ResponseError raise, so we have to inspect the response and discern between
200
+ # a legitimate HTTP error and an actual gateway transactional error.
201
+ headers = {}
202
+ response =
203
+ begin
204
+ headers = headers(method, endpoint)
205
+ method == :post ? ssl_post(endpoint, post_data(body), headers) : ssl_request(:get, endpoint, nil, headers)
206
+ rescue ResponseError => e
207
+ extract_response_body_or_raise(e)
208
+ end
209
+
210
+ response_object(response, headers)
211
+ end
212
+
213
+ def response_object(raw_response, headers = {})
214
+ parsed_response = parse(raw_response)
215
+
216
+ # Include access_token and refresh_token in params for OAuth 2.0
217
+ parsed_response['access_token'] = @options[:access_token] if @options[:refresh_token]
218
+ parsed_response['refresh_token'] = @options[:refresh_token] if @options[:refresh_token]
219
+
220
+ Response.new(
221
+ success?(parsed_response),
222
+ message_from(parsed_response),
223
+ parsed_response,
224
+ authorization: authorization_from(parsed_response, headers),
225
+ test: test?,
226
+ cvv_result: cvv_code_from(parsed_response),
227
+ error_code: errors_from(parsed_response),
228
+ fraud_review: fraud_review_status_from(parsed_response)
229
+ )
230
+ end
231
+
232
+ def gateway_url
233
+ test? ? test_url : live_url
234
+ end
235
+
236
+ def post_data(data = {})
237
+ data.to_json
238
+ end
239
+
240
+ def headers(method, uri)
241
+ return oauth_v2_headers if @options[:refresh_token]
242
+
243
+ raise ArgumentError, "Invalid HTTP method: #{method}. Valid methods are :post and :get" unless %i[post get].include?(method)
244
+
245
+ request_uri = URI.parse(uri)
246
+
247
+ # Following the guidelines from http://nouncer.com/oauth/authentication.html
248
+ oauth_parameters = {
249
+ oauth_nonce: generate_unique_id,
250
+ oauth_timestamp: Time.now.to_i.to_s,
251
+ oauth_signature_method: 'HMAC-SHA1',
252
+ oauth_version: '1.0',
253
+ oauth_consumer_key: @options[:consumer_key],
254
+ oauth_token: @options[:access_token]
255
+ }
256
+
257
+ # prepare components for signature
258
+ oauth_signature_base_string = [method.to_s.upcase, request_uri.to_s, oauth_parameters.to_param].map { |v| CGI.escape(v) }.join('&')
259
+ oauth_signing_key = [@options[:consumer_secret], @options[:token_secret]].map { |v| CGI.escape(v) }.join('&')
260
+ hmac_signature = OpenSSL::HMAC.digest(OpenSSL::Digest.new('sha1'), oauth_signing_key, oauth_signature_base_string)
261
+
262
+ # append signature to required OAuth parameters
263
+ oauth_parameters[:oauth_signature] = CGI.escape(Base64.encode64(hmac_signature).chomp.delete("\n"))
264
+
265
+ # prepare Authorization header string
266
+ oauth_parameters = Hash[oauth_parameters.sort_by { |k, _| k }]
267
+ oauth_headers = ["OAuth realm=\"#{@options[:realm]}\""]
268
+ oauth_headers += oauth_parameters.map { |k, v| "#{k}=\"#{v}\"" }
269
+
270
+ {
271
+ 'Content-type' => 'application/json',
272
+ 'Request-Id' => generate_unique_id,
273
+ 'Authorization' => oauth_headers.join(', ')
274
+ }
275
+ end
276
+
277
+ def oauth_v2_headers
278
+ {
279
+ 'Content-Type' => 'application/json',
280
+ 'Request-Id' => generate_unique_id,
281
+ 'Accept' => 'application/json',
282
+ 'Authorization' => "Bearer #{@options[:access_token]}"
283
+ }
284
+ end
285
+
286
+ def check_token_response(response, endpoint, body = {}, options = {})
287
+ return response unless @options[:refresh_token]
288
+ return response unless options[:allow_refresh]
289
+ return response unless response.params['code'] == 'AuthenticationFailed'
290
+
291
+ refresh_access_token
292
+ commit(endpoint, body)
293
+ end
294
+
295
+ def refresh_access_token
296
+ post = {}
297
+ post[:grant_type] = 'refresh_token'
298
+ post[:refresh_token] = @options[:refresh_token]
299
+ data = post.collect { |key, value| "#{key}=#{CGI.escape(value.to_s)}" }.join('&')
300
+
301
+ basic_auth = Base64.strict_encode64("#{@options[:client_id]}:#{@options[:client_secret]}")
302
+ headers = {
303
+ 'Content-Type' => 'application/x-www-form-urlencoded',
304
+ 'Accept' => 'application/json',
305
+ 'Authorization' => "Basic #{basic_auth}"
306
+ }
307
+
308
+ response = ssl_post(REFRESH_URI, data, headers)
309
+ json_response = JSON.parse(response)
310
+
311
+ @options[:access_token] = json_response['access_token'] if json_response['access_token']
312
+ @options[:refresh_token] = json_response['refresh_token'] if json_response['refresh_token']
313
+ response
314
+ end
315
+
316
+ def cvv_code_from(response)
317
+ if response['errors'].present?
318
+ FRAUD_WARNING_CODES.include?(response['errors'].first['code']) ? 'I' : ''
319
+ else
320
+ success?(response) ? 'M' : ''
321
+ end
322
+ end
323
+
324
+ def success?(response)
325
+ return FRAUD_WARNING_CODES.concat(['0']).include?(response['errors'].first['code']) if response['errors']
326
+
327
+ !%w[DECLINED CANCELLED].include?(response['status']) && !%w[AuthenticationFailed AuthorizationFailed].include?(response['code'])
328
+ end
329
+
330
+ def message_from(response)
331
+ response['errors'].present? ? response['errors'].map { |error_hash| error_hash['message'] }.join(' ') : response['status']
332
+ end
333
+
334
+ def errors_from(response)
335
+ if %w[AuthenticationFailed AuthorizationFailed].include?(response['code'])
336
+ response['code']
337
+ else
338
+ response['errors'].present? ? STANDARD_ERROR_CODE_MAPPING[response['errors'].first['code']] : ''
339
+ end
340
+ end
341
+
342
+ def authorization_from(response, headers = {})
343
+ [response['id'], headers['Request-Id']].join('|')
344
+ end
345
+
346
+ def split_authorization(authorization)
347
+ authorization, request_id = authorization.split('|')
348
+ [authorization, request_id]
349
+ end
350
+
351
+ def fraud_review_status_from(response)
352
+ response['errors'] && FRAUD_WARNING_CODES.include?(response['errors'].first['code'])
353
+ end
354
+
355
+ def extract_response_body_or_raise(response_error)
356
+ begin
357
+ parse(response_error.response.body)
358
+ rescue JSON::ParserError
359
+ raise response_error
360
+ end
361
+ response_error.response.body
362
+ end
363
+
364
+ def refund_uri(authorization)
365
+ "#{ENDPOINT}/#{CGI.escape(authorization.to_s)}/refunds"
366
+ end
367
+
368
+ def capture_uri(authorization)
369
+ "#{ENDPOINT}/#{CGI.escape(authorization.to_s)}/capture"
370
+ end
371
+
372
+ def void_uri(request_id)
373
+ "#{VOID_ENDPOINT}/#{CGI.escape(request_id.to_s)}/void"
374
+ end
375
+ end
376
+ end
377
+ end
@@ -0,0 +1,184 @@
1
+ module QuickpayCommon
2
+ MD5_CHECK_FIELDS = {
3
+ 3 => {
4
+ authorize: %w(protocol msgtype merchant ordernumber amount
5
+ currency autocapture cardnumber expirationdate
6
+ cvd cardtypelock testmode),
7
+
8
+ capture: %w(protocol msgtype merchant amount finalize transaction),
9
+
10
+ cancel: %w(protocol msgtype merchant transaction),
11
+
12
+ refund: %w(protocol msgtype merchant amount transaction),
13
+
14
+ subscribe: %w(protocol msgtype merchant ordernumber cardnumber
15
+ expirationdate cvd cardtypelock description testmode),
16
+
17
+ recurring: %w(protocol msgtype merchant ordernumber amount
18
+ currency autocapture transaction),
19
+
20
+ status: %w(protocol msgtype merchant transaction),
21
+
22
+ chstatus: %w(protocol msgtype merchant)
23
+ },
24
+
25
+ 4 => {
26
+ authorize: %w(protocol msgtype merchant ordernumber amount
27
+ currency autocapture cardnumber expirationdate cvd
28
+ cardtypelock testmode fraud_remote_addr
29
+ fraud_http_accept fraud_http_accept_language
30
+ fraud_http_accept_encoding fraud_http_accept_charset
31
+ fraud_http_referer fraud_http_user_agent apikey),
32
+
33
+ capture: %w(protocol msgtype merchant amount finalize transaction apikey),
34
+
35
+ cancel: %w(protocol msgtype merchant transaction apikey),
36
+
37
+ refund: %w(protocol msgtype merchant amount transaction apikey),
38
+
39
+ subscribe: %w(protocol msgtype merchant ordernumber cardnumber
40
+ expirationdate cvd cardtypelock description testmode
41
+ fraud_remote_addr fraud_http_accept fraud_http_accept_language
42
+ fraud_http_accept_encoding fraud_http_accept_charset
43
+ fraud_http_referer fraud_http_user_agent apikey),
44
+
45
+ recurring: %w(protocol msgtype merchant ordernumber amount currency
46
+ autocapture transaction apikey),
47
+
48
+ status: %w(protocol msgtype merchant transaction apikey),
49
+
50
+ chstatus: %w(protocol msgtype merchant apikey)
51
+ },
52
+
53
+ 5 => {
54
+ authorize: %w(protocol msgtype merchant ordernumber amount
55
+ currency autocapture cardnumber expirationdate cvd
56
+ cardtypelock testmode fraud_remote_addr
57
+ fraud_http_accept fraud_http_accept_language
58
+ fraud_http_accept_encoding fraud_http_accept_charset
59
+ fraud_http_referer fraud_http_user_agent apikey),
60
+
61
+ capture: %w(protocol msgtype merchant amount finalize transaction apikey),
62
+
63
+ cancel: %w(protocol msgtype merchant transaction apikey),
64
+
65
+ refund: %w(protocol msgtype merchant amount transaction apikey),
66
+
67
+ subscribe: %w(protocol msgtype merchant ordernumber cardnumber
68
+ expirationdate cvd cardtypelock description testmode
69
+ fraud_remote_addr fraud_http_accept fraud_http_accept_language
70
+ fraud_http_accept_encoding fraud_http_accept_charset
71
+ fraud_http_referer fraud_http_user_agent apikey),
72
+
73
+ recurring: %w(protocol msgtype merchant ordernumber amount currency
74
+ autocapture transaction apikey),
75
+
76
+ status: %w(protocol msgtype merchant transaction apikey),
77
+
78
+ chstatus: %w(protocol msgtype merchant apikey)
79
+ },
80
+
81
+ 6 => {
82
+ authorize: %w(protocol msgtype merchant ordernumber amount
83
+ currency autocapture cardnumber expirationdate cvd
84
+ cardtypelock testmode fraud_remote_addr
85
+ fraud_http_accept fraud_http_accept_language
86
+ fraud_http_accept_encoding fraud_http_accept_charset
87
+ fraud_http_referer fraud_http_user_agent apikey),
88
+
89
+ capture: %w(protocol msgtype merchant amount finalize transaction
90
+ apikey),
91
+
92
+ cancel: %w(protocol msgtype merchant transaction apikey),
93
+
94
+ refund: %w(protocol msgtype merchant amount transaction apikey),
95
+
96
+ subscribe: %w(protocol msgtype merchant ordernumber cardnumber
97
+ expirationdate cvd cardtypelock description testmode
98
+ fraud_remote_addr fraud_http_accept fraud_http_accept_language
99
+ fraud_http_accept_encoding fraud_http_accept_charset
100
+ fraud_http_referer fraud_http_user_agent apikey),
101
+
102
+ recurring: %w(protocol msgtype merchant ordernumber amount currency
103
+ autocapture transaction apikey),
104
+
105
+ status: %w(protocol msgtype merchant transaction apikey),
106
+
107
+ chstatus: %w(protocol msgtype merchant apikey)
108
+ },
109
+
110
+ 7 => {
111
+ authorize: %w(protocol msgtype merchant ordernumber amount
112
+ currency autocapture cardnumber expirationdate cvd
113
+ acquirers cardtypelock testmode fraud_remote_addr
114
+ fraud_http_accept fraud_http_accept_language
115
+ fraud_http_accept_encoding fraud_http_accept_charset
116
+ fraud_http_referer fraud_http_user_agent apikey),
117
+
118
+ capture: %w(protocol msgtype merchant amount finalize transaction
119
+ apikey),
120
+
121
+ cancel: %w(protocol msgtype merchant transaction apikey),
122
+
123
+ refund: %w(protocol msgtype merchant amount transaction apikey),
124
+
125
+ subscribe: %w(protocol msgtype merchant ordernumber amount currency
126
+ cardnumber expirationdate cvd acquirers cardtypelock
127
+ description testmode fraud_remote_addr fraud_http_accept
128
+ fraud_http_accept_language fraud_http_accept_encoding
129
+ fraud_http_accept_charset fraud_http_referer
130
+ fraud_http_user_agent apikey),
131
+
132
+ recurring: %w(protocol msgtype merchant ordernumber amount currency
133
+ autocapture transaction apikey),
134
+
135
+ status: %w(protocol msgtype merchant transaction apikey),
136
+
137
+ chstatus: %w(protocol msgtype merchant apikey)
138
+ },
139
+
140
+ 10 => {
141
+ authorize: %w(mobile_number acquirer autofee customer_id extras
142
+ zero_auth customer_ip),
143
+ capture: %w(extras),
144
+ cancel: %w(extras),
145
+ refund: %w(extras),
146
+ subscribe: %w(variables branding_id),
147
+ authorize_subscription: %w(mobile_number acquirer customer_ip),
148
+ recurring: %w(auto_capture autofee zero_auth)
149
+ }
150
+ }
151
+
152
+ RESPONSE_CODES = {
153
+ 200 => 'OK',
154
+ 201 => 'Created',
155
+ 202 => 'Accepted',
156
+ 400 => 'Bad Request',
157
+ 401 => 'UnAuthorized',
158
+ 402 => 'Payment Required',
159
+ 403 => 'Forbidden',
160
+ 404 => 'Not Found',
161
+ 405 => 'Method Not Allowed',
162
+ 406 => 'Not Acceptable',
163
+ 409 => 'Conflict',
164
+ 500 => 'Internal Server Error'
165
+ }
166
+
167
+ def self.included(base)
168
+ base.default_currency = 'DKK'
169
+ base.money_format = :cents
170
+
171
+ base.supported_countries = %w[DE DK ES FI FR FO GB IS NO SE]
172
+ base.supported_cardtypes = %i[dankort forbrugsforeningen visa master
173
+ american_express diners_club jcb maestro]
174
+ base.homepage_url = 'http://quickpay.net/'
175
+ base.display_name = 'QuickPay'
176
+ end
177
+
178
+ def expdate(credit_card)
179
+ year = format(credit_card.year, :two_digits)
180
+ month = format(credit_card.month, :two_digits)
181
+
182
+ "#{year}#{month}"
183
+ end
184
+ end