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,356 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class NmiGateway < Gateway
4
+ include Empty
5
+
6
+ DUP_WINDOW_DEPRECATION_MESSAGE = 'The class-level duplicate_window variable is deprecated. Please use the :dup_seconds transaction option instead.'
7
+
8
+ self.test_url = self.live_url = 'https://secure.nmi.com/api/transact.php'
9
+ self.default_currency = 'USD'
10
+ self.money_format = :dollars
11
+ self.supported_countries = ['US']
12
+ self.supported_cardtypes = %i[visa master american_express discover]
13
+ self.homepage_url = 'http://nmi.com/'
14
+ self.display_name = 'NMI'
15
+
16
+ def self.duplicate_window=(seconds)
17
+ ActiveMerchant.deprecated(DUP_WINDOW_DEPRECATION_MESSAGE)
18
+ @dup_seconds = seconds
19
+ end
20
+
21
+ def self.duplicate_window
22
+ instance_variable_defined?(:@dup_seconds) ? @dup_seconds : nil
23
+ end
24
+
25
+ def initialize(options = {})
26
+ requires!(options, :login, :password)
27
+ super
28
+ end
29
+
30
+ def purchase(amount, payment_method, options = {})
31
+ post = {}
32
+ add_invoice(post, amount, options)
33
+ add_payment_method(post, payment_method, options)
34
+ add_stored_credential(post, options)
35
+ add_customer_data(post, options)
36
+ add_vendor_data(post, options)
37
+ add_merchant_defined_fields(post, options)
38
+ add_level3_fields(post, options)
39
+ add_three_d_secure(post, options)
40
+
41
+ commit('sale', post)
42
+ end
43
+
44
+ def authorize(amount, payment_method, options = {})
45
+ post = {}
46
+ add_invoice(post, amount, options)
47
+ add_payment_method(post, payment_method, options)
48
+ add_stored_credential(post, options)
49
+ add_customer_data(post, options)
50
+ add_vendor_data(post, options)
51
+ add_merchant_defined_fields(post, options)
52
+ add_level3_fields(post, options)
53
+ add_three_d_secure(post, options)
54
+
55
+ commit('auth', post)
56
+ end
57
+
58
+ def capture(amount, authorization, options = {})
59
+ post = {}
60
+ add_invoice(post, amount, options)
61
+ add_reference(post, authorization)
62
+ add_merchant_defined_fields(post, options)
63
+
64
+ commit('capture', post)
65
+ end
66
+
67
+ def void(authorization, options = {})
68
+ post = {}
69
+ add_reference(post, authorization)
70
+ add_payment_type(post, authorization)
71
+
72
+ commit('void', post)
73
+ end
74
+
75
+ def refund(amount, authorization, options = {})
76
+ post = {}
77
+ add_invoice(post, amount, options)
78
+ add_reference(post, authorization)
79
+ add_payment_type(post, authorization)
80
+
81
+ commit('refund', post)
82
+ end
83
+
84
+ def credit(amount, payment_method, options = {})
85
+ post = {}
86
+ add_invoice(post, amount, options)
87
+ add_payment_method(post, payment_method, options)
88
+ add_customer_data(post, options)
89
+ add_vendor_data(post, options)
90
+ add_level3_fields(post, options)
91
+
92
+ commit('credit', post)
93
+ end
94
+
95
+ def verify(payment_method, options = {})
96
+ post = {}
97
+ add_payment_method(post, payment_method, options)
98
+ add_customer_data(post, options)
99
+ add_vendor_data(post, options)
100
+ add_merchant_defined_fields(post, options)
101
+ add_level3_fields(post, options)
102
+
103
+ commit('validate', post)
104
+ end
105
+
106
+ def store(payment_method, options = {})
107
+ post = {}
108
+ add_invoice(post, nil, options)
109
+ add_payment_method(post, payment_method, options)
110
+ add_customer_data(post, options)
111
+ add_vendor_data(post, options)
112
+ add_merchant_defined_fields(post, options)
113
+
114
+ commit('add_customer', post)
115
+ end
116
+
117
+ def verify_credentials
118
+ response = void('0')
119
+ response.message != 'Authentication Failed'
120
+ end
121
+
122
+ def supports_scrubbing?
123
+ true
124
+ end
125
+
126
+ def scrub(transcript)
127
+ transcript.
128
+ gsub(%r((password=)[^&\n]*), '\1[FILTERED]').
129
+ gsub(%r((ccnumber=)\d+), '\1[FILTERED]').
130
+ gsub(%r((cvv=)\d+), '\1[FILTERED]').
131
+ gsub(%r((checkaba=)\d+), '\1[FILTERED]').
132
+ gsub(%r((checkaccount=)\d+), '\1[FILTERED]').
133
+ gsub(%r((cryptogram=)[^&]+(&?)), '\1[FILTERED]\2')
134
+ end
135
+
136
+ def supports_network_tokenization?
137
+ true
138
+ end
139
+
140
+ private
141
+
142
+ def add_level3_fields(post, options)
143
+ add_fields_to_post_if_present(post, options, %i[tax shipping ponumber])
144
+ end
145
+
146
+ def add_invoice(post, money, options)
147
+ post[:amount] = amount(money)
148
+ post[:orderid] = options[:order_id]
149
+ post[:orderdescription] = options[:description]
150
+ post[:currency] = options[:currency] || currency(money)
151
+ post[:billing_method] = 'recurring' if options[:recurring]
152
+ if (dup_seconds = (options[:dup_seconds] || self.class.duplicate_window))
153
+ post[:dup_seconds] = dup_seconds
154
+ end
155
+ end
156
+
157
+ def add_payment_method(post, payment_method, options)
158
+ if payment_method.is_a?(String)
159
+ customer_vault_id, = split_authorization(payment_method)
160
+ post[:customer_vault_id] = customer_vault_id
161
+ elsif payment_method.is_a?(NetworkTokenizationCreditCard)
162
+ post[:ccnumber] = payment_method.number
163
+ post[:ccexp] = exp_date(payment_method)
164
+ post[:token_cryptogram] = payment_method.payment_cryptogram
165
+ elsif card_brand(payment_method) == 'check'
166
+ post[:payment] = 'check'
167
+ post[:firstname] = payment_method.first_name
168
+ post[:lastname] = payment_method.last_name
169
+ post[:checkname] = payment_method.name
170
+ post[:checkaba] = payment_method.routing_number
171
+ post[:checkaccount] = payment_method.account_number
172
+ post[:account_holder_type] = payment_method.account_holder_type
173
+ post[:account_type] = payment_method.account_type
174
+ post[:sec_code] = options[:sec_code] || 'WEB'
175
+ else
176
+ post[:payment] = 'creditcard'
177
+ post[:firstname] = payment_method.first_name
178
+ post[:lastname] = payment_method.last_name
179
+ post[:ccnumber] = payment_method.number
180
+ post[:cvv] = payment_method.verification_value unless empty?(payment_method.verification_value)
181
+ post[:ccexp] = exp_date(payment_method)
182
+ end
183
+ end
184
+
185
+ def add_stored_credential(post, options)
186
+ return unless (stored_credential = options[:stored_credential])
187
+
188
+ if stored_credential[:initiator] == 'cardholder'
189
+ post[:initiated_by] = 'customer'
190
+ else
191
+ post[:initiated_by] = 'merchant'
192
+ end
193
+
194
+ # :reason_type, when provided, overrides anything previously set in
195
+ # post[:billing_method] (see `add_invoice` and the :recurring) option
196
+ case stored_credential[:reason_type]
197
+ when 'recurring'
198
+ post[:billing_method] = 'recurring'
199
+ when 'installment'
200
+ post[:billing_method] = 'installment'
201
+ when 'unscheduled'
202
+ post.delete(:billing_method)
203
+ end
204
+
205
+ if stored_credential[:initial_transaction]
206
+ post[:stored_credential_indicator] = 'stored'
207
+ else
208
+ post[:stored_credential_indicator] = 'used'
209
+ # should only send :initial_transaction_id if it is a MIT
210
+ post[:initial_transaction_id] = stored_credential[:network_transaction_id] if post[:initiated_by] == 'merchant'
211
+ end
212
+ end
213
+
214
+ def add_customer_data(post, options)
215
+ post[:email] = options[:email]
216
+ post[:ipaddress] = options[:ip]
217
+ post[:customer_id] = options[:customer_id] || options[:customer]
218
+
219
+ if (billing_address = options[:billing_address] || options[:address])
220
+ post[:company] = billing_address[:company]
221
+ post[:address1] = billing_address[:address1]
222
+ post[:address2] = billing_address[:address2]
223
+ post[:city] = billing_address[:city]
224
+ post[:state] = billing_address[:state]
225
+ post[:country] = billing_address[:country]
226
+ post[:zip] = billing_address[:zip]
227
+ post[:phone] = billing_address[:phone]
228
+ end
229
+
230
+ if (shipping_address = options[:shipping_address])
231
+ post[:shipping_company] = shipping_address[:company]
232
+ post[:shipping_address1] = shipping_address[:address1]
233
+ post[:shipping_address2] = shipping_address[:address2]
234
+ post[:shipping_city] = shipping_address[:city]
235
+ post[:shipping_state] = shipping_address[:state]
236
+ post[:shipping_country] = shipping_address[:country]
237
+ post[:shipping_zip] = shipping_address[:zip]
238
+ post[:shipping_phone] = shipping_address[:phone]
239
+ end
240
+
241
+ if (descriptor = options[:descriptors])
242
+ post[:descriptor] = descriptor[:descriptor]
243
+ post[:descriptor_phone] = descriptor[:descriptor_phone]
244
+ post[:descriptor_address] = descriptor[:descriptor_address]
245
+ post[:descriptor_city] = descriptor[:descriptor_city]
246
+ post[:descriptor_state] = descriptor[:descriptor_state]
247
+ post[:descriptor_postal] = descriptor[:descriptor_postal]
248
+ post[:descriptor_country] = descriptor[:descriptor_country]
249
+ post[:descriptor_mcc] = descriptor[:descriptor_mcc]
250
+ post[:descriptor_merchant_id] = descriptor[:descriptor_merchant_id]
251
+ post[:descriptor_url] = descriptor[:descriptor_url]
252
+ end
253
+ end
254
+
255
+ def add_vendor_data(post, options)
256
+ post[:vendor_id] = options[:vendor_id] if options[:vendor_id]
257
+ post[:processor_id] = options[:processor_id] if options[:processor_id]
258
+ end
259
+
260
+ def add_merchant_defined_fields(post, options)
261
+ (1..20).each do |each|
262
+ key = "merchant_defined_field_#{each}".to_sym
263
+ post[key] = options[key] if options[key]
264
+ end
265
+ end
266
+
267
+ def add_three_d_secure(post, options)
268
+ three_d_secure = options[:three_d_secure]
269
+ return unless three_d_secure
270
+
271
+ post[:cardholder_auth] = cardholder_auth(three_d_secure[:authentication_response_status])
272
+ post[:cavv] = three_d_secure[:cavv]
273
+ post[:xid] = three_d_secure[:xid]
274
+ post[:three_ds_version] = three_d_secure[:version]
275
+ post[:directory_server_id] = three_d_secure[:ds_transaction_id]
276
+ end
277
+
278
+ def cardholder_auth(trans_status)
279
+ return nil if trans_status.nil?
280
+
281
+ trans_status == 'Y' ? 'verified' : 'attempted'
282
+ end
283
+
284
+ def add_reference(post, authorization)
285
+ transaction_id, = split_authorization(authorization)
286
+ post[:transactionid] = transaction_id
287
+ end
288
+
289
+ def add_payment_type(post, authorization)
290
+ _, payment_type = split_authorization(authorization)
291
+ post[:payment] = payment_type if payment_type
292
+ end
293
+
294
+ def exp_date(payment_method)
295
+ "#{format(payment_method.month, :two_digits)}#{format(payment_method.year, :two_digits)}"
296
+ end
297
+
298
+ def commit(action, params)
299
+ params[action == 'add_customer' ? :customer_vault : :type] = action
300
+ params[:username] = @options[:login]
301
+ params[:password] = @options[:password]
302
+
303
+ raw_response = ssl_post(url, post_data(action, params), headers)
304
+ response = parse(raw_response)
305
+ succeeded = success_from(response)
306
+
307
+ Response.new(
308
+ succeeded,
309
+ message_from(succeeded, response),
310
+ response,
311
+ authorization: authorization_from(response, params[:payment], action),
312
+ avs_result: AVSResult.new(code: response[:avsresponse]),
313
+ cvv_result: CVVResult.new(response[:cvvresponse]),
314
+ test: test?
315
+ )
316
+ end
317
+
318
+ def authorization_from(response, payment_type, action)
319
+ authorization = (action == 'add_customer' ? response[:customer_vault_id] : response[:transactionid])
320
+ [authorization, payment_type].join('#')
321
+ end
322
+
323
+ def split_authorization(authorization)
324
+ authorization.split('#')
325
+ end
326
+
327
+ def headers
328
+ { 'Content-Type' => 'application/x-www-form-urlencoded;charset=UTF-8' }
329
+ end
330
+
331
+ def post_data(action, params)
332
+ params.map { |k, v| "#{k}=#{CGI.escape(v.to_s)}" }.join('&')
333
+ end
334
+
335
+ def url
336
+ test? ? test_url : live_url
337
+ end
338
+
339
+ def parse(body)
340
+ Hash[CGI::parse(body).map { |k, v| [k.intern, v.first] }]
341
+ end
342
+
343
+ def success_from(response)
344
+ response[:response] == '1'
345
+ end
346
+
347
+ def message_from(succeeded, response)
348
+ if succeeded
349
+ 'Succeeded'
350
+ else
351
+ response[:responsetext]
352
+ end
353
+ end
354
+ end
355
+ end
356
+ end