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,314 +0,0 @@
1
- module ActiveMerchant #:nodoc:
2
- module Billing #:nodoc:
3
- class BarclaysEpdqGateway < Gateway
4
- self.test_url = 'https://secure2.mde.epdq.co.uk:11500'
5
- self.live_url = 'https://secure2.epdq.co.uk:11500'
6
-
7
- self.supported_countries = ['GB']
8
- self.default_currency = 'GBP'
9
- self.supported_cardtypes = [:visa, :master, :american_express, :maestro, :switch ]
10
- self.money_format = :cents
11
- self.homepage_url = 'http://www.barclaycard.co.uk/business/accepting-payments/epdq-mpi/'
12
- self.display_name = 'Barclays ePDQ MPI'
13
-
14
- def initialize(options = {})
15
- requires!(options, :login, :password, :client_id)
16
- super
17
- end
18
-
19
- def authorize(money, creditcard, options = {})
20
- document = Document.new(self, @options) do
21
- add_order_form(options[:order_id]) do
22
- add_consumer(options) do
23
- add_creditcard(creditcard)
24
- end
25
- add_transaction(:PreAuth, money)
26
- end
27
- end
28
-
29
- commit(document)
30
- end
31
-
32
- def purchase(money, creditcard, options = {})
33
- # disable fraud checks if this is a repeat order:
34
- if options[:payment_number] && (options[:payment_number] > 1)
35
- no_fraud = true
36
- else
37
- no_fraud = options[:no_fraud]
38
- end
39
- document = Document.new(self, @options, :no_fraud => no_fraud) do
40
- add_order_form(options[:order_id], options[:group_id]) do
41
- add_consumer(options) do
42
- add_creditcard(creditcard)
43
- end
44
- add_transaction(:Auth, money, options)
45
- end
46
- end
47
- commit(document)
48
- end
49
-
50
- # authorization is your unique order ID, not the authorization
51
- # code returned by ePDQ
52
- def capture(money, authorization, options = {})
53
- document = Document.new(self, @options) do
54
- add_order_form(authorization) do
55
- add_transaction(:PostAuth, money)
56
- end
57
- end
58
-
59
- commit(document)
60
- end
61
-
62
- # authorization is your unique order ID, not the authorization
63
- # code returned by ePDQ
64
- def credit(money, creditcard_or_authorization, options = {})
65
- if creditcard_or_authorization.is_a?(String)
66
- ActiveMerchant.deprecated CREDIT_DEPRECATION_MESSAGE
67
- refund(money, creditcard_or_authorization, options)
68
- else
69
- credit_new_order(money, creditcard_or_authorization, options)
70
- end
71
- end
72
-
73
- def refund(money, authorization, options = {})
74
- credit_existing_order(money, authorization, options)
75
- end
76
-
77
- def void(authorization, options = {})
78
- document = Document.new(self, @options) do
79
- add_order_form(authorization) do
80
- add_transaction(:Void)
81
- end
82
- end
83
-
84
- commit(document)
85
- end
86
-
87
- private
88
- def credit_new_order(money, creditcard, options)
89
- document = Document.new(self, @options) do
90
- add_order_form do
91
- add_consumer(options) do
92
- add_creditcard(creditcard)
93
- end
94
- add_transaction(:Credit, money)
95
- end
96
- end
97
-
98
- commit(document)
99
- end
100
-
101
- def credit_existing_order(money, authorization, options)
102
- order_id, _ = authorization.split(":")
103
- document = Document.new(self, @options) do
104
- add_order_form(order_id) do
105
- add_transaction(:Credit, money)
106
- end
107
- end
108
-
109
- commit(document)
110
- end
111
-
112
- def parse(body)
113
- parser = Parser.new(body)
114
- response = parser.parse
115
- Response.new(response[:success], response[:message], response,
116
- :test => test?,
117
- :authorization => response[:authorization],
118
- :avs_result => response[:avsresponse],
119
- :cvv_result => response[:cvv_result],
120
- :order_id => response[:order_id],
121
- :raw_response => response[:raw_response]
122
- )
123
- end
124
-
125
- def commit(document)
126
- url = (test? ? self.test_url : self.live_url)
127
- data = ssl_post(url, document.to_xml)
128
- parse(data)
129
- end
130
-
131
- class Parser
132
- def initialize(response)
133
- @response = response
134
- end
135
-
136
- def parse
137
- require 'iconv' unless String.method_defined?(:encode)
138
- if String.method_defined?(:encode)
139
- doc = REXML::Document.new(@response.encode("UTF-8", "ISO-8859-1"))
140
- else
141
- ic = Iconv.new('UTF-8', 'ISO-8859-1')
142
- doc = REXML::Document.new(ic.iconv(@response))
143
- end
144
-
145
- auth_type = find(doc, "//Transaction/Type").to_s
146
-
147
- message = find(doc, "//Message/Text")
148
- if message.blank?
149
- message = find(doc, "//Transaction/CardProcResp/CcReturnMsg")
150
- end
151
-
152
- case auth_type
153
- when 'Credit', 'Void'
154
- success = find(doc, "//CcReturnMsg") == "Approved."
155
- else
156
- success = find(doc, "//Transaction/AuthCode").present?
157
- end
158
-
159
- {
160
- :success => success,
161
- :message => message,
162
- :transaction_id => find(doc, "//Transaction/Id"),
163
- :avs_result => find(doc, "//Transaction/AvsRespCode"),
164
- :cvv_result => find(doc, "//Transaction/Cvv2Resp"),
165
- :authorization => find(doc, "//OrderFormDoc/Id"),
166
- :raw_response => @response
167
- }
168
- end
169
-
170
- def find(doc, xpath)
171
- REXML::XPath.first(doc, xpath).try(:text)
172
- end
173
- end
174
-
175
- class Document
176
- attr_reader :type, :xml
177
-
178
- PAYMENT_INTERVALS = {
179
- :days => 'D',
180
- :months => 'M'
181
- }
182
-
183
- EPDQ_CARD_TYPES = {
184
- :visa => 1,
185
- :master => 2,
186
- :switch => 9,
187
- :maestro => 10,
188
- }
189
-
190
- def initialize(gateway, options = {}, document_options = {}, &block)
191
- @gateway = gateway
192
- @options = options
193
- @document_options = document_options
194
- @xml = Builder::XmlMarkup.new(:indent => 2)
195
- build(&block)
196
- end
197
-
198
- def to_xml
199
- @xml.target!
200
- end
201
-
202
- def build(&block)
203
- xml.instruct!(:xml, :version => '1.0')
204
- xml.EngineDocList do
205
- xml.DocVersion "1.0"
206
- xml.EngineDoc do
207
- xml.ContentType "OrderFormDoc"
208
- xml.User do
209
- xml.Name(@options[:login])
210
- xml.Password(@options[:password])
211
- xml.ClientId({ :DataType => "S32" }, @options[:client_id])
212
- end
213
- xml.Instructions do
214
- if @document_options[:no_fraud]
215
- xml.Pipeline "PaymentNoFraud"
216
- else
217
- xml.Pipeline "Payment"
218
- end
219
- end
220
- instance_eval(&block)
221
- end
222
- end
223
- end
224
-
225
- def add_order_form(order_id=nil, group_id=nil, &block)
226
- xml.OrderFormDoc do
227
- xml.Mode 'P'
228
- xml.Id(order_id) if order_id
229
- xml.GroupId(group_id) if group_id
230
- instance_eval(&block)
231
- end
232
- end
233
-
234
- def add_consumer(options=nil, &block)
235
- xml.Consumer do
236
- if options
237
- xml.Email(options[:email]) if options[:email]
238
- billing_address = options[:billing_address] || options[:address]
239
- if billing_address
240
- xml.BillTo do
241
- xml.Location do
242
- xml.Address do
243
- xml.Street1 billing_address[:address1]
244
- xml.Street2 billing_address[:address2]
245
- xml.City billing_address[:city]
246
- xml.StateProv billing_address[:state]
247
- xml.PostalCode billing_address[:zip]
248
- xml.Country billing_address[:country_code]
249
- end
250
- end
251
- end
252
- end
253
- end
254
- instance_eval(&block)
255
- end
256
- end
257
-
258
- def add_creditcard(creditcard)
259
- xml.PaymentMech do
260
- xml.CreditCard do
261
- xml.Type({ :DataType => 'S32' }, EPDQ_CARD_TYPES[creditcard.brand.to_sym])
262
- xml.Number creditcard.number
263
- xml.Expires({ :DataType => 'ExpirationDate', :Locale => 826 }, format_expiry_date(creditcard))
264
- if creditcard.verification_value.present?
265
- xml.Cvv2Indicator 1
266
- xml.Cvv2Val creditcard.verification_value
267
- else
268
- xml.Cvv2Indicator 5
269
- end
270
- xml.IssueNum(creditcard.issue_number) if creditcard.issue_number.present?
271
- end
272
- end
273
- end
274
-
275
- def add_transaction(auth_type, amount = nil, options = {})
276
- @auth_type = auth_type
277
- xml.Transaction do
278
- xml.Type @auth_type.to_s
279
- if options[:payment_number] && options[:payment_number] > 1
280
- xml.CardholderPresentCode({ :DataType => 'S32' }, 8)
281
- else
282
- xml.CardholderPresentCode({ :DataType => 'S32' }, 7)
283
- end
284
- if options[:payment_number]
285
- xml.PaymentNumber({ :DataType => 'S32' }, options[:payment_number])
286
- end
287
- if options[:total_payments]
288
- xml.TotalNumberPayments({ :DataType => 'S32' }, options[:total_payments])
289
- end
290
- if amount
291
- xml.CurrentTotals do
292
- xml.Totals do
293
- xml.Total({ :DataType => 'Money', :Currency => 826 }, amount)
294
- end
295
- end
296
- end
297
- end
298
- end
299
-
300
- # date must be formatted MM/YY
301
- def format_expiry_date(creditcard)
302
- month_str = "%02d" % creditcard.month
303
- if match = creditcard.year.to_s.match(/^\d{2}(\d{2})$/)
304
- year_str = "%02d" % match[1].to_i
305
- else
306
- year_str = "%02d" % creditcard.year
307
- end
308
- "#{month_str}/#{year_str}"
309
- end
310
- end
311
- end
312
- end
313
- end
314
-
@@ -1,278 +0,0 @@
1
- module ActiveMerchant #:nodoc:
2
- module Billing #:nodoc:
3
- class CertoDirectGateway < Gateway
4
- self.live_url = self.test_url = "https://secure.certodirect.com/gateway/process/v2"
5
-
6
- self.supported_countries = [
7
- "BE", "BG", "CZ", "DK", "DE", "EE", "IE", "ES", "FR",
8
- "IT", "CY", "LV", "LT", "LU", "HU", "MT", "NL", "AT", "PL",
9
- "PT", "RO", "SI", "SK", "FI", "SE", "GB"
10
- ]
11
-
12
- self.supported_cardtypes = [:visa, :master, :american_express, :discover]
13
- self.homepage_url = 'http://www.certodirect.com/'
14
- self.display_name = 'CertoDirect'
15
-
16
- # Creates a new CertoDirectGateway
17
- #
18
- # The gateway requires that a valid login and password be passed
19
- # in the +options+ hash.
20
- #
21
- # ==== Options
22
- #
23
- # * <tt>:login</tt> -- The CertoDirect Shop ID (REQUIRED)
24
- # * <tt>:password</tt> -- The CertoDirect Shop Password. (REQUIRED)
25
- # * <tt>:test</tt> -- +true+ or +false+. If true, perform transactions against the test server.
26
- # Otherwise, perform transactions against the production server.
27
- def initialize(options = {})
28
- requires!(options, :login, :password)
29
- super
30
- end
31
-
32
- # Perform a purchase, which is essentially an authorization and capture in a single operation.
33
- #
34
- # ==== Parameters
35
- #
36
- # * <tt>money</tt> -- The amount to be purchased as an Integer value in cents.
37
- # * <tt>credit_card</tt> -- The CreditCard details for the transaction.
38
- # * <tt>options</tt> -- A hash of optional parameters.
39
- def purchase(money, credit_card, options = {})
40
- requires!(options, :email, :currency, :ip, :description)
41
-
42
- commit(build_sale_request(money, credit_card, options))
43
- end
44
-
45
- # Refund a transaction.
46
- #
47
- # This transaction indicates to the gateway that
48
- # money should flow from the merchant to the customer.
49
- #
50
- # ==== Parameters
51
- #
52
- # * <tt>money</tt> -- The amount to be credited to the customer as an Integer value in cents.
53
- # * <tt>identification</tt> -- The ID of the original order against which the refund is being issued.
54
- # * <tt>options</tt> -- A hash of parameters.
55
- def refund(money, identification, options = {})
56
- requires!(options, :reason)
57
-
58
- commit(build_refund_request(money, identification, options))
59
- end
60
-
61
- # Performs an authorization, which reserves the funds on the customer's credit card, but does not
62
- # charge the card.
63
- #
64
- # ==== Parameters
65
- #
66
- # * <tt>money</tt> -- The amount to be authorized as an Integer value in cents.
67
- # * <tt>credit_card</tt> -- The CreditCard details for the transaction.
68
- # * <tt>options</tt> -- A hash of optional parameters.
69
- def authorize(money, credit_card, options = {})
70
- requires!(options, :email, :currency, :ip, :description)
71
-
72
- commit(build_authorize_request(money, credit_card, options))
73
- end
74
-
75
- # Captures the funds from an authorized transaction.
76
- #
77
- # ==== Parameters
78
- #
79
- # * <tt>money</tt> -- The amount to be captured as an Integer value in cents.
80
- # * <tt>identification</tt> -- The authorization returned from the previous authorize request.
81
- def capture(money, identification, options = {})
82
- commit(build_capture_request(money, identification))
83
- end
84
-
85
- # Void a previous transaction
86
- #
87
- # ==== Parameters
88
- #
89
- # * <tt>money</tt> -- The amount to be captured as an Integer value in cents.
90
- # * <tt>identification</tt> - The authorization returned from the previous authorize request.
91
- def void(money, identification, options = {})
92
- commit(build_void_request(money, identification))
93
- end
94
-
95
- # Create a recurring payment.
96
- #
97
- # ==== Parameters
98
- #
99
- # * <tt>options</tt> -- A hash of parameters.
100
- #
101
- # ==== Options
102
- #
103
- def recurring(identification, options={})
104
- ActiveMerchant.deprecated RECURRING_DEPRECATION_MESSAGE
105
-
106
- commit(build_recurring_request(identification, options))
107
- end
108
-
109
- private
110
-
111
- def commit(request_xml)
112
- begin
113
- response = Hash.from_xml(ssl_post(self.live_url, request_xml, headers))
114
- Response.new(success?(response),
115
- message(response),
116
- response,
117
- :test => test?,
118
- :authorization => authorization(response))
119
- rescue ResponseError => e
120
- raise e unless e.response.code == '403'
121
- response = Hash.from_xml(e.response.body)['response']
122
- Response.new(false, message(response), {}, :test => test?)
123
- end
124
- end
125
-
126
- def build_sale_request(money, credit_card, options)
127
- build_request_xml('Sale') do |xml|
128
- add_order(xml, money, credit_card, options)
129
- end
130
- end
131
-
132
- def build_authorize_request(money, credit_card, options)
133
- build_request_xml('Authorize') do |xml|
134
- add_order(xml, money, credit_card, options)
135
- end
136
- end
137
-
138
- def build_refund_request(money, identification, options)
139
- build_request_xml('Refund') do |xml|
140
- add_reference_info(xml, money, identification, options)
141
- xml.tag! 'reason', options[:reason]
142
- end
143
- end
144
-
145
- def build_capture_request(money, identification)
146
- build_request_xml('Capture') do |xml|
147
- add_reference_info(xml, money, identification, options)
148
- end
149
- end
150
-
151
- def build_void_request(money, identification)
152
- build_request_xml('Void') do |xml|
153
- add_reference_info(xml, money, identification, options)
154
- end
155
- end
156
-
157
- def build_recurring_request(identification, options)
158
- build_request_xml('Sale') do |xml|
159
- xml.tag! 'order' do
160
- xml.tag!('test', 'true') if test?
161
- xml.tag! 'initial_order_id', identification, :type => 'integer'
162
-
163
- add_order_details(xml, options[:amount], options) if has_any_order_details_key?(options)
164
- add_address(xml, 'billing_address', options[:billing_address]) if options[:billing_address]
165
- add_address(xml, 'shipping_address', options[:shipping_address]) if options[:shipping_address]
166
- end
167
- end
168
- end
169
-
170
- def build_request_xml(type, &block)
171
- xml = Builder::XmlMarkup.new(:indent => 2)
172
- xml.tag! 'transaction' do
173
- xml.tag! 'type', type
174
- yield(xml)
175
- end
176
- xml.target!
177
- end
178
-
179
- def add_order(xml, money, credit_card, options)
180
- xml.tag! 'order' do
181
- xml.tag!('test', 'true') if test?
182
-
183
- xml.tag!('return_url', options[:return_url]) if options[:return_url]
184
- xml.tag!('cancel_url', options[:cancel_url]) if options[:cancel_url]
185
-
186
- xml.tag! 'payment_method_type', 'CreditCard'
187
- xml.tag! 'payment_method' do
188
- xml.tag! 'number', credit_card.number
189
- xml.tag! 'exp_month', "%02i" % credit_card.month
190
- xml.tag! 'exp_year', credit_card.year
191
- xml.tag! 'holder', credit_card.name
192
- xml.tag! 'verification_value', credit_card.verification_value
193
- end
194
-
195
- add_order_details(xml, money, options)
196
- add_address(xml, 'billing_address', options[:billing_address]) if options[:billing_address]
197
- add_address(xml, 'shipping_address', options[:shipping_address]) if options[:shipping_address]
198
- end
199
- end
200
-
201
- def add_order_details(xml, money, options)
202
- xml.tag! 'details' do
203
- xml.tag!('amount', localized_amount(money, options[:currency]), :type => 'decimal') if money
204
- xml.tag!('currency', options[:currency]) if options[:currency]
205
- xml.tag!('email', options[:email]) if options[:email]
206
- xml.tag!('ip', options[:ip]) if options[:ip]
207
- xml.tag!('shipping', options[:shipping], :type => 'decimal') if options[:shipping]
208
- xml.tag!('description', options[:description]) if options[:description]
209
- end
210
- end
211
-
212
- def add_reference_info(xml, money, identification, options)
213
- xml.tag! 'order_id', identification, :type => 'integer'
214
- xml.tag! 'amount', localized_amount(money, options[:currency]), :type => 'decimal'
215
- end
216
-
217
- def add_address(xml, address_type, address)
218
- xml.tag! address_type do
219
- xml.tag! 'address', address[:address1]
220
- xml.tag! 'city', address[:city]
221
- xml.tag! 'country', address[:country]
222
- xml.tag! 'first_name', address[:first_name]
223
- xml.tag! 'last_name', address[:last_name]
224
- xml.tag! 'state', address[:state]
225
- xml.tag! 'phone', address[:phone]
226
- xml.tag! 'zip', address[:zip]
227
- end
228
- end
229
-
230
- def has_any_order_details_key?(options)
231
- [ :currency, :amount, :email, :ip, :shipping, :description ].any? do |key|
232
- options.has_key?(key)
233
- end
234
- end
235
-
236
- def success?(response)
237
- %w(completed forwarding).include?(state(response)) and
238
- status(response) == 'success'
239
- end
240
-
241
- def error?(response)
242
- response['errors']
243
- end
244
-
245
- def state(response)
246
- response["transaction"].try(:[], "state")
247
- end
248
-
249
- def status(response)
250
- response['transaction'].try(:[], 'response').try(:[], 'status')
251
- end
252
-
253
- def authorization(response)
254
- error?(response) ? nil : response["transaction"]["order"]['id'].to_s
255
- end
256
-
257
- def message(response)
258
- return response['errors'].join('; ') if error?(response)
259
-
260
- if state(response) == 'completed'
261
- response["transaction"]["response"]["message"]
262
- else
263
- response['transaction']['message']
264
- end
265
- end
266
-
267
- def headers
268
- { 'authorization' => basic_auth,
269
- 'Accept' => 'application/xml',
270
- 'Content-Type' => 'application/xml' }
271
- end
272
-
273
- def basic_auth
274
- 'Basic ' + ["#{@options[:login]}:#{@options[:password]}"].pack('m').delete("\r\n")
275
- end
276
- end
277
- end
278
- end