archetype2142_activemerchant 1.124.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (271) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG +3640 -0
  3. data/CONTRIBUTORS +568 -0
  4. data/MIT-LICENSE +20 -0
  5. data/README.md +249 -0
  6. data/lib/active_merchant/billing/apple_pay_payment_token.rb +22 -0
  7. data/lib/active_merchant/billing/avs_result.rb +95 -0
  8. data/lib/active_merchant/billing/base.rb +48 -0
  9. data/lib/active_merchant/billing/check.rb +80 -0
  10. data/lib/active_merchant/billing/compatibility.rb +118 -0
  11. data/lib/active_merchant/billing/credit_card.rb +414 -0
  12. data/lib/active_merchant/billing/credit_card_formatting.rb +24 -0
  13. data/lib/active_merchant/billing/credit_card_methods.rb +444 -0
  14. data/lib/active_merchant/billing/cvv_result.rb +37 -0
  15. data/lib/active_merchant/billing/gateway.rb +331 -0
  16. data/lib/active_merchant/billing/gateways/adyen.rb +712 -0
  17. data/lib/active_merchant/billing/gateways/allied_wallet.rb +205 -0
  18. data/lib/active_merchant/billing/gateways/authorize_net.rb +1107 -0
  19. data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +424 -0
  20. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +977 -0
  21. data/lib/active_merchant/billing/gateways/axcessms.rb +179 -0
  22. data/lib/active_merchant/billing/gateways/balanced.rb +263 -0
  23. data/lib/active_merchant/billing/gateways/bambora_apac.rb +222 -0
  24. data/lib/active_merchant/billing/gateways/bank_frick.rb +225 -0
  25. data/lib/active_merchant/billing/gateways/banwire.rb +116 -0
  26. data/lib/active_merchant/billing/gateways/barclaycard_smartpay.rb +396 -0
  27. data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +15 -0
  28. data/lib/active_merchant/billing/gateways/be2bill.rb +131 -0
  29. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +474 -0
  30. data/lib/active_merchant/billing/gateways/beanstream.rb +220 -0
  31. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +57 -0
  32. data/lib/active_merchant/billing/gateways/blue_pay.rb +549 -0
  33. data/lib/active_merchant/billing/gateways/blue_snap.rb +613 -0
  34. data/lib/active_merchant/billing/gateways/bogus.rb +186 -0
  35. data/lib/active_merchant/billing/gateways/borgun.rb +231 -0
  36. data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
  37. data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +23 -0
  38. data/lib/active_merchant/billing/gateways/braintree.rb +19 -0
  39. data/lib/active_merchant/billing/gateways/braintree_blue.rb +832 -0
  40. data/lib/active_merchant/billing/gateways/braintree_orange.rb +19 -0
  41. data/lib/active_merchant/billing/gateways/bridge_pay.rb +244 -0
  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 +21 -0
  45. data/lib/active_merchant/billing/gateways/card_stream.rb +371 -0
  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 +225 -0
  49. data/lib/active_merchant/billing/gateways/cc5.rb +198 -0
  50. data/lib/active_merchant/billing/gateways/cecabank.rb +249 -0
  51. data/lib/active_merchant/billing/gateways/cenpos.rb +328 -0
  52. data/lib/active_merchant/billing/gateways/checkout.rb +212 -0
  53. data/lib/active_merchant/billing/gateways/checkout_v2.rb +311 -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 +142 -0
  57. data/lib/active_merchant/billing/gateways/conekta.rb +230 -0
  58. data/lib/active_merchant/billing/gateways/creditcall.rb +272 -0
  59. data/lib/active_merchant/billing/gateways/credorax.rb +496 -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 +1074 -0
  63. data/lib/active_merchant/billing/gateways/d_local.rb +253 -0
  64. data/lib/active_merchant/billing/gateways/data_cash.rb +302 -0
  65. data/lib/active_merchant/billing/gateways/decidir.rb +331 -0
  66. data/lib/active_merchant/billing/gateways/dibs.rb +199 -0
  67. data/lib/active_merchant/billing/gateways/digitzs.rb +295 -0
  68. data/lib/active_merchant/billing/gateways/ebanx.rb +333 -0
  69. data/lib/active_merchant/billing/gateways/efsnet.rb +215 -0
  70. data/lib/active_merchant/billing/gateways/elavon.rb +472 -0
  71. data/lib/active_merchant/billing/gateways/element.rb +386 -0
  72. data/lib/active_merchant/billing/gateways/epay.rb +296 -0
  73. data/lib/active_merchant/billing/gateways/evo_ca.rb +307 -0
  74. data/lib/active_merchant/billing/gateways/eway.rb +226 -0
  75. data/lib/active_merchant/billing/gateways/eway_managed.rb +289 -0
  76. data/lib/active_merchant/billing/gateways/eway_rapid.rb +578 -0
  77. data/lib/active_merchant/billing/gateways/exact.rb +219 -0
  78. data/lib/active_merchant/billing/gateways/ezic.rb +195 -0
  79. data/lib/active_merchant/billing/gateways/fat_zebra.rb +223 -0
  80. data/lib/active_merchant/billing/gateways/federated_canada.rb +158 -0
  81. data/lib/active_merchant/billing/gateways/finansbank.rb +22 -0
  82. data/lib/active_merchant/billing/gateways/first_giving.rb +143 -0
  83. data/lib/active_merchant/billing/gateways/first_pay.rb +182 -0
  84. data/lib/active_merchant/billing/gateways/firstdata_e4.rb +452 -0
  85. data/lib/active_merchant/billing/gateways/firstdata_e4_v27.rb +505 -0
  86. data/lib/active_merchant/billing/gateways/flo2cash.rb +215 -0
  87. data/lib/active_merchant/billing/gateways/flo2cash_simple.rb +20 -0
  88. data/lib/active_merchant/billing/gateways/forte.rb +286 -0
  89. data/lib/active_merchant/billing/gateways/garanti.rb +256 -0
  90. data/lib/active_merchant/billing/gateways/global_collect.rb +463 -0
  91. data/lib/active_merchant/billing/gateways/global_transport.rb +193 -0
  92. data/lib/active_merchant/billing/gateways/hdfc.rb +205 -0
  93. data/lib/active_merchant/billing/gateways/hps.rb +472 -0
  94. data/lib/active_merchant/billing/gateways/iats_payments.rb +312 -0
  95. data/lib/active_merchant/billing/gateways/in_context_paypal_express.rb +15 -0
  96. data/lib/active_merchant/billing/gateways/inspire.rb +213 -0
  97. data/lib/active_merchant/billing/gateways/instapay.rb +159 -0
  98. data/lib/active_merchant/billing/gateways/ipg.rb +390 -0
  99. data/lib/active_merchant/billing/gateways/ipp.rb +176 -0
  100. data/lib/active_merchant/billing/gateways/iridium.rb +467 -0
  101. data/lib/active_merchant/billing/gateways/itransact.rb +448 -0
  102. data/lib/active_merchant/billing/gateways/iveri.rb +254 -0
  103. data/lib/active_merchant/billing/gateways/ixopay.rb +320 -0
  104. data/lib/active_merchant/billing/gateways/jetpay.rb +395 -0
  105. data/lib/active_merchant/billing/gateways/jetpay_v2.rb +432 -0
  106. data/lib/active_merchant/billing/gateways/komoju.rb +115 -0
  107. data/lib/active_merchant/billing/gateways/kushki.rb +270 -0
  108. data/lib/active_merchant/billing/gateways/latitude19.rb +412 -0
  109. data/lib/active_merchant/billing/gateways/linkpoint.rb +448 -0
  110. data/lib/active_merchant/billing/gateways/litle.rb +531 -0
  111. data/lib/active_merchant/billing/gateways/mastercard.rb +293 -0
  112. data/lib/active_merchant/billing/gateways/maxipago.rb +220 -0
  113. data/lib/active_merchant/billing/gateways/mercado_pago.rb +329 -0
  114. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +194 -0
  115. data/lib/active_merchant/billing/gateways/merchant_one.rb +110 -0
  116. data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
  117. data/lib/active_merchant/billing/gateways/merchant_ware.rb +313 -0
  118. data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +284 -0
  119. data/lib/active_merchant/billing/gateways/merchant_warrior.rb +248 -0
  120. data/lib/active_merchant/billing/gateways/mercury.rb +352 -0
  121. data/lib/active_merchant/billing/gateways/metrics_global.rb +293 -0
  122. data/lib/active_merchant/billing/gateways/micropayment.rb +182 -0
  123. data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +100 -0
  124. data/lib/active_merchant/billing/gateways/migs.rb +329 -0
  125. data/lib/active_merchant/billing/gateways/mit.rb +260 -0
  126. data/lib/active_merchant/billing/gateways/modern_payments.rb +37 -0
  127. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +215 -0
  128. data/lib/active_merchant/billing/gateways/moka.rb +290 -0
  129. data/lib/active_merchant/billing/gateways/monei.rb +422 -0
  130. data/lib/active_merchant/billing/gateways/moneris.rb +446 -0
  131. data/lib/active_merchant/billing/gateways/money_movers.rb +150 -0
  132. data/lib/active_merchant/billing/gateways/mundipagg.rb +363 -0
  133. data/lib/active_merchant/billing/gateways/nab_transact.rb +299 -0
  134. data/lib/active_merchant/billing/gateways/ncr_secure_pay.rb +163 -0
  135. data/lib/active_merchant/billing/gateways/net_registry.rb +198 -0
  136. data/lib/active_merchant/billing/gateways/netaxept.rb +180 -0
  137. data/lib/active_merchant/billing/gateways/netbanx.rb +376 -0
  138. data/lib/active_merchant/billing/gateways/netbilling.rb +229 -0
  139. data/lib/active_merchant/billing/gateways/netpay.rb +223 -0
  140. data/lib/active_merchant/billing/gateways/network_merchants.rb +238 -0
  141. data/lib/active_merchant/billing/gateways/nmi.rb +356 -0
  142. data/lib/active_merchant/billing/gateways/ogone.rb +481 -0
  143. data/lib/active_merchant/billing/gateways/omise.rb +323 -0
  144. data/lib/active_merchant/billing/gateways/openpay.rb +229 -0
  145. data/lib/active_merchant/billing/gateways/opp.rb +394 -0
  146. data/lib/active_merchant/billing/gateways/optimal_payment.rb +331 -0
  147. data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +45 -0
  148. data/lib/active_merchant/billing/gateways/orbital.rb +1209 -0
  149. data/lib/active_merchant/billing/gateways/pac_net_raven.rb +206 -0
  150. data/lib/active_merchant/billing/gateways/pagarme.rb +239 -0
  151. data/lib/active_merchant/billing/gateways/pago_facil.rb +120 -0
  152. data/lib/active_merchant/billing/gateways/pay_arc.rb +392 -0
  153. data/lib/active_merchant/billing/gateways/pay_conex.rb +245 -0
  154. data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +277 -0
  155. data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
  156. data/lib/active_merchant/billing/gateways/pay_junction.rb +390 -0
  157. data/lib/active_merchant/billing/gateways/pay_junction_v2.rb +206 -0
  158. data/lib/active_merchant/billing/gateways/pay_secure.rb +110 -0
  159. data/lib/active_merchant/billing/gateways/pay_trace.rb +404 -0
  160. data/lib/active_merchant/billing/gateways/paybox_direct.rb +224 -0
  161. data/lib/active_merchant/billing/gateways/payeezy.rb +458 -0
  162. data/lib/active_merchant/billing/gateways/payex.rb +409 -0
  163. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +235 -0
  164. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +42 -0
  165. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  166. data/lib/active_merchant/billing/gateways/payflow.rb +411 -0
  167. data/lib/active_merchant/billing/gateways/payflow_express.rb +220 -0
  168. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +14 -0
  169. data/lib/active_merchant/billing/gateways/payflow_uk.rb +20 -0
  170. data/lib/active_merchant/billing/gateways/payment_express.rb +373 -0
  171. data/lib/active_merchant/billing/gateways/paymentez.rb +327 -0
  172. data/lib/active_merchant/billing/gateways/paymill.rb +369 -0
  173. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +718 -0
  174. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +65 -0
  175. data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +262 -0
  176. data/lib/active_merchant/billing/gateways/paypal.rb +136 -0
  177. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  178. data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +44 -0
  179. data/lib/active_merchant/billing/gateways/paypal_express.rb +270 -0
  180. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +30 -0
  181. data/lib/active_merchant/billing/gateways/paysafe.rb +412 -0
  182. data/lib/active_merchant/billing/gateways/payscout.rb +159 -0
  183. data/lib/active_merchant/billing/gateways/paystation.rb +204 -0
  184. data/lib/active_merchant/billing/gateways/payu_in.rb +249 -0
  185. data/lib/active_merchant/billing/gateways/payu_latam.rb +469 -0
  186. data/lib/active_merchant/billing/gateways/payu_polska.rb +178 -0
  187. data/lib/active_merchant/billing/gateways/payway.rb +207 -0
  188. data/lib/active_merchant/billing/gateways/payway_dot_com.rb +253 -0
  189. data/lib/active_merchant/billing/gateways/pin.rb +246 -0
  190. data/lib/active_merchant/billing/gateways/plugnpay.rb +283 -0
  191. data/lib/active_merchant/billing/gateways/priority.rb +390 -0
  192. data/lib/active_merchant/billing/gateways/pro_pay.rb +325 -0
  193. data/lib/active_merchant/billing/gateways/psigate.rb +227 -0
  194. data/lib/active_merchant/billing/gateways/psl_card.rb +295 -0
  195. data/lib/active_merchant/billing/gateways/qbms.rb +302 -0
  196. data/lib/active_merchant/billing/gateways/quantum.rb +274 -0
  197. data/lib/active_merchant/billing/gateways/quickbooks.rb +377 -0
  198. data/lib/active_merchant/billing/gateways/quickpay/quickpay_common.rb +184 -0
  199. data/lib/active_merchant/billing/gateways/quickpay/quickpay_v10.rb +297 -0
  200. data/lib/active_merchant/billing/gateways/quickpay/quickpay_v4to7.rb +226 -0
  201. data/lib/active_merchant/billing/gateways/quickpay.rb +24 -0
  202. data/lib/active_merchant/billing/gateways/qvalent.rb +305 -0
  203. data/lib/active_merchant/billing/gateways/realex.rb +400 -0
  204. data/lib/active_merchant/billing/gateways/redsys.rb +718 -0
  205. data/lib/active_merchant/billing/gateways/s5.rb +247 -0
  206. data/lib/active_merchant/billing/gateways/safe_charge.rb +301 -0
  207. data/lib/active_merchant/billing/gateways/sage.rb +446 -0
  208. data/lib/active_merchant/billing/gateways/sage_pay.rb +434 -0
  209. data/lib/active_merchant/billing/gateways/sallie_mae.rb +141 -0
  210. data/lib/active_merchant/billing/gateways/secure_net.rb +260 -0
  211. data/lib/active_merchant/billing/gateways/secure_pay.rb +191 -0
  212. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +290 -0
  213. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +103 -0
  214. data/lib/active_merchant/billing/gateways/securion_pay.rb +265 -0
  215. data/lib/active_merchant/billing/gateways/skip_jack.rb +450 -0
  216. data/lib/active_merchant/billing/gateways/smart_ps.rb +274 -0
  217. data/lib/active_merchant/billing/gateways/so_easy_pay.rb +194 -0
  218. data/lib/active_merchant/billing/gateways/spreedly_core.rb +312 -0
  219. data/lib/active_merchant/billing/gateways/stripe.rb +813 -0
  220. data/lib/active_merchant/billing/gateways/stripe_payment_intents.rb +463 -0
  221. data/lib/active_merchant/billing/gateways/swipe_checkout.rb +151 -0
  222. data/lib/active_merchant/billing/gateways/telr.rb +273 -0
  223. data/lib/active_merchant/billing/gateways/tns.rb +26 -0
  224. data/lib/active_merchant/billing/gateways/trans_first.rb +240 -0
  225. data/lib/active_merchant/billing/gateways/trans_first_transaction_express.rb +612 -0
  226. data/lib/active_merchant/billing/gateways/transact_pro.rb +222 -0
  227. data/lib/active_merchant/billing/gateways/transax.rb +21 -0
  228. data/lib/active_merchant/billing/gateways/transnational.rb +9 -0
  229. data/lib/active_merchant/billing/gateways/trexle.rb +221 -0
  230. data/lib/active_merchant/billing/gateways/trust_commerce.rb +489 -0
  231. data/lib/active_merchant/billing/gateways/usa_epay.rb +24 -0
  232. data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +1612 -0
  233. data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +353 -0
  234. data/lib/active_merchant/billing/gateways/vanco.rb +294 -0
  235. data/lib/active_merchant/billing/gateways/verifi.rb +224 -0
  236. data/lib/active_merchant/billing/gateways/viaklix.rb +171 -0
  237. data/lib/active_merchant/billing/gateways/visanet_peru.rb +246 -0
  238. data/lib/active_merchant/billing/gateways/vpos.rb +220 -0
  239. data/lib/active_merchant/billing/gateways/webpay.rb +97 -0
  240. data/lib/active_merchant/billing/gateways/wepay.rb +235 -0
  241. data/lib/active_merchant/billing/gateways/wirecard.rb +430 -0
  242. data/lib/active_merchant/billing/gateways/wompi.rb +153 -0
  243. data/lib/active_merchant/billing/gateways/world_net.rb +345 -0
  244. data/lib/active_merchant/billing/gateways/worldpay.rb +923 -0
  245. data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +208 -0
  246. data/lib/active_merchant/billing/gateways/worldpay_us.rb +221 -0
  247. data/lib/active_merchant/billing/gateways.rb +14 -0
  248. data/lib/active_merchant/billing/model.rb +30 -0
  249. data/lib/active_merchant/billing/network_tokenization_credit_card.rb +39 -0
  250. data/lib/active_merchant/billing/payment_token.rb +21 -0
  251. data/lib/active_merchant/billing/rails.rb +3 -0
  252. data/lib/active_merchant/billing/response.rb +97 -0
  253. data/lib/active_merchant/billing/three_d_secure_eci_mapper.rb +27 -0
  254. data/lib/active_merchant/billing.rb +16 -0
  255. data/lib/active_merchant/connection.rb +196 -0
  256. data/lib/active_merchant/country.rb +337 -0
  257. data/lib/active_merchant/empty.rb +20 -0
  258. data/lib/active_merchant/errors.rb +35 -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 +3 -0
  264. data/lib/active_merchant.rb +63 -0
  265. data/lib/activemerchant.rb +1 -0
  266. data/lib/certs/cacert.pem +3214 -0
  267. data/lib/support/gateway_support.rb +69 -0
  268. data/lib/support/outbound_hosts.rb +28 -0
  269. data/lib/support/ssl_verify.rb +88 -0
  270. data/lib/support/ssl_version.rb +86 -0
  271. metadata +463 -0
@@ -0,0 +1,396 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class BarclaycardSmartpayGateway < Gateway
4
+ self.test_url = 'https://pal-test.barclaycardsmartpay.com/pal/servlet'
5
+ self.live_url = 'https://pal-live.barclaycardsmartpay.com/pal/servlet'
6
+
7
+ self.supported_countries = %w[AL AD AM AT AZ BY BE BA BG HR CY CZ DK EE FI FR DE GR HU IS IE IT KZ LV LI LT LU MK MT MD MC ME NL NO PL PT RO RU SM RS SK SI ES SE CH TR UA GB VA]
8
+ self.default_currency = 'EUR'
9
+ self.currencies_with_three_decimal_places = %w(BHD KWD OMR RSD TND)
10
+ self.money_format = :cents
11
+ self.supported_cardtypes = %i[visa master american_express discover diners_club jcb dankort maestro]
12
+
13
+ self.homepage_url = 'https://www.barclaycardsmartpay.com/'
14
+ self.display_name = 'Barclaycard Smartpay'
15
+
16
+ API_VERSION = 'v40'
17
+
18
+ def initialize(options = {})
19
+ requires!(options, :company, :merchant, :password)
20
+ super
21
+ end
22
+
23
+ def purchase(money, creditcard, options = {})
24
+ requires!(options, :order_id)
25
+
26
+ MultiResponse.run do |r|
27
+ r.process { authorize(money, creditcard, options) }
28
+ r.process { capture(money, r.authorization, options) }
29
+ end
30
+ end
31
+
32
+ def authorize(money, creditcard, options = {})
33
+ requires!(options, :order_id)
34
+
35
+ post = payment_request(money, options)
36
+ post[:amount] = amount_hash(money, options[:currency])
37
+ post[:card] = credit_card_hash(creditcard)
38
+ post[:billingAddress] = billing_address_hash(options) if options[:billing_address]
39
+ post[:deliveryAddress] = shipping_address_hash(options) if options[:shipping_address]
40
+ post[:shopperStatement] = options[:shopper_statement] if options[:shopper_statement]
41
+
42
+ add_3ds(post, options)
43
+ commit('authorise', post)
44
+ end
45
+
46
+ def capture(money, authorization, options = {})
47
+ requires!(options, :order_id)
48
+
49
+ post = modification_request(authorization, options)
50
+ post[:modificationAmount] = amount_hash(money, options[:currency])
51
+
52
+ commit('capture', post)
53
+ end
54
+
55
+ def refund(money, authorization, options = {})
56
+ requires!(options, :order_id)
57
+
58
+ post = modification_request(authorization, options)
59
+ post[:modificationAmount] = amount_hash(money, options[:currency])
60
+
61
+ commit('refund', post)
62
+ end
63
+
64
+ def credit(money, creditcard, options = {})
65
+ post = payment_request(money, options)
66
+ post[:amount] = amount_hash(money, options[:currency])
67
+ post[:card] = credit_card_hash(creditcard)
68
+ post[:dateOfBirth] = options[:date_of_birth] if options[:date_of_birth]
69
+ post[:entityType] = options[:entity_type] if options[:entity_type]
70
+ post[:nationality] = options[:nationality] if options[:nationality]
71
+ post[:shopperName] = options[:shopper_name] if options[:shopper_name]
72
+
73
+ if options[:third_party_payout]
74
+ post[:recurring] = options[:recurring_contract] || { contract: 'PAYOUT' }
75
+ MultiResponse.run do |r|
76
+ r.process {
77
+ commit(
78
+ 'storeDetailAndSubmitThirdParty',
79
+ post,
80
+ @options[:store_payout_account],
81
+ @options[:store_payout_password]
82
+ )
83
+ }
84
+ r.process {
85
+ commit(
86
+ 'confirmThirdParty',
87
+ modification_request(r.authorization, @options),
88
+ @options[:review_payout_account],
89
+ @options[:review_payout_password]
90
+ )
91
+ }
92
+ end
93
+ else
94
+ commit('refundWithData', post)
95
+ end
96
+ end
97
+
98
+ def void(identification, options = {})
99
+ requires!(options, :order_id)
100
+
101
+ post = modification_request(identification, options)
102
+
103
+ commit('cancel', post)
104
+ end
105
+
106
+ def verify(creditcard, options = {})
107
+ authorize(0, creditcard, options)
108
+ end
109
+
110
+ def store(creditcard, options = {})
111
+ post = store_request(options)
112
+ post[:card] = credit_card_hash(creditcard)
113
+ post[:recurring] = { contract: 'RECURRING' }
114
+
115
+ commit('store', post)
116
+ end
117
+
118
+ def supports_scrubbing?
119
+ true
120
+ end
121
+
122
+ def scrub(transcript)
123
+ transcript.
124
+ gsub(%r(((?:\r\n)?Authorization: Basic )[^\r\n]+(\r\n)?), '\1[FILTERED]').
125
+ gsub(%r((card.number=)\d+), '\1[FILTERED]').
126
+ gsub(%r((card.cvc=)\d+), '\1[FILTERED]')
127
+ end
128
+
129
+ private
130
+
131
+ # Smartpay may return AVS codes not covered by standard AVSResult codes.
132
+ # Smartpay's descriptions noted below.
133
+ AVS_MAPPING = {
134
+ '0' => 'R', # Unknown
135
+ '1' => 'A', # Address matches, postal code doesn't
136
+ '2' => 'N', # Neither postal code nor address match
137
+ '3' => 'R', # AVS unavailable
138
+ '4' => 'E', # AVS not supported for this card type
139
+ '5' => 'U', # No AVS data provided
140
+ '6' => 'Z', # Postal code matches, address doesn't match
141
+ '7' => 'D', # Both postal code and address match
142
+ '8' => 'U', # Address not checked, postal code unknown
143
+ '9' => 'B', # Address matches, postal code unknown
144
+ '10' => 'N', # Address doesn't match, postal code unknown
145
+ '11' => 'U', # Postal code not checked, address unknown
146
+ '12' => 'B', # Address matches, postal code not checked
147
+ '13' => 'U', # Address doesn't match, postal code not checked
148
+ '14' => 'P', # Postal code matches, address unknown
149
+ '15' => 'P', # Postal code matches, address not checked
150
+ '16' => 'N', # Postal code doesn't match, address unknown
151
+ '17' => 'U', # Postal code doesn't match, address not checked
152
+ '18' => 'I' # Neither postal code nor address were checked
153
+ }
154
+
155
+ def commit(action, post, account = 'ws', password = @options[:password])
156
+ request = post_data(flatten_hash(post))
157
+ request_headers = headers(account, password)
158
+ raw_response = ssl_post(build_url(action), request, request_headers)
159
+ response = parse(raw_response)
160
+
161
+ Response.new(
162
+ success_from(response),
163
+ message_from(response),
164
+ response,
165
+ test: test?,
166
+ avs_result: AVSResult.new(code: parse_avs_code(response)),
167
+ authorization: response['recurringDetailReference'] || authorization_from(post, response)
168
+ )
169
+ rescue ResponseError => e
170
+ case e.response.code
171
+ when '401'
172
+ return Response.new(false, 'Invalid credentials', {}, test: test?)
173
+ when '403'
174
+ return Response.new(false, 'Not allowed', {}, test: test?)
175
+ when '422', '500'
176
+ if e.response.body.split(/\W+/).any? { |word| %w(validation configuration security).include?(word) }
177
+ error_message = e.response.body[/#{Regexp.escape('message=')}(.*?)#{Regexp.escape('&')}/m, 1].tr('+', ' ')
178
+ error_code = e.response.body[/#{Regexp.escape('errorCode=')}(.*?)#{Regexp.escape('&')}/m, 1]
179
+ return Response.new(false, error_code + ': ' + error_message, {}, test: test?)
180
+ end
181
+ end
182
+ raise
183
+ end
184
+
185
+ def authorization_from(parameters, response)
186
+ authorization = [parameters[:originalReference], response['pspReference']].compact
187
+
188
+ return nil if authorization.empty?
189
+
190
+ return authorization.join('#')
191
+ end
192
+
193
+ def parse_avs_code(response)
194
+ AVS_MAPPING[response['additionalData']['avsResult'][0..1].strip] if response.dig('additionalData', 'avsResult')
195
+ end
196
+
197
+ def flatten_hash(hash, prefix = nil)
198
+ flat_hash = {}
199
+ hash.each_pair do |key, val|
200
+ conc_key = prefix.nil? ? key : "#{prefix}.#{key}"
201
+ if val.is_a?(Hash)
202
+ flat_hash.merge!(flatten_hash(val, conc_key))
203
+ else
204
+ flat_hash[conc_key] = val
205
+ end
206
+ end
207
+ flat_hash
208
+ end
209
+
210
+ def headers(account, password)
211
+ {
212
+ 'Content-Type' => 'application/x-www-form-urlencoded; charset=utf-8',
213
+ 'Authorization' => 'Basic ' + Base64.strict_encode64("#{account}@Company.#{@options[:company]}:#{password}").strip
214
+ }
215
+ end
216
+
217
+ def parse(response)
218
+ parsed_response = {}
219
+ params = CGI.parse(response)
220
+ params.each do |key, value|
221
+ parsed_key = key.split('.', 2)
222
+ if parsed_key.size > 1
223
+ parsed_response[parsed_key[0]] ||= {}
224
+ parsed_response[parsed_key[0]][parsed_key[1]] = value[0]
225
+ else
226
+ parsed_response[parsed_key[0]] = value[0]
227
+ end
228
+ end
229
+ parsed_response
230
+ end
231
+
232
+ def post_data(data)
233
+ data.map do |key, val|
234
+ "#{key}=#{CGI.escape(val.to_s)}"
235
+ end.reduce do |x, y|
236
+ "#{x}&#{y}"
237
+ end
238
+ end
239
+
240
+ def message_from(response)
241
+ return response['resultCode'] if response.has_key?('resultCode') # Payment request
242
+ return response['response'] if response['response'] # Modification request
243
+ return response['result'] if response.has_key?('result') # Store/Recurring request
244
+
245
+ 'Failure' # Negative fallback in case of error
246
+ end
247
+
248
+ def success_from(response)
249
+ return true if response['result'] == 'Success'
250
+
251
+ successful_results = %w(Authorised Received [payout-submit-received])
252
+ successful_responses = %w([capture-received] [cancel-received] [refund-received] [payout-confirm-received])
253
+ successful_results.include?(response['resultCode']) || successful_responses.include?(response['response'])
254
+ end
255
+
256
+ def build_url(action)
257
+ case action
258
+ when 'store'
259
+ "#{test? ? self.test_url : self.live_url}/Recurring/#{API_VERSION}/storeToken"
260
+ when 'finalize3ds'
261
+ "#{test? ? self.test_url : self.live_url}/Payment/#{API_VERSION}/authorise3d"
262
+ when 'storeDetailAndSubmitThirdParty', 'confirmThirdParty'
263
+ "#{test? ? self.test_url : self.live_url}/Payout/#{API_VERSION}/#{action}"
264
+ else
265
+ "#{test? ? self.test_url : self.live_url}/Payment/#{API_VERSION}/#{action}"
266
+ end
267
+ end
268
+
269
+ def billing_address_hash(options)
270
+ address = options[:address] || options[:billing_address] if options[:address] || options[:billing_address]
271
+ street = options[:street] || parse_street(address)
272
+ house = options[:house_number] || parse_house_number(address)
273
+
274
+ create_address_hash(address, house, street)
275
+ end
276
+
277
+ def shipping_address_hash(options)
278
+ address = options[:shipping_address]
279
+ street = options[:shipping_street] || parse_street(address)
280
+ house = options[:shipping_house_number] || parse_house_number(address)
281
+
282
+ create_address_hash(address, house, street)
283
+ end
284
+
285
+ def parse_street(address)
286
+ address_to_parse = "#{address[:address1]} #{address[:address2]}"
287
+ street = address[:street] || address_to_parse.split(/\s+/).keep_if { |x| x !~ /\d/ }.join(' ')
288
+ street.empty? ? 'Not Provided' : street
289
+ end
290
+
291
+ def parse_house_number(address)
292
+ address_to_parse = "#{address[:address1]} #{address[:address2]}"
293
+ house = address[:houseNumberOrName] || address_to_parse.split(/\s+/).keep_if { |x| x =~ /\d/ }.join(' ')
294
+ house.empty? ? 'Not Provided' : house
295
+ end
296
+
297
+ def create_address_hash(address, house, street)
298
+ hash = {}
299
+ hash[:houseNumberOrName] = house
300
+ hash[:street] = street
301
+ hash[:city] = address[:city]
302
+ hash[:stateOrProvince] = address[:state]
303
+ hash[:postalCode] = address[:zip]
304
+ hash[:country] = address[:country]
305
+ hash.keep_if { |_, v| v }
306
+ end
307
+
308
+ def amount_hash(money, currency)
309
+ currency = currency || currency(money)
310
+ hash = {}
311
+ hash[:currency] = currency
312
+ hash[:value] = localized_amount(money, currency) if money
313
+ hash
314
+ end
315
+
316
+ def credit_card_hash(creditcard)
317
+ hash = {}
318
+ hash[:cvc] = creditcard.verification_value if creditcard.verification_value
319
+ hash[:expiryMonth] = format(creditcard.month, :two_digits) if creditcard.month
320
+ hash[:expiryYear] = format(creditcard.year, :four_digits) if creditcard.year
321
+ hash[:holderName] = creditcard.name if creditcard.name
322
+ hash[:number] = creditcard.number if creditcard.number
323
+ hash
324
+ end
325
+
326
+ def modification_request(reference, options)
327
+ hash = {}
328
+ hash[:merchantAccount] = @options[:merchant]
329
+ hash[:originalReference] = psp_reference_from(reference)
330
+ hash.keep_if { |_, v| v }
331
+ end
332
+
333
+ def psp_reference_from(authorization)
334
+ authorization.nil? ? nil : authorization.split('#').first
335
+ end
336
+
337
+ def payment_request(money, options)
338
+ hash = {}
339
+ hash[:merchantAccount] = @options[:merchant]
340
+ hash[:reference] = options[:order_id]
341
+ hash[:shopperEmail] = options[:email]
342
+ hash[:shopperIP] = options[:ip]
343
+ hash[:shopperReference] = options[:customer]
344
+ hash[:shopperInteraction] = options[:shopper_interaction]
345
+ hash[:deviceFingerprint] = options[:device_fingerprint]
346
+ hash.keep_if { |_, v| v }
347
+ end
348
+
349
+ def store_request(options)
350
+ hash = {}
351
+ hash[:merchantAccount] = @options[:merchant]
352
+ hash[:shopperEmail] = options[:email]
353
+ hash[:shopperReference] = options[:customer] if options[:customer]
354
+ hash.keep_if { |_, v| v }
355
+ end
356
+
357
+ def add_3ds(post, options)
358
+ if three_ds_2_options = options[:three_ds_2]
359
+ device_channel = three_ds_2_options[:channel]
360
+ if device_channel == 'app'
361
+ post[:threeDS2RequestData] = { deviceChannel: device_channel }
362
+ else
363
+ add_browser_info(three_ds_2_options[:browser_info], post)
364
+ post[:threeDS2RequestData] = { deviceChannel: device_channel, notificationURL: three_ds_2_options[:notification_url] }
365
+ end
366
+
367
+ if options.has_key?(:execute_threed)
368
+ post[:additionalData] ||= {}
369
+ post[:additionalData][:executeThreeD] = options[:execute_threed]
370
+ post[:additionalData][:scaExemption] = options[:sca_exemption] if options[:sca_exemption]
371
+ end
372
+ else
373
+ return unless options[:execute_threed] || options[:threed_dynamic]
374
+
375
+ post[:browserInfo] = { userAgent: options[:user_agent], acceptHeader: options[:accept_header] }
376
+ post[:additionalData] = { executeThreeD: 'true' } if options[:execute_threed]
377
+ end
378
+ end
379
+
380
+ def add_browser_info(browser_info, post)
381
+ return unless browser_info
382
+
383
+ post[:browserInfo] = {
384
+ acceptHeader: browser_info[:accept_header],
385
+ colorDepth: browser_info[:depth],
386
+ javaEnabled: browser_info[:java],
387
+ language: browser_info[:language],
388
+ screenHeight: browser_info[:height],
389
+ screenWidth: browser_info[:width],
390
+ timeZoneOffset: browser_info[:timezone],
391
+ userAgent: browser_info[:user_agent]
392
+ }
393
+ end
394
+ end
395
+ end
396
+ end
@@ -0,0 +1,15 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class BarclaysEpdqExtraPlusGateway < OgoneGateway
4
+ self.test_url = 'https://mdepayments.epdq.co.uk/ncol/test/'
5
+ self.live_url = 'https://payments.epdq.co.uk/ncol/prod/'
6
+
7
+ self.display_name = 'Barclays ePDQ Extra Plus'
8
+ self.homepage_url = 'http://www.barclaycard.co.uk/business/accepting-payments/epdq-ecomm/'
9
+
10
+ self.supported_countries = ['GB']
11
+ self.supported_cardtypes = %i[visa master american_express diners_club discover jcb maestro]
12
+ self.default_currency = 'GBP'
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,131 @@
1
+ require 'digest/sha2'
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ class Be2billGateway < Gateway
6
+ self.test_url = 'https://secure-test.be2bill.com/front/service/rest/process.php'
7
+ self.live_url = 'https://secure-magenta1.be2bill.com/front/service/rest/process.php'
8
+
9
+ self.display_name = 'Be2Bill'
10
+ self.homepage_url = 'http://www.be2bill.com/'
11
+ self.supported_countries = ['FR']
12
+ self.supported_cardtypes = %i[visa master american_express]
13
+ self.default_currency = 'EUR'
14
+ self.money_format = :cents
15
+
16
+ # These options are mandatory on be2bill (cf. tests) :
17
+ #
18
+ # options = { :order_id => order.id,
19
+ # :customer_id => user.id,
20
+ # :description => "Some description",
21
+ # :referrer => request.env['HTTP_REFERER'],
22
+ # :user_agent => request.env['HTTP_USER_AGENT'],
23
+ # :ip => request.remote_ip,
24
+ # :email => user.email }
25
+
26
+ def initialize(options = {})
27
+ requires!(options, :login, :password)
28
+ super
29
+ end
30
+
31
+ def authorize(money, creditcard, options = {})
32
+ post = {}
33
+ add_invoice(post, options)
34
+ add_creditcard(post, creditcard)
35
+ add_customer_data(post, options)
36
+
37
+ commit('authorization', money, post)
38
+ end
39
+
40
+ def purchase(money, creditcard, options = {})
41
+ post = {}
42
+ add_invoice(post, options)
43
+ add_creditcard(post, creditcard)
44
+ add_customer_data(post, options)
45
+
46
+ commit('payment', money, post)
47
+ end
48
+
49
+ def capture(money, authorization, options = {})
50
+ post = {}
51
+ add_invoice(post, options)
52
+ post[:TRANSACTIONID] = authorization
53
+
54
+ commit('capture', money, post)
55
+ end
56
+
57
+ private
58
+
59
+ def add_customer_data(post, options)
60
+ post[:CLIENTREFERRER] = options[:referrer]
61
+ post[:CLIENTUSERAGENT] = options[:user_agent]
62
+ post[:CLIENTIP] = options[:ip]
63
+ post[:CLIENTEMAIL] = options[:email]
64
+ post[:CLIENTIDENT] = options[:customer_id]
65
+ end
66
+
67
+ def add_invoice(post, options)
68
+ post[:ORDERID] = options[:order_id]
69
+ post[:DESCRIPTION] = options[:description]
70
+ end
71
+
72
+ def add_creditcard(post, creditcard)
73
+ post[:CARDFULLNAME] = creditcard ? creditcard.name : ''
74
+ post[:CARDCODE] = creditcard ? creditcard.number : ''
75
+ post[:CARDVALIDITYDATE] = creditcard ? '%02d-%02s' % [creditcard.month, creditcard.year.to_s[-2..-1]] : ''
76
+ post[:CARDCVV] = creditcard ? creditcard.verification_value : ''
77
+ end
78
+
79
+ def parse(response)
80
+ ActiveSupport::JSON.decode(response)
81
+ end
82
+
83
+ def commit(action, money, parameters)
84
+ parameters[:IDENTIFIER] = @options[:login]
85
+ parameters[:AMOUNT] = amount(money)
86
+ parameters[:VERSION] = '2.0'
87
+
88
+ url = (test? ? self.test_url : self.live_url)
89
+ response = parse(ssl_post(url, post_data(action, parameters)))
90
+
91
+ Response.new(
92
+ successful?(response),
93
+ message_from(response),
94
+ response,
95
+ authorization: response['TRANSACTIONID'],
96
+ test: test?
97
+ )
98
+ end
99
+
100
+ def successful?(response)
101
+ %w(0000 0001).include?(response['EXECCODE'])
102
+ end
103
+
104
+ def message_from(response)
105
+ if successful?(response)
106
+ "Approved : #{response['MESSAGE']}"
107
+ else
108
+ "Declined (#{response['EXECCODE']} - #{response['MESSAGE']}"
109
+ end
110
+ end
111
+
112
+ def post_data(action, parameters = {})
113
+ {
114
+ method: action,
115
+ params: parameters.merge(HASH: signature(parameters, action))
116
+ }.to_query
117
+ end
118
+
119
+ def signature(parameters, action)
120
+ parameters[:OPERATIONTYPE] = action unless parameters[:OPERATIONTYPE]
121
+
122
+ signature = @options[:password]
123
+ parameters.sort.each do |key, value|
124
+ signature += ("#{key.upcase}=#{value}" + @options[:password])
125
+ end
126
+
127
+ Digest::SHA256.hexdigest(signature)
128
+ end
129
+ end
130
+ end
131
+ end