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,247 @@
1
+ require 'nokogiri'
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ class S5Gateway < Gateway
6
+ self.test_url = 'https://test.ctpe.io/payment/ctpe'
7
+ self.live_url = 'https://ctpe.io/payment/ctpe'
8
+
9
+ self.supported_countries = ['DK']
10
+ self.default_currency = 'EUR'
11
+ self.supported_cardtypes = %i[visa master maestro]
12
+
13
+ self.homepage_url = 'http://www.s5.dk/'
14
+ self.display_name = 'S5'
15
+
16
+ SUPPORTED_TRANSACTIONS = {
17
+ 'sale' => 'CC.DB',
18
+ 'authonly' => 'CC.PA',
19
+ 'capture' => 'CC.CP',
20
+ 'refund' => 'CC.RF',
21
+ 'void' => 'CC.RV',
22
+ 'store' => 'CC.RG'
23
+ }
24
+
25
+ def initialize(options = {})
26
+ requires!(options, :sender, :channel, :login, :password)
27
+ super
28
+ end
29
+
30
+ def purchase(money, payment, options = {})
31
+ request = build_xml_request do |xml|
32
+ add_identification(xml, options)
33
+ add_payment(xml, money, 'sale', options)
34
+ add_account(xml, payment)
35
+ add_customer(xml, payment, options)
36
+ add_recurrence_mode(xml, options)
37
+ end
38
+
39
+ commit(request)
40
+ end
41
+
42
+ def refund(money, authorization, options = {})
43
+ request = build_xml_request do |xml|
44
+ add_identification(xml, options, authorization)
45
+ add_payment(xml, money, 'refund', options)
46
+ end
47
+
48
+ commit(request)
49
+ end
50
+
51
+ def authorize(money, payment, options = {})
52
+ request = build_xml_request do |xml|
53
+ add_identification(xml, options)
54
+ add_payment(xml, money, 'authonly', options)
55
+ add_account(xml, payment)
56
+ add_customer(xml, payment, options)
57
+ add_recurrence_mode(xml, options)
58
+ end
59
+
60
+ commit(request)
61
+ end
62
+
63
+ def capture(money, authorization, options = {})
64
+ request = build_xml_request do |xml|
65
+ add_identification(xml, options, authorization)
66
+ add_payment(xml, money, 'capture', options)
67
+ end
68
+
69
+ commit(request)
70
+ end
71
+
72
+ def void(authorization, options = {})
73
+ request = build_xml_request do |xml|
74
+ add_identification(xml, options, authorization)
75
+ add_payment(xml, nil, 'void', options)
76
+ end
77
+
78
+ commit(request)
79
+ end
80
+
81
+ def store(payment, options = {})
82
+ request = build_xml_request do |xml|
83
+ xml.Payment(code: SUPPORTED_TRANSACTIONS['store'])
84
+ add_account(xml, payment)
85
+ add_customer(xml, payment, options)
86
+ add_recurrence_mode(xml, options)
87
+ end
88
+
89
+ commit(request)
90
+ end
91
+
92
+ def verify(credit_card, options = {})
93
+ MultiResponse.run(:use_first_response) do |r|
94
+ r.process { authorize(100, credit_card, options) }
95
+ r.process(:ignore_result) { void(r.authorization, options) }
96
+ end
97
+ end
98
+
99
+ def supports_scrubbing?
100
+ true
101
+ end
102
+
103
+ def scrub(transcript)
104
+ transcript.
105
+ gsub(%r((pwd=).+?(/>))i, '\1[FILTERED]\2').
106
+ gsub(%r((<Number>).+?(</Number>))i, '\1[FILTERED]\2').
107
+ gsub(%r((<Verification>).+?(</Verification>))i, '\1[FILTERED]\2')
108
+ end
109
+
110
+ private
111
+
112
+ def add_identification(xml, options, authorization = nil)
113
+ xml.Identification do
114
+ xml.TransactionID options[:order_id] if options[:order_id]
115
+ xml.ReferenceID authorization if authorization
116
+ end
117
+ end
118
+
119
+ def add_payment(xml, money, action, options)
120
+ xml.Payment(code: SUPPORTED_TRANSACTIONS[action]) do
121
+ xml.Memo "return_code=#{options[:memo]}" if options[:memo]
122
+ xml.Presentation do
123
+ xml.Amount amount(money)
124
+ xml.Currency options[:currency] || currency(money)
125
+ xml.Usage options[:description]
126
+ end
127
+ end
128
+ end
129
+
130
+ def add_account(xml, payment_method)
131
+ if !payment_method.respond_to?(:number)
132
+ xml.Account(registration: payment_method)
133
+ else
134
+ xml.Account do
135
+ xml.Number payment_method.number
136
+ xml.Holder "#{payment_method.first_name} #{payment_method.last_name}"
137
+ xml.Brand payment_method.brand
138
+ xml.Expiry(year: payment_method.year, month: payment_method.month)
139
+ xml.Verification payment_method.verification_value
140
+ end
141
+ end
142
+ end
143
+
144
+ def add_customer(xml, creditcard, options)
145
+ return unless creditcard.respond_to?(:number)
146
+
147
+ address = options[:billing_address]
148
+ xml.Customer do
149
+ xml.Contact do
150
+ xml.Email options[:email]
151
+ xml.Ip options[:ip]
152
+ xml.Phone address[:phone] if address
153
+ end
154
+ add_address(xml, address)
155
+ xml.Name do
156
+ xml.Given creditcard.first_name
157
+ xml.Family creditcard.last_name
158
+ xml.Company options[:company]
159
+ end
160
+ end
161
+ end
162
+
163
+ def add_address(xml, address)
164
+ return unless address
165
+
166
+ xml.Address do
167
+ xml.Street "#{address[:address1]} #{address[:address2]}"
168
+ xml.Zip address[:zip]
169
+ xml.City address[:city]
170
+ xml.State address[:state]
171
+ xml.Country address[:country]
172
+ end
173
+ end
174
+
175
+ def add_recurrence_mode(xml, options)
176
+ if options[:recurring] == true
177
+ xml.Recurrence(mode: 'REPEATED')
178
+ else
179
+ xml.Recurrence(mode: 'INITIAL')
180
+ end
181
+ end
182
+
183
+ def parse(body)
184
+ results = {}
185
+ xml = Nokogiri::XML(body)
186
+ resp = xml.xpath('//Response/Transaction/Identification')
187
+ resp.children.each do |element|
188
+ results[element.name.downcase.to_sym] = element.text
189
+ end
190
+ resp = xml.xpath('//Response/Transaction/Processing')
191
+ resp.children.each do |element|
192
+ results[element.name.downcase.to_sym] = element.text
193
+ end
194
+ results
195
+ end
196
+
197
+ def commit(xml)
198
+ url = (test? ? test_url : live_url)
199
+ headers = {
200
+ 'Content-Type' => 'application/x-www-form-urlencoded;charset=UTF-8'
201
+ }
202
+
203
+ response = parse(ssl_post(url, post_data(xml), headers))
204
+
205
+ Response.new(
206
+ success_from(response),
207
+ message_from(response),
208
+ response,
209
+ authorization: authorization_from(response),
210
+ test: test?
211
+ )
212
+ end
213
+
214
+ def success_from(response)
215
+ response[:result] == 'ACK'
216
+ end
217
+
218
+ def message_from(response)
219
+ response[:return]
220
+ end
221
+
222
+ def authorization_from(response)
223
+ response[:uniqueid]
224
+ end
225
+
226
+ def post_data(xml)
227
+ "load=#{xml}"
228
+ end
229
+
230
+ def build_xml_request
231
+ builder = Nokogiri::XML::Builder.new(encoding: 'UTF-8') do |xml|
232
+ xml.Request(version: '1.0') do
233
+ xml.Header do
234
+ xml.Security(sender: @options[:sender])
235
+ end
236
+ xml.Transaction(mode: @options[:mode] || 'LIVE', channel: @options[:channel]) do
237
+ xml.User(login: @options[:login], pwd: @options[:password])
238
+ yield(xml)
239
+ end
240
+ end
241
+ end
242
+
243
+ builder.to_xml
244
+ end
245
+ end
246
+ end
247
+ end
@@ -0,0 +1,301 @@
1
+ require 'nokogiri'
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ class SafeChargeGateway < Gateway
6
+ self.test_url = 'https://process.sandbox.safecharge.com/service.asmx/Process'
7
+ self.live_url = 'https://process.safecharge.com/service.asmx/Process'
8
+
9
+ self.supported_countries = %w[AT BE BG CY CZ DE DK EE GR ES FI FR GI HK HR HU IE IS IT LI LT LU LV MT MX NL NO PL PT RO SE SG SI SK GB US]
10
+ self.default_currency = 'USD'
11
+ self.supported_cardtypes = %i[visa master]
12
+
13
+ self.homepage_url = 'https://www.safecharge.com'
14
+ self.display_name = 'SafeCharge'
15
+
16
+ VERSION = '4.1.0'
17
+
18
+ def initialize(options = {})
19
+ requires!(options, :client_login_id, :client_password)
20
+ super
21
+ end
22
+
23
+ def purchase(money, payment, options = {})
24
+ post = {}
25
+
26
+ # Determine if 3DS is requested, or there is standard external MPI data
27
+ if options[:three_d_secure]
28
+ if options[:three_d_secure].is_a?(Hash)
29
+ add_external_mpi_data(post, options)
30
+ else
31
+ post[:sg_APIType] = 1
32
+ trans_type = 'Sale3D'
33
+ end
34
+ end
35
+
36
+ trans_type ||= 'Sale'
37
+
38
+ add_transaction_data(trans_type, post, money, options)
39
+ add_payment(post, payment, options)
40
+ add_customer_details(post, payment, options)
41
+
42
+ commit(post)
43
+ end
44
+
45
+ def authorize(money, payment, options = {})
46
+ post = {}
47
+
48
+ add_external_mpi_data(post, options) if options[:three_d_secure]&.is_a?(Hash)
49
+ add_transaction_data('Auth', post, money, options)
50
+ add_payment(post, payment, options)
51
+ add_customer_details(post, payment, options)
52
+
53
+ commit(post)
54
+ end
55
+
56
+ def capture(money, authorization, options = {})
57
+ post = {}
58
+ auth, transaction_id, token, exp_month, exp_year, _, original_currency = authorization.split('|')
59
+ add_transaction_data('Settle', post, money, options.merge!({ currency: original_currency }))
60
+ post[:sg_AuthCode] = auth
61
+ post[:sg_TransactionID] = transaction_id
62
+ post[:sg_CCToken] = token
63
+ post[:sg_ExpMonth] = exp_month
64
+ post[:sg_ExpYear] = exp_year
65
+ post[:sg_Email] = options[:email]
66
+
67
+ commit(post)
68
+ end
69
+
70
+ def refund(money, authorization, options = {})
71
+ post = {}
72
+ auth, transaction_id, token, exp_month, exp_year, _, original_currency = authorization.split('|')
73
+ add_transaction_data('Credit', post, money, options.merge!({ currency: original_currency }))
74
+ post[:sg_CreditType] = 2
75
+ post[:sg_AuthCode] = auth
76
+ post[:sg_TransactionID] = transaction_id
77
+ post[:sg_CCToken] = token
78
+ post[:sg_ExpMonth] = exp_month
79
+ post[:sg_ExpYear] = exp_year
80
+
81
+ commit(post)
82
+ end
83
+
84
+ def credit(money, payment, options = {})
85
+ post = {}
86
+
87
+ add_payment(post, payment, options)
88
+ add_transaction_data('Credit', post, money, options)
89
+
90
+ post[:sg_CreditType] = 1
91
+
92
+ commit(post)
93
+ end
94
+
95
+ def void(authorization, options = {})
96
+ post = {}
97
+ auth, transaction_id, token, exp_month, exp_year, original_amount, original_currency = authorization.split('|')
98
+ add_transaction_data('Void', post, (original_amount.to_f * 100), options.merge!({ currency: original_currency }))
99
+ post[:sg_CreditType] = 2
100
+ post[:sg_AuthCode] = auth
101
+ post[:sg_TransactionID] = transaction_id
102
+ post[:sg_CCToken] = token
103
+ post[:sg_ExpMonth] = exp_month
104
+ post[:sg_ExpYear] = exp_year
105
+
106
+ commit(post)
107
+ end
108
+
109
+ def verify(credit_card, options = {})
110
+ MultiResponse.run(:use_first_response) do |r|
111
+ r.process { authorize(100, credit_card, options) }
112
+ r.process(:ignore_result) { void(r.authorization, options) }
113
+ end
114
+ end
115
+
116
+ def supports_scrubbing?
117
+ true
118
+ end
119
+
120
+ def scrub(transcript)
121
+ transcript.
122
+ gsub(%r((sg_ClientPassword=)[^&]+(&?)), '\1[FILTERED]\2').
123
+ gsub(%r((sg_CardNumber=)[^&]+(&?)), '\1[FILTERED]\2').
124
+ gsub(%r((sg_CVV2=)\d+), '\1[FILTERED]')
125
+ end
126
+
127
+ private
128
+
129
+ def add_transaction_data(trans_type, post, money, options)
130
+ currency = options[:currency] || currency(money)
131
+
132
+ post[:sg_TransType] = trans_type
133
+ post[:sg_Currency] = currency
134
+ post[:sg_Amount] = localized_amount(money, currency)
135
+ post[:sg_ClientLoginID] = @options[:client_login_id]
136
+ post[:sg_ClientPassword] = @options[:client_password]
137
+ post[:sg_ResponseFormat] = '4'
138
+ post[:sg_Version] = VERSION
139
+ post[:sg_ClientUniqueID] = options[:order_id] if options[:order_id]
140
+ post[:sg_UserID] = options[:user_id] if options[:user_id]
141
+ post[:sg_AuthType] = options[:auth_type] if options[:auth_type]
142
+ post[:sg_ExpectedFulfillmentCount] = options[:expected_fulfillment_count] if options[:expected_fulfillment_count]
143
+ post[:sg_WebsiteID] = options[:website_id] if options[:website_id]
144
+ post[:sg_IPAddress] = options[:ip] if options[:ip]
145
+ post[:sg_VendorID] = options[:vendor_id] if options[:vendor_id]
146
+ post[:sg_Descriptor] = options[:merchant_descriptor] if options[:merchant_descriptor]
147
+ post[:sg_MerchantPhoneNumber] = options[:merchant_phone_number] if options[:merchant_phone_number]
148
+ post[:sg_MerchantName] = options[:merchant_name] if options[:merchant_name]
149
+ post[:sg_ProductID] = options[:product_id] if options[:product_id]
150
+ post[:sg_NotUseCVV] = options[:not_use_cvv].to_s == 'true' ? 1 : 0 unless options[:not_use_cvv].nil?
151
+ end
152
+
153
+ def add_payment(post, payment, options = {})
154
+ post[:sg_ExpMonth] = format(payment.month, :two_digits)
155
+ post[:sg_ExpYear] = format(payment.year, :two_digits)
156
+ post[:sg_CardNumber] = payment.number
157
+
158
+ if payment.is_a?(NetworkTokenizationCreditCard) && payment.source == :network_token
159
+ post[:sg_CAVV] = payment.payment_cryptogram
160
+ post[:sg_ECI] = options[:three_d_secure] && options[:three_d_secure][:eci] || '05'
161
+ post[:sg_IsExternalMPI] = 1
162
+ post[:sg_ExternalTokenProvider] = 5
163
+ else
164
+ post[:sg_CVV2] = payment.verification_value
165
+ post[:sg_NameOnCard] = payment.name
166
+ post[:sg_StoredCredentialMode] = (options[:stored_credential_mode] == true ? 1 : 0)
167
+ end
168
+ end
169
+
170
+ def add_customer_details(post, payment, options)
171
+ if address = options[:billing_address] || options[:address]
172
+ post[:sg_FirstName] = payment.first_name
173
+ post[:sg_LastName] = payment.last_name
174
+ post[:sg_Address] = address[:address1] if address[:address1]
175
+ post[:sg_City] = address[:city] if address[:city]
176
+ post[:sg_State] = address[:state] if address[:state]
177
+ post[:sg_Zip] = address[:zip] if address[:zip]
178
+ post[:sg_Country] = address[:country] if address[:country]
179
+ post[:sg_Phone] = address[:phone] if address[:phone]
180
+ end
181
+
182
+ post[:sg_Email] = options[:email]
183
+ end
184
+
185
+ def add_external_mpi_data(post, options)
186
+ post[:sg_ECI] = options[:three_d_secure][:eci] if options[:three_d_secure][:eci]
187
+ post[:sg_CAVV] = options[:three_d_secure][:cavv] if options[:three_d_secure][:cavv]
188
+ post[:sg_dsTransID] = options[:three_d_secure][:ds_transaction_id] if options[:three_d_secure][:ds_transaction_id]
189
+ post[:sg_threeDSProtocolVersion] = options[:three_d_secure][:ds_transaction_id] ? '2' : '1'
190
+ post[:sg_Xid] = options[:three_d_secure][:xid]
191
+ post[:sg_IsExternalMPI] = 1
192
+ post[:sg_EnablePartialApproval] = options[:is_partial_approval]
193
+ post[:sg_challengePreference] = options[:three_d_secure][:challenge_preference] if options[:three_d_secure][:challenge_preference]
194
+ end
195
+
196
+ def parse(xml)
197
+ response = {}
198
+
199
+ doc = Nokogiri::XML(xml)
200
+ doc.root.xpath('*').each do |node|
201
+ if node.elements.size == 0
202
+ response[node.name.underscore.downcase.to_sym] = node.text
203
+ else
204
+ node.traverse do |childnode|
205
+ childnode_to_response(response, childnode)
206
+ end
207
+ end
208
+ end
209
+ response
210
+ end
211
+
212
+ def childnode_to_response(response, childnode)
213
+ if childnode.elements.size == 0
214
+ element_name_to_symbol(response, childnode)
215
+ else
216
+ childnode.traverse do |node|
217
+ element_name_to_symbol(response, node)
218
+ end
219
+ end
220
+ end
221
+
222
+ def element_name_to_symbol(response, childnode)
223
+ name = childnode.name.downcase
224
+ response[name.to_sym] = childnode.text
225
+ end
226
+
227
+ def commit(parameters)
228
+ url = (test? ? test_url : live_url)
229
+ response = parse(ssl_post(url, post_data(parameters)))
230
+
231
+ Response.new(
232
+ success_from(response),
233
+ message_from(response),
234
+ response,
235
+ authorization: authorization_from(response, parameters),
236
+ avs_result: AVSResult.new(code: response[:avs_code]),
237
+ cvv_result: CVVResult.new(response[:cvv2_reply]),
238
+ test: test?,
239
+ error_code: error_code_from(response)
240
+ )
241
+ end
242
+
243
+ def success_from(response)
244
+ response[:status] == 'APPROVED'
245
+ end
246
+
247
+ def message_from(response)
248
+ return 'Success' if success_from(response)
249
+
250
+ response[:reason_codes] || response[:reason]
251
+ end
252
+
253
+ def authorization_from(response, parameters)
254
+ [
255
+ response[:auth_code],
256
+ response[:transaction_id],
257
+ response[:token],
258
+ parameters[:sg_ExpMonth],
259
+ parameters[:sg_ExpYear],
260
+ parameters[:sg_Amount],
261
+ parameters[:sg_Currency]
262
+ ].join('|')
263
+ end
264
+
265
+ def split_authorization(authorization)
266
+ auth_code, transaction_id, token, month, year, original_amount = authorization.split('|')
267
+
268
+ {
269
+ auth_code: auth_code,
270
+ transaction_id: transaction_id,
271
+ token: token,
272
+ exp_month: month,
273
+ exp_year: year,
274
+ original_amount: amount(original_amount.to_f * 100)
275
+ }
276
+ end
277
+
278
+ def post_data(params)
279
+ return nil unless params
280
+
281
+ params.map do |key, value|
282
+ next if value != false && value.blank?
283
+
284
+ "#{key}=#{CGI.escape(value.to_s)}"
285
+ end.compact.join('&')
286
+ end
287
+
288
+ def error_code_from(response)
289
+ response[:ex_err_code] || response[:err_code] unless success_from(response)
290
+ end
291
+
292
+ def underscore(camel_cased_word)
293
+ camel_cased_word.to_s.gsub(/::/, '/').
294
+ gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2').
295
+ gsub(/([a-z\d])([A-Z])/, '\1_\2').
296
+ tr('-', '_').
297
+ downcase
298
+ end
299
+ end
300
+ end
301
+ end