tanga_activemerchant 1.37.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (306) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG +1202 -0
  3. data/CONTRIBUTORS +414 -0
  4. data/MIT-LICENSE +20 -0
  5. data/README.md +221 -0
  6. data/gem-public_cert.pem +20 -0
  7. data/lib/active_merchant/billing/avs_result.rb +98 -0
  8. data/lib/active_merchant/billing/base.rb +57 -0
  9. data/lib/active_merchant/billing/check.rb +69 -0
  10. data/lib/active_merchant/billing/credit_card.rb +283 -0
  11. data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
  12. data/lib/active_merchant/billing/credit_card_methods.rb +143 -0
  13. data/lib/active_merchant/billing/cvv_result.rb +38 -0
  14. data/lib/active_merchant/billing/expiry_date.rb +34 -0
  15. data/lib/active_merchant/billing/gateway.rb +181 -0
  16. data/lib/active_merchant/billing/gateways/authorize_net.rb +725 -0
  17. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +956 -0
  18. data/lib/active_merchant/billing/gateways/balanced.rb +468 -0
  19. data/lib/active_merchant/billing/gateways/banwire.rb +105 -0
  20. data/lib/active_merchant/billing/gateways/barclays_epdq.rb +314 -0
  21. data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +15 -0
  22. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +393 -0
  23. data/lib/active_merchant/billing/gateways/beanstream.rb +169 -0
  24. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
  25. data/lib/active_merchant/billing/gateways/blue_pay.rb +501 -0
  26. data/lib/active_merchant/billing/gateways/bogus.rb +142 -0
  27. data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +9 -0
  28. data/lib/active_merchant/billing/gateways/braintree.rb +19 -0
  29. data/lib/active_merchant/billing/gateways/braintree_blue.rb +401 -0
  30. data/lib/active_merchant/billing/gateways/braintree_orange.rb +19 -0
  31. data/lib/active_merchant/billing/gateways/card_save.rb +23 -0
  32. data/lib/active_merchant/billing/gateways/card_stream.rb +225 -0
  33. data/lib/active_merchant/billing/gateways/card_stream_modern.rb +155 -0
  34. data/lib/active_merchant/billing/gateways/cc5.rb +156 -0
  35. data/lib/active_merchant/billing/gateways/certo_direct.rb +277 -0
  36. data/lib/active_merchant/billing/gateways/cyber_source.rb +639 -0
  37. data/lib/active_merchant/billing/gateways/data_cash.rb +591 -0
  38. data/lib/active_merchant/billing/gateways/efsnet.rb +230 -0
  39. data/lib/active_merchant/billing/gateways/elavon.rb +312 -0
  40. data/lib/active_merchant/billing/gateways/epay.rb +275 -0
  41. data/lib/active_merchant/billing/gateways/evo_ca.rb +308 -0
  42. data/lib/active_merchant/billing/gateways/eway.rb +225 -0
  43. data/lib/active_merchant/billing/gateways/eway_managed.rb +291 -0
  44. data/lib/active_merchant/billing/gateways/eway_rapid.rb +320 -0
  45. data/lib/active_merchant/billing/gateways/exact.rb +218 -0
  46. data/lib/active_merchant/billing/gateways/fat_zebra.rb +173 -0
  47. data/lib/active_merchant/billing/gateways/federated_canada.rb +167 -0
  48. data/lib/active_merchant/billing/gateways/finansbank.rb +22 -0
  49. data/lib/active_merchant/billing/gateways/first_pay.rb +176 -0
  50. data/lib/active_merchant/billing/gateways/firstdata_e4.rb +314 -0
  51. data/lib/active_merchant/billing/gateways/garanti.rb +257 -0
  52. data/lib/active_merchant/billing/gateways/hdfc.rb +207 -0
  53. data/lib/active_merchant/billing/gateways/iats_payments.rb +35 -0
  54. data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +249 -0
  55. data/lib/active_merchant/billing/gateways/ideal/ideal_rabobank.pem +13 -0
  56. data/lib/active_merchant/billing/gateways/ideal/ideal_response.rb +29 -0
  57. data/lib/active_merchant/billing/gateways/ideal_rabobank.rb +66 -0
  58. data/lib/active_merchant/billing/gateways/inspire.rb +221 -0
  59. data/lib/active_merchant/billing/gateways/instapay.rb +163 -0
  60. data/lib/active_merchant/billing/gateways/iridium.rb +262 -0
  61. data/lib/active_merchant/billing/gateways/itransact.rb +448 -0
  62. data/lib/active_merchant/billing/gateways/jetpay.rb +275 -0
  63. data/lib/active_merchant/billing/gateways/linkpoint.rb +447 -0
  64. data/lib/active_merchant/billing/gateways/litle.rb +554 -0
  65. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +176 -0
  66. data/lib/active_merchant/billing/gateways/merchant_one.rb +115 -0
  67. data/lib/active_merchant/billing/gateways/merchant_ware.rb +322 -0
  68. data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +275 -0
  69. data/lib/active_merchant/billing/gateways/merchant_warrior.rb +191 -0
  70. data/lib/active_merchant/billing/gateways/mercury.rb +311 -0
  71. data/lib/active_merchant/billing/gateways/metrics_global.rb +322 -0
  72. data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +100 -0
  73. data/lib/active_merchant/billing/gateways/migs.rb +265 -0
  74. data/lib/active_merchant/billing/gateways/modern_payments.rb +37 -0
  75. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +219 -0
  76. data/lib/active_merchant/billing/gateways/moneris.rb +244 -0
  77. data/lib/active_merchant/billing/gateways/moneris_us.rb +208 -0
  78. data/lib/active_merchant/billing/gateways/nab_transact.rb +277 -0
  79. data/lib/active_merchant/billing/gateways/net_registry.rb +193 -0
  80. data/lib/active_merchant/billing/gateways/netaxept.rb +181 -0
  81. data/lib/active_merchant/billing/gateways/netbilling.rb +197 -0
  82. data/lib/active_merchant/billing/gateways/netpay.rb +223 -0
  83. data/lib/active_merchant/billing/gateways/nmi.rb +20 -0
  84. data/lib/active_merchant/billing/gateways/ogone.rb +421 -0
  85. data/lib/active_merchant/billing/gateways/optimal_payment.rb +297 -0
  86. data/lib/active_merchant/billing/gateways/orbital/avs_result.rb +93 -0
  87. data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +46 -0
  88. data/lib/active_merchant/billing/gateways/orbital.rb +633 -0
  89. data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +261 -0
  90. data/lib/active_merchant/billing/gateways/pay_junction.rb +396 -0
  91. data/lib/active_merchant/billing/gateways/pay_secure.rb +119 -0
  92. data/lib/active_merchant/billing/gateways/paybox_direct.rb +196 -0
  93. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +209 -0
  94. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
  95. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  96. data/lib/active_merchant/billing/gateways/payflow.rb +268 -0
  97. data/lib/active_merchant/billing/gateways/payflow_express.rb +224 -0
  98. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
  99. data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
  100. data/lib/active_merchant/billing/gateways/payment_express.rb +353 -0
  101. data/lib/active_merchant/billing/gateways/paymill.rb +179 -0
  102. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +670 -0
  103. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +61 -0
  104. data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +248 -0
  105. data/lib/active_merchant/billing/gateways/paypal.rb +106 -0
  106. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  107. data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +43 -0
  108. data/lib/active_merchant/billing/gateways/paypal_express.rb +239 -0
  109. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +30 -0
  110. data/lib/active_merchant/billing/gateways/paystation.rb +199 -0
  111. data/lib/active_merchant/billing/gateways/payway.rb +207 -0
  112. data/lib/active_merchant/billing/gateways/pin.rb +165 -0
  113. data/lib/active_merchant/billing/gateways/plugnpay.rb +294 -0
  114. data/lib/active_merchant/billing/gateways/psigate.rb +227 -0
  115. data/lib/active_merchant/billing/gateways/psl_card.rb +303 -0
  116. data/lib/active_merchant/billing/gateways/qbms.rb +292 -0
  117. data/lib/active_merchant/billing/gateways/quantum.rb +276 -0
  118. data/lib/active_merchant/billing/gateways/quickpay.rb +335 -0
  119. data/lib/active_merchant/billing/gateways/realex.rb +303 -0
  120. data/lib/active_merchant/billing/gateways/redsys.rb +394 -0
  121. data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +93 -0
  122. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +114 -0
  123. data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +102 -0
  124. data/lib/active_merchant/billing/gateways/sage.rb +152 -0
  125. data/lib/active_merchant/billing/gateways/sage_pay.rb +324 -0
  126. data/lib/active_merchant/billing/gateways/sallie_mae.rb +143 -0
  127. data/lib/active_merchant/billing/gateways/samurai.rb +118 -0
  128. data/lib/active_merchant/billing/gateways/secure_net.rb +261 -0
  129. data/lib/active_merchant/billing/gateways/secure_pay.rb +28 -0
  130. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +279 -0
  131. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +112 -0
  132. data/lib/active_merchant/billing/gateways/skip_jack.rb +453 -0
  133. data/lib/active_merchant/billing/gateways/smart_ps.rb +272 -0
  134. data/lib/active_merchant/billing/gateways/spreedly_core.rb +233 -0
  135. data/lib/active_merchant/billing/gateways/stripe.rb +316 -0
  136. data/lib/active_merchant/billing/gateways/trans_first.rb +126 -0
  137. data/lib/active_merchant/billing/gateways/transax.rb +23 -0
  138. data/lib/active_merchant/billing/gateways/transnational.rb +239 -0
  139. data/lib/active_merchant/billing/gateways/trust_commerce.rb +421 -0
  140. data/lib/active_merchant/billing/gateways/usa_epay.rb +25 -0
  141. data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +1501 -0
  142. data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +201 -0
  143. data/lib/active_merchant/billing/gateways/verifi.rb +232 -0
  144. data/lib/active_merchant/billing/gateways/viaklix.rb +189 -0
  145. data/lib/active_merchant/billing/gateways/vindicia.rb +361 -0
  146. data/lib/active_merchant/billing/gateways/webpay.rb +57 -0
  147. data/lib/active_merchant/billing/gateways/wirecard.rb +313 -0
  148. data/lib/active_merchant/billing/gateways/worldpay.rb +303 -0
  149. data/lib/active_merchant/billing/gateways.rb +17 -0
  150. data/lib/active_merchant/billing/integrations/a1agregator/helper.rb +31 -0
  151. data/lib/active_merchant/billing/integrations/a1agregator/notification.rb +186 -0
  152. data/lib/active_merchant/billing/integrations/a1agregator/status.rb +38 -0
  153. data/lib/active_merchant/billing/integrations/a1agregator.rb +26 -0
  154. data/lib/active_merchant/billing/integrations/action_view_helper.rb +73 -0
  155. data/lib/active_merchant/billing/integrations/authorize_net_sim/helper.rb +229 -0
  156. data/lib/active_merchant/billing/integrations/authorize_net_sim/notification.rb +340 -0
  157. data/lib/active_merchant/billing/integrations/authorize_net_sim.rb +38 -0
  158. data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
  159. data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
  160. data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
  161. data/lib/active_merchant/billing/integrations/bogus.rb +23 -0
  162. data/lib/active_merchant/billing/integrations/chronopay/helper.rb +120 -0
  163. data/lib/active_merchant/billing/integrations/chronopay/notification.rb +158 -0
  164. data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
  165. data/lib/active_merchant/billing/integrations/chronopay.rb +23 -0
  166. data/lib/active_merchant/billing/integrations/direc_pay/helper.rb +200 -0
  167. data/lib/active_merchant/billing/integrations/direc_pay/notification.rb +76 -0
  168. data/lib/active_merchant/billing/integrations/direc_pay/return.rb +32 -0
  169. data/lib/active_merchant/billing/integrations/direc_pay/status.rb +37 -0
  170. data/lib/active_merchant/billing/integrations/direc_pay.rb +41 -0
  171. data/lib/active_merchant/billing/integrations/directebanking/helper.rb +90 -0
  172. data/lib/active_merchant/billing/integrations/directebanking/notification.rb +120 -0
  173. data/lib/active_merchant/billing/integrations/directebanking/return.rb +11 -0
  174. data/lib/active_merchant/billing/integrations/directebanking.rb +47 -0
  175. data/lib/active_merchant/billing/integrations/dotpay/helper.rb +77 -0
  176. data/lib/active_merchant/billing/integrations/dotpay/notification.rb +86 -0
  177. data/lib/active_merchant/billing/integrations/dotpay/return.rb +11 -0
  178. data/lib/active_merchant/billing/integrations/dotpay.rb +22 -0
  179. data/lib/active_merchant/billing/integrations/dwolla/common.rb +23 -0
  180. data/lib/active_merchant/billing/integrations/dwolla/helper.rb +43 -0
  181. data/lib/active_merchant/billing/integrations/dwolla/notification.rb +64 -0
  182. data/lib/active_merchant/billing/integrations/dwolla/return.rb +49 -0
  183. data/lib/active_merchant/billing/integrations/dwolla.rb +23 -0
  184. data/lib/active_merchant/billing/integrations/e_payment_plans/helper.rb +34 -0
  185. data/lib/active_merchant/billing/integrations/e_payment_plans/notification.rb +84 -0
  186. data/lib/active_merchant/billing/integrations/e_payment_plans.rb +48 -0
  187. data/lib/active_merchant/billing/integrations/easy_pay/common.rb +40 -0
  188. data/lib/active_merchant/billing/integrations/easy_pay/helper.rb +36 -0
  189. data/lib/active_merchant/billing/integrations/easy_pay/notification.rb +59 -0
  190. data/lib/active_merchant/billing/integrations/easy_pay.rb +30 -0
  191. data/lib/active_merchant/billing/integrations/epay/helper.rb +55 -0
  192. data/lib/active_merchant/billing/integrations/epay/notification.rb +110 -0
  193. data/lib/active_merchant/billing/integrations/epay.rb +21 -0
  194. data/lib/active_merchant/billing/integrations/first_data/helper.rb +61 -0
  195. data/lib/active_merchant/billing/integrations/first_data/notification.rb +56 -0
  196. data/lib/active_merchant/billing/integrations/first_data.rb +38 -0
  197. data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
  198. data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
  199. data/lib/active_merchant/billing/integrations/gestpay/notification.rb +85 -0
  200. data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
  201. data/lib/active_merchant/billing/integrations/gestpay.rb +25 -0
  202. data/lib/active_merchant/billing/integrations/helper.rb +117 -0
  203. data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
  204. data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
  205. data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
  206. data/lib/active_merchant/billing/integrations/hi_trust.rb +27 -0
  207. data/lib/active_merchant/billing/integrations/ipay88/helper.rb +114 -0
  208. data/lib/active_merchant/billing/integrations/ipay88/return.rb +95 -0
  209. data/lib/active_merchant/billing/integrations/ipay88.rb +19 -0
  210. data/lib/active_merchant/billing/integrations/liqpay/helper.rb +43 -0
  211. data/lib/active_merchant/billing/integrations/liqpay/notification.rb +89 -0
  212. data/lib/active_merchant/billing/integrations/liqpay/return.rb +83 -0
  213. data/lib/active_merchant/billing/integrations/liqpay.rb +30 -0
  214. data/lib/active_merchant/billing/integrations/maksuturva/helper.rb +119 -0
  215. data/lib/active_merchant/billing/integrations/maksuturva/notification.rb +48 -0
  216. data/lib/active_merchant/billing/integrations/maksuturva.rb +86 -0
  217. data/lib/active_merchant/billing/integrations/moneybookers/helper.rb +75 -0
  218. data/lib/active_merchant/billing/integrations/moneybookers/notification.rb +129 -0
  219. data/lib/active_merchant/billing/integrations/moneybookers.rb +26 -0
  220. data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
  221. data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
  222. data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
  223. data/lib/active_merchant/billing/integrations/nochex.rb +88 -0
  224. data/lib/active_merchant/billing/integrations/notification.rb +71 -0
  225. data/lib/active_merchant/billing/integrations/paxum/common.rb +24 -0
  226. data/lib/active_merchant/billing/integrations/paxum/helper.rb +42 -0
  227. data/lib/active_merchant/billing/integrations/paxum/notification.rb +33 -0
  228. data/lib/active_merchant/billing/integrations/paxum.rb +44 -0
  229. data/lib/active_merchant/billing/integrations/pay_fast/common.rb +42 -0
  230. data/lib/active_merchant/billing/integrations/pay_fast/helper.rb +50 -0
  231. data/lib/active_merchant/billing/integrations/pay_fast/notification.rb +134 -0
  232. data/lib/active_merchant/billing/integrations/pay_fast/return.rb +10 -0
  233. data/lib/active_merchant/billing/integrations/pay_fast.rb +70 -0
  234. data/lib/active_merchant/billing/integrations/payflow_link/helper.rb +116 -0
  235. data/lib/active_merchant/billing/integrations/payflow_link/notification.rb +78 -0
  236. data/lib/active_merchant/billing/integrations/payflow_link.rb +21 -0
  237. data/lib/active_merchant/billing/integrations/paypal/helper.rb +119 -0
  238. data/lib/active_merchant/billing/integrations/paypal/notification.rb +227 -0
  239. data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
  240. data/lib/active_merchant/billing/integrations/paypal.rb +39 -0
  241. data/lib/active_merchant/billing/integrations/paypal_payments_advanced/helper.rb +15 -0
  242. data/lib/active_merchant/billing/integrations/paypal_payments_advanced.rb +20 -0
  243. data/lib/active_merchant/billing/integrations/paysbuy/helper.rb +15 -0
  244. data/lib/active_merchant/billing/integrations/paysbuy/notification.rb +28 -0
  245. data/lib/active_merchant/billing/integrations/paysbuy.rb +36 -0
  246. data/lib/active_merchant/billing/integrations/payu_in/helper.rb +74 -0
  247. data/lib/active_merchant/billing/integrations/payu_in/notification.rb +165 -0
  248. data/lib/active_merchant/billing/integrations/payu_in/return.rb +36 -0
  249. data/lib/active_merchant/billing/integrations/payu_in.rb +43 -0
  250. data/lib/active_merchant/billing/integrations/platron/helper.rb +32 -0
  251. data/lib/active_merchant/billing/integrations/platron/notification.rb +113 -0
  252. data/lib/active_merchant/billing/integrations/platron.rb +28 -0
  253. data/lib/active_merchant/billing/integrations/pxpay/helper.rb +112 -0
  254. data/lib/active_merchant/billing/integrations/pxpay/notification.rb +157 -0
  255. data/lib/active_merchant/billing/integrations/pxpay/return.rb +25 -0
  256. data/lib/active_merchant/billing/integrations/pxpay.rb +31 -0
  257. data/lib/active_merchant/billing/integrations/quickpay/helper.rb +74 -0
  258. data/lib/active_merchant/billing/integrations/quickpay/notification.rb +137 -0
  259. data/lib/active_merchant/billing/integrations/quickpay.rb +21 -0
  260. data/lib/active_merchant/billing/integrations/rbkmoney/helper.rb +23 -0
  261. data/lib/active_merchant/billing/integrations/rbkmoney/notification.rb +91 -0
  262. data/lib/active_merchant/billing/integrations/rbkmoney.rb +17 -0
  263. data/lib/active_merchant/billing/integrations/return.rb +42 -0
  264. data/lib/active_merchant/billing/integrations/robokassa/common.rb +19 -0
  265. data/lib/active_merchant/billing/integrations/robokassa/helper.rb +50 -0
  266. data/lib/active_merchant/billing/integrations/robokassa/notification.rb +55 -0
  267. data/lib/active_merchant/billing/integrations/robokassa/return.rb +17 -0
  268. data/lib/active_merchant/billing/integrations/robokassa.rb +49 -0
  269. data/lib/active_merchant/billing/integrations/sage_pay_form/encryption.rb +33 -0
  270. data/lib/active_merchant/billing/integrations/sage_pay_form/helper.rb +136 -0
  271. data/lib/active_merchant/billing/integrations/sage_pay_form/notification.rb +210 -0
  272. data/lib/active_merchant/billing/integrations/sage_pay_form/return.rb +31 -0
  273. data/lib/active_merchant/billing/integrations/sage_pay_form.rb +37 -0
  274. data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +91 -0
  275. data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +139 -0
  276. data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
  277. data/lib/active_merchant/billing/integrations/two_checkout.rb +44 -0
  278. data/lib/active_merchant/billing/integrations/valitor/helper.rb +86 -0
  279. data/lib/active_merchant/billing/integrations/valitor/notification.rb +13 -0
  280. data/lib/active_merchant/billing/integrations/valitor/response_fields.rb +97 -0
  281. data/lib/active_merchant/billing/integrations/valitor/return.rb +13 -0
  282. data/lib/active_merchant/billing/integrations/valitor.rb +33 -0
  283. data/lib/active_merchant/billing/integrations/verkkomaksut/helper.rb +88 -0
  284. data/lib/active_merchant/billing/integrations/verkkomaksut/notification.rb +59 -0
  285. data/lib/active_merchant/billing/integrations/verkkomaksut.rb +20 -0
  286. data/lib/active_merchant/billing/integrations/web_pay/common.rb +50 -0
  287. data/lib/active_merchant/billing/integrations/web_pay/helper.rb +68 -0
  288. data/lib/active_merchant/billing/integrations/web_pay/notification.rb +51 -0
  289. data/lib/active_merchant/billing/integrations/web_pay.rb +45 -0
  290. data/lib/active_merchant/billing/integrations/webmoney/common.rb +17 -0
  291. data/lib/active_merchant/billing/integrations/webmoney/helper.rb +40 -0
  292. data/lib/active_merchant/billing/integrations/webmoney/notification.rb +47 -0
  293. data/lib/active_merchant/billing/integrations/webmoney.rb +43 -0
  294. data/lib/active_merchant/billing/integrations/world_pay/helper.rb +101 -0
  295. data/lib/active_merchant/billing/integrations/world_pay/notification.rb +160 -0
  296. data/lib/active_merchant/billing/integrations/world_pay.rb +34 -0
  297. data/lib/active_merchant/billing/integrations.rb +17 -0
  298. data/lib/active_merchant/billing/response.rb +77 -0
  299. data/lib/active_merchant/billing.rb +9 -0
  300. data/lib/active_merchant/version.rb +3 -0
  301. data/lib/active_merchant.rb +63 -0
  302. data/lib/activemerchant.rb +1 -0
  303. data/lib/support/gateway_support.rb +65 -0
  304. data/lib/support/outbound_hosts.rb +25 -0
  305. data/lib/support/ssl_verify.rb +93 -0
  306. metadata +506 -0
@@ -0,0 +1,210 @@
1
+ require 'net/http'
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ module Integrations #:nodoc:
6
+ module SagePayForm
7
+ class Notification < ActiveMerchant::Billing::Integrations::Notification
8
+ class CryptError < StandardError; end
9
+
10
+ include Encryption
11
+
12
+ def initialize(post_data, options)
13
+ super
14
+ load_crypt_params(params['crypt'], options[:credential2])
15
+ end
16
+
17
+ # Was the transaction complete?
18
+ def complete?
19
+ status_code == 'OK'
20
+ end
21
+
22
+ # Was the transaction cancelled?
23
+ # Unfortunately, we can't distinguish "user abort" from "idle too long".
24
+ def cancelled?
25
+ status_code == 'ABORT'
26
+ end
27
+
28
+ # Text version of #complete?, since we don't support Pending.
29
+ def status
30
+ complete? ? 'Completed' : 'Failed'
31
+ end
32
+
33
+ # Status of transaction. List of possible values:
34
+ # <tt>OK</tt>:: Transaction completed successfully.
35
+ # <tt>NOTAUTHED</tt>:: Incorrect card details / insufficient funds.
36
+ # <tt>MALFORMED</tt>:: Invalid input data.
37
+ # <tt>INVALID</tt>:: Valid input data, but some fields are incorrect.
38
+ # <tt>ABORT</tt>:: User hit cancel button or went idle for 15+ minutes.
39
+ # <tt>REJECTED</tt>:: Rejected by account fraud screening rules.
40
+ # <tt>AUTHENTICATED</tt>:: Authenticated card details secured at SagePay.
41
+ # <tt>REGISTERED</tt>:: Non-authenticated card details secured at SagePay.
42
+ # <tt>ERROR</tt>:: Problem internal to SagePay.
43
+ def status_code
44
+ params['Status']
45
+ end
46
+
47
+ # Check this if #completed? is false.
48
+ def message
49
+ params['StatusDetail']
50
+ end
51
+
52
+ # Vendor-supplied code (:order mapping).
53
+ def item_id
54
+ params['VendorTxCode']
55
+ end
56
+
57
+ # Internal SagePay code, typically "{LONG-UUID}".
58
+ def transaction_id
59
+ params['VPSTxId']
60
+ end
61
+
62
+ # Authorization number (only if #completed?).
63
+ def auth_id
64
+ params['TxAuthNo']
65
+ end
66
+
67
+ # Total amount (no fees).
68
+ def gross
69
+ params['Amount']
70
+ end
71
+
72
+ # AVS and CV2 check results. Possible values:
73
+ # <tt>ALL MATCH</tt>::
74
+ # <tt>SECURITY CODE MATCH ONLY</tt>::
75
+ # <tt>ADDRESS MATCH ONLY</tt>::
76
+ # <tt>NO DATA MATCHES</tt>::
77
+ # <tt>DATA NOT CHECKED</tt>::
78
+ def avs_cv2_result
79
+ params['AVSCV2']
80
+ end
81
+
82
+ # Numeric address check. Possible values:
83
+ # <tt>NOTPROVIDED</tt>::
84
+ # <tt>NOTCHECKED</tt>::
85
+ # <tt>MATCHED</tt>::
86
+ # <tt>NOTMATCHED</tt>::
87
+ def address_result
88
+ params['AddressResult']
89
+ end
90
+
91
+ # Post code check. Possible values:
92
+ # <tt>NOTPROVIDED</tt>::
93
+ # <tt>NOTCHECKED</tt>::
94
+ # <tt>MATCHED</tt>::
95
+ # <tt>NOTMATCHED</tt>::
96
+ def post_code_result
97
+ params['PostCodeResult']
98
+ end
99
+
100
+ # CV2 code check. Possible values:
101
+ # <tt>NOTPROVIDED</tt>::
102
+ # <tt>NOTCHECKED</tt>::
103
+ # <tt>MATCHED</tt>::
104
+ # <tt>NOTMATCHED</tt>::
105
+ def cv2_result
106
+ params['CV2Result']
107
+ end
108
+
109
+ # Was the Gift Aid box checked?
110
+ def gift_aid?
111
+ params['GiftAid'] == '1'
112
+ end
113
+
114
+ # Result of 3D Secure checks. Possible values:
115
+ # <tt>OK</tt>:: Authenticated correctly.
116
+ # <tt>NOTCHECKED</tt>:: Authentication not performed.
117
+ # <tt>NOTAVAILABLE</tt>:: Card not auth-capable, or auth is otherwise impossible.
118
+ # <tt>NOTAUTHED</tt>:: User failed authentication.
119
+ # <tt>INCOMPLETE</tt>:: Authentication unable to complete.
120
+ # <tt>ERROR</tt>:: Unable to attempt authentication due to data / service errors.
121
+ def buyer_auth_result
122
+ params['3DSecureStatus']
123
+ end
124
+
125
+ # Encoded 3D Secure result code.
126
+ def buyer_auth_result_code
127
+ params['CAVV']
128
+ end
129
+
130
+ # Address confirmation status. PayPal only. Possible values:
131
+ # <tt>NONE</tt>::
132
+ # <tt>CONFIRMED</tt>::
133
+ # <tt>UNCONFIRMED</tt>::
134
+ def address_status
135
+ params['AddressStatus']
136
+ end
137
+
138
+ # Payer verification. Undocumented.
139
+ def payer_verified?
140
+ params['PayerStatus'] == 'VERIFIED'
141
+ end
142
+
143
+ # Credit card type. Possible values:
144
+ # <tt>VISA</tt>:: Visa
145
+ # <tt>MC</tt>:: MasterCard
146
+ # <tt>DELTA</tt>:: Delta
147
+ # <tt>SOLO</tt>:: Solo
148
+ # <tt>MAESTRO</tt>:: Maestro (UK and International)
149
+ # <tt>UKE</tt>:: Visa Electron
150
+ # <tt>AMEX</tt>:: American Express
151
+ # <tt>DC</tt>:: Diners Club
152
+ # <tt>JCB</tt>:: JCB
153
+ # <tt>LASER</tt>:: Laser
154
+ # <tt>PAYPAL</tt>:: PayPal
155
+ def credit_card_type
156
+ params['CardType']
157
+ end
158
+
159
+ # Last four digits of credit card.
160
+ def credit_card_last_4_digits
161
+ params['Last4Digits']
162
+ end
163
+
164
+ # Used by composition methods, but not supplied by SagePay.
165
+ def currency
166
+ nil
167
+ end
168
+
169
+ def test?
170
+ false
171
+ end
172
+
173
+ def acknowledge
174
+ true
175
+ end
176
+
177
+ private
178
+
179
+ def load_crypt_params(crypt, key)
180
+ raise MissingCryptData if crypt.blank?
181
+ raise MissingCryptKey if key.blank?
182
+
183
+ crypt_data = sage_decrypt(crypt.gsub(' ', '+'), key)
184
+ raise InvalidCryptData unless crypt_data =~ /(^|&)Status=/
185
+
186
+ params.clear
187
+ parse(crypt_data)
188
+ end
189
+
190
+ class MissingCryptKey < CryptError
191
+ def message
192
+ 'No merchant decryption key supplied'
193
+ end
194
+ end
195
+ class MissingCryptData < CryptError
196
+ def message
197
+ 'No data received from SagePay'
198
+ end
199
+ end
200
+ class InvalidCryptData < CryptError
201
+ def message
202
+ 'Invalid data received from SagePay'
203
+ end
204
+ end
205
+
206
+ end
207
+ end
208
+ end
209
+ end
210
+ end
@@ -0,0 +1,31 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ module Integrations #:nodoc:
4
+ module SagePayForm
5
+ class Return < ActiveMerchant::Billing::Integrations::Return
6
+
7
+ def initialize(query_string, options)
8
+ begin
9
+ @notification = Notification.new(query_string, options)
10
+ rescue Notification::CryptError => e
11
+ @message = e.message
12
+ end
13
+ end
14
+
15
+ def success?
16
+ @notification && @notification.complete?
17
+ end
18
+
19
+ def cancelled?
20
+ @notification && @notification.cancelled?
21
+ end
22
+
23
+ def message
24
+ @message || @notification.message
25
+ end
26
+
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,37 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ module Integrations #:nodoc:
4
+ module SagePayForm
5
+ autoload :Helper, File.dirname(__FILE__) + '/sage_pay_form/helper.rb'
6
+ autoload :Return, File.dirname(__FILE__) + '/sage_pay_form/return.rb'
7
+ autoload :Notification, File.dirname(__FILE__) + '/sage_pay_form/notification.rb'
8
+ autoload :Encryption, File.dirname(__FILE__) + '/sage_pay_form/encryption.rb'
9
+
10
+ mattr_accessor :production_url
11
+ mattr_accessor :test_url
12
+ mattr_accessor :simulate_url
13
+ self.production_url = 'https://live.sagepay.com/gateway/service/vspform-register.vsp'
14
+ self.test_url = 'https://test.sagepay.com/gateway/service/vspform-register.vsp'
15
+ self.simulate_url = 'https://test.sagepay.com/Simulator/VSPFormGateway.asp'
16
+
17
+ def self.return(query_string, options = {})
18
+ Return.new(query_string, options)
19
+ end
20
+
21
+ def self.service_url
22
+ mode = ActiveMerchant::Billing::Base.integration_mode
23
+ case mode
24
+ when :production
25
+ self.production_url
26
+ when :test
27
+ self.test_url
28
+ when :simulate
29
+ self.simulate_url
30
+ else
31
+ raise StandardError, "Integration mode set to an invalid value: #{mode}"
32
+ end
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,91 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ module Integrations #:nodoc:
4
+ module TwoCheckout
5
+ class Helper < ActiveMerchant::Billing::Integrations::Helper
6
+ def initialize(order, account, options = {})
7
+ super
8
+ add_field('fixed', 'Y')
9
+
10
+ if ActiveMerchant::Billing::Base.integration_mode == :test || options[:test]
11
+ add_field('demo', 'Y')
12
+ end
13
+ end
14
+
15
+ # The 2checkout vendor account number
16
+ mapping :account, 'sid'
17
+
18
+ # The total amount to be billed, in decimal form, without a currency symbol. (8 characters, decimal, 2 characters: Example: 99999999.99)
19
+ mapping :amount, 'total'
20
+
21
+ # Pass your order id if you are using Third Part Cart Parameters. (128 characters max)
22
+ mapping :order, 'cart_order_id'
23
+
24
+ # Pass your order id if you are using the Pass Through Products Parameters. (50 characters max)
25
+ mapping :invoice, 'merchant_order_id'
26
+
27
+ # Left here for backward compatibility, do not use. The line_item method will add automatically.
28
+ mapping :mode, 'mode'
29
+
30
+ mapping :customer, :email => 'email',
31
+ :phone => 'phone'
32
+
33
+ mapping :billing_address, :city => 'city',
34
+ :address1 => 'street_address',
35
+ :address2 => 'street_address2',
36
+ :state => 'state',
37
+ :zip => 'zip',
38
+ :country => 'country'
39
+
40
+ mapping :shipping_address, :city => 'ship_city',
41
+ :address1 => 'ship_street_address',
42
+ :state => 'ship_state',
43
+ :zip => 'ship_zip',
44
+ :country => 'ship_country'
45
+
46
+ # Does nothing, since we've disabled the Continue Shopping button by using the fixed = Y field
47
+ mapping :return_url, 'return_url'
48
+
49
+ # Approved URL path
50
+ mapping :notification_url, 'x_receipt_link_url'
51
+
52
+ def customer(params = {})
53
+ add_field(mappings[:customer][:email], params[:email])
54
+ add_field(mappings[:customer][:phone], params[:phone])
55
+ add_field('card_holder_name', "#{params[:first_name]} #{params[:last_name]}")
56
+ end
57
+
58
+ # Uses Pass Through Product Parameters to pass in lineitems.
59
+ # (must mark tanigble sales as shipped to settle the transaction)
60
+ def line_item(params = {})
61
+ add_field('mode', '2CO')
62
+ (max_existing_line_item_id = form_fields.keys.map do |key|
63
+ i = key.to_s[/^li_(\d+)_/, 1]
64
+ (i && i.to_i)
65
+ end.compact.max || 0)
66
+
67
+ line_item_id = max_existing_line_item_id + 1
68
+ params.each do |key, value|
69
+ add_field("li_#{line_item_id}_#{key}", value)
70
+ end
71
+ end
72
+
73
+ # Uses Third Party Cart parameter set to pass in lineitem details.
74
+ # (sales settle automatically)
75
+ def auto_settle(params = {})
76
+ add_field('id_type', '1')
77
+ (max_existing_line_item_id = form_fields.keys.map do |key|
78
+ i = key.to_s[/^c_prod_(\d+)/, 1]
79
+ (i && i.to_i)
80
+ end.compact.max || 0)
81
+
82
+ line_item_id = max_existing_line_item_id + 1
83
+ params.each do |key, value|
84
+ add_field("c_#{key}_#{line_item_id}", value)
85
+ end
86
+ end
87
+ end
88
+ end
89
+ end
90
+ end
91
+ end
@@ -0,0 +1,139 @@
1
+ require 'net/http'
2
+ require 'base64'
3
+ require 'digest/md5'
4
+
5
+ module ActiveMerchant #:nodoc:
6
+ module Billing #:nodoc:
7
+ module Integrations #:nodoc:
8
+ module TwoCheckout
9
+ class Notification < ActiveMerchant::Billing::Integrations::Notification
10
+ # card_holder_name - Provides the customer’s name.
11
+ # city - Provides the customer’s city.
12
+ # country - Provides the customer’s country.
13
+ # credit_card_processed - This parameter will always be passed back as Y.
14
+ # demo - Defines if an order was live, or if the order was a demo order. If the order was a demo, the MD5 hash will fail.
15
+ # email - Provides the email address the customer provided when placing the order.
16
+ # fixed - This parameter will only be passed back if it was passed into the purchase routine.
17
+ # ip_country - Provides the customer’s IP location.
18
+ # key - An MD5 hash used to confirm the validity of a sale.
19
+ # lang - Customer language
20
+ # merchant_order_id - The order ID you had assigned to the order.
21
+ # order_number - The 2Checkout order number associated with the order.
22
+ # invoice_id - The 2Checkout invoice number.
23
+ # pay_method - Provides seller with the customer’s payment method. CC for Credit Card, PPI for PayPal.
24
+ # phone - Provides the phone number the customer provided when placing the order.
25
+ # ship_name - Provides the ship to name for the order.
26
+ # ship_street_address - Provides ship to address.
27
+ # ship_street_address2 - Provides more detailed shipping address if this information was provided by the customer.
28
+ # ship_city - Provides ship to city.
29
+ # ship_state - Provides ship to state.
30
+ # ship_zip - Ship Zip
31
+
32
+ # Pass Through Products Only
33
+ # li_#_name - Name of the corresponding lineitem.
34
+ # li_#_quantity - Quantity of the corresponding lineitem.
35
+ # li_#_price - Price of the corresponding lineitem.
36
+ # li_#_tangible - Specifies if the corresponding li_#_type is a tangible or intangible. ‘Y’ OR ‘N’
37
+ # li_#_product_id - ID of the corresponding lineitem.
38
+ # li_#_product_description - Description of the corresponding lineitem.
39
+ # li_#_recurrence - # WEEK | MONTH | YEAR – always singular.
40
+ # li_#_duration - Forever or # WEEK | MONTH | YEAR – always singular, defaults to Forever.
41
+ # li_#_startup_fee - Amount in account pricing currency.
42
+ # li_#_option_#_name - Name of option. 64 characters max – cannot include '<' or '>'.
43
+ # li_#_option_#_value - Name of option. 64 characters max – cannot include '<' or '>'.
44
+ # li_#_option_#_surcharge - Amount in account pricing currency.
45
+
46
+ #Third Party Cart Only
47
+ # cart_order_id - The order ID you had assigned to the order.
48
+
49
+ # Allow seller to define default currency (should match 2Checkout account pricing currency)
50
+ def currency
51
+ 'USD'
52
+ end
53
+
54
+ def complete?
55
+ status == 'Completed'
56
+ end
57
+
58
+ # Third Party Cart parameters will return 'card_order_id'
59
+ # Pass Through Product parameters will only return 'merchant_order_id'
60
+ def item_id
61
+ if (params['cart_order_id'].nil?)
62
+ params['merchant_order_id']
63
+ else
64
+ params['cart_order_id']
65
+ end
66
+ end
67
+
68
+ # 2Checkout Sale ID
69
+ def transaction_id
70
+ params['order_number']
71
+ end
72
+
73
+ def received_at
74
+ params['']
75
+ end
76
+
77
+ #Customer Email
78
+ def payer_email
79
+ params['email']
80
+ end
81
+
82
+ def receiver_email
83
+ params['']
84
+ end
85
+
86
+ # The MD5 Hash
87
+ def security_key
88
+ params['key']
89
+ end
90
+
91
+ # The money amount we received in X.2 decimal.
92
+ def gross
93
+ params['total']
94
+ end
95
+
96
+ # Was this a test transaction? # Use the hash
97
+ # Please note 2Checkout forces the order number computed in the hash to '1' on demo sales.
98
+ def test?
99
+ params['demo'] == 'Y'
100
+ end
101
+
102
+ # 2Checkout only returns 'Y' for this parameter. If the sale is not authorized, no passback occurs.
103
+ def status
104
+ case params['credit_card_processed']
105
+ when 'Y'
106
+ 'Completed'
107
+ else
108
+ 'Failed'
109
+ end
110
+ end
111
+
112
+ # Secret Word defined in 2Checkout account
113
+ def secret
114
+ @options[:credential2]
115
+ end
116
+
117
+ # Checks against MD5 Hash
118
+ def acknowledge
119
+ return false if security_key.blank?
120
+
121
+ Digest::MD5.hexdigest("#{secret}#{params['sid']}#{transaction_id}#{gross}").upcase == security_key.upcase
122
+ end
123
+
124
+ private
125
+
126
+ # Parses Header Redirect Query String
127
+ def parse(post)
128
+ @raw = post.to_s
129
+ for line in @raw.split('&')
130
+ key, value = *line.scan( %r{^(\w+)\=(.*)$} ).flatten
131
+ params[key] = CGI.unescape(value || '')
132
+ end
133
+ end
134
+
135
+ end
136
+ end
137
+ end
138
+ end
139
+ end
@@ -0,0 +1,17 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ module Integrations #:nodoc:
4
+ module TwoCheckout
5
+ class Return < ActiveMerchant::Billing::Integrations::Return
6
+ def success?
7
+ params['credit_card_processed'] == 'Y'
8
+ end
9
+
10
+ def message
11
+
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,44 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ module Integrations #:nodoc:
4
+ module TwoCheckout
5
+ autoload 'Helper', File.dirname(__FILE__) + '/two_checkout/helper'
6
+ autoload 'Return', File.dirname(__FILE__) + '/two_checkout/return'
7
+ autoload 'Notification', File.dirname(__FILE__) + '/two_checkout/notification'
8
+
9
+ mattr_accessor :payment_routine
10
+ self.payment_routine = :single_page
11
+
12
+ def self.service_url
13
+ case self.payment_routine
14
+ when :multi_page
15
+ 'https://www.2checkout.com/checkout/purchase'
16
+ when :single_page
17
+ 'https://www.2checkout.com/checkout/spurchase'
18
+ else
19
+ raise StandardError, "Integration payment routine set to an invalid value: #{self.payment_routine}"
20
+ end
21
+ end
22
+
23
+ def self.service_url=(service_url)
24
+ # Note: do not use this method, it is here for backward compatibility
25
+ # Use the payment_routine method to change service_url
26
+ if service_url =~ /spurchase/
27
+ self.payment_routine = :single_page
28
+ else
29
+ self.payment_routine = :multi_page
30
+ end
31
+ end
32
+
33
+
34
+ def self.notification(post, options = {})
35
+ Notification.new(post)
36
+ end
37
+
38
+ def self.return(query_string, options = {})
39
+ Return.new(query_string)
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,86 @@
1
+ require 'digest/md5'
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ module Integrations #:nodoc:
6
+ module Valitor
7
+ class Helper < ActiveMerchant::Billing::Integrations::Helper
8
+ include RequiresParameters
9
+
10
+ DEFAULT_SUCCESS_TEXT = "The transaction has been completed."
11
+
12
+ def initialize(order, account, options={})
13
+ options[:currency] ||= 'ISK'
14
+ super
15
+ add_field 'Adeinsheimild', '0'
16
+ add_field 'KaupandaUpplysingar', '0'
17
+ add_field 'SlokkvaHaus', '0'
18
+ @security_number = options[:credential2]
19
+ @amount = options[:amount]
20
+ @order = order
21
+ end
22
+
23
+ mapping :account, 'VefverslunID'
24
+ mapping :currency, 'Gjaldmidill'
25
+
26
+ mapping :order, 'Tilvisunarnumer'
27
+
28
+ mapping :notify_url, 'SlodTokstAdGjaldfaeraServerSide'
29
+ mapping :return_url, 'SlodTokstAdGjaldfaera'
30
+ mapping :cancel_return_url, 'SlodNotandiHaettirVid'
31
+
32
+ mapping :success_text, 'SlodTokstAdGjaldfaeraTexti'
33
+
34
+ mapping :language, 'Lang'
35
+
36
+ def authorize_only
37
+ add_field 'Adeinsheimild', '1'
38
+ end
39
+
40
+ def collect_customer_info
41
+ add_field 'KaupandaUpplysingar', '1'
42
+ end
43
+
44
+ def hide_header
45
+ add_field 'SlokkvaHaus', '1'
46
+ end
47
+
48
+ def product(id, options={})
49
+ raise ArgumentError, "Product id #{id} is not an integer between 1 and 500" unless id.to_i > 0 && id.to_i <= 500
50
+ requires!(options, :amount, :description)
51
+ options.assert_valid_keys([:description, :quantity, :amount, :discount])
52
+
53
+ add_field("Vara_#{id}_Verd", format_amount(options[:amount]))
54
+ add_field("Vara_#{id}_Fjoldi", options[:quantity] || "1")
55
+
56
+ add_field("Vara_#{id}_Lysing", options[:description]) if options[:description]
57
+ add_field("Vara_#{id}_Afslattur", options[:discount] || '0')
58
+
59
+ @products ||= []
60
+ @products << id.to_i
61
+ end
62
+
63
+ def signature
64
+ raise ArgumentError, "Security number not set" unless @security_number
65
+ parts = [@security_number, @fields['Adeinsheimild']]
66
+ @products.sort.uniq.each do |id|
67
+ parts.concat(["Vara_#{id}_Fjoldi", "Vara_#{id}_Verd", "Vara_#{id}_Afslattur"].collect{|e| @fields[e]})
68
+ end if @products
69
+ parts.concat(%w(VefverslunID Tilvisunarnumer SlodTokstAdGjaldfaera SlodTokstAdGjaldfaeraServerSide Gjaldmidill).collect{|e| @fields[e]})
70
+ Digest::MD5.hexdigest(parts.compact.join(''))
71
+ end
72
+
73
+ def form_fields
74
+ product(1, :amount => @amount, :description => @order) if Array(@products).empty?
75
+ @fields[mappings[:success_text]] ||= DEFAULT_SUCCESS_TEXT
76
+ @fields.merge('RafraenUndirskrift' => signature)
77
+ end
78
+
79
+ def format_amount(amount)
80
+ amount.to_f.round
81
+ end
82
+ end
83
+ end
84
+ end
85
+ end
86
+ end
@@ -0,0 +1,13 @@
1
+ require 'active_merchant/billing/integrations/valitor/response_fields'
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ module Integrations #:nodoc:
6
+ module Valitor
7
+ class Notification < ActiveMerchant::Billing::Integrations::Notification
8
+ include ResponseFields
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end