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
data/CONTRIBUTORS ADDED
@@ -0,0 +1,414 @@
1
+ Protx Gateway
2
+
3
+ * Contributed by shiftx (Vincent)
4
+
5
+ Verifi Gateway
6
+
7
+ * Contributed by Paul Hepworth on 2007-05-12.
8
+ * Portions of Verifi Gateway Copyright (c) 2007 Paul Hepworth
9
+
10
+ Plug 'N Pay Gateway
11
+
12
+ * Contributed by Ryan Norbauer
13
+
14
+ PayJunction Gateway
15
+
16
+ * Contributed by Matt Sanders
17
+
18
+ E-xact Gateway
19
+
20
+ * Contributed by James Edward Gray II
21
+
22
+ Linkpoint Gateway
23
+
24
+ * Portions of the LinkPoint Gateway by Ryan Heneise
25
+
26
+ eWay Gateway
27
+
28
+ * Originally contributed by Lucas Carlson (mailto:lucas@rufy.com)
29
+ * Managed Payments support by Jason Stirk with improvements by Keith Pitt
30
+
31
+ CardStream Gateway
32
+
33
+ * Portions of the Cardstream gateway by Jonah Fox and Thomas Nichols
34
+
35
+ CyberSource Gateway
36
+
37
+ * Contributed by Matt Margolis (matt@mattmargolis.net)
38
+
39
+ NetRegistry Gateway
40
+
41
+ * Originally contributed by George Ogata (mailto: george.ogata@gmail.com)
42
+
43
+ DataCash Gateway (March 2, 2007)
44
+
45
+ * MoneySpyder, http://moneyspyder.co.uk and E-consultancy, http://www.e-consultancy.com
46
+
47
+ PSL Card Gateway (March 27, 2007)
48
+
49
+ * MoneySpyder, http://moneyspyder.co.uk
50
+
51
+ Viaklix Gateway (Sep 3, 2007)
52
+
53
+ * Originally contributed by Sal Scotto
54
+
55
+ Braintree Gateway (Sep 4, 2007)
56
+
57
+ * Originally contributed by Michael J. Mangino
58
+ * Portions of the BrainTree gateway by Jeremy Voorhis
59
+
60
+ Concord Efsnet Gateway (Sep 7, 2007)
61
+
62
+ * Originally contributed by snacktime
63
+
64
+ SecurePayTech Gateway (Oct 23, 2007)
65
+
66
+ * Originally contributed by Jasper Bryant-Greene
67
+
68
+ SkipJack Gateway (Nov 29, 2007)
69
+
70
+ * Originally contributed by Bill Bereza - http://atomicobject.com
71
+
72
+ HiTRUST Gateway (Dec 10, 2007)
73
+
74
+ * Jaded Pixel
75
+
76
+ Payflow NV Gateway (Mar 03, 2008)
77
+
78
+ * Greg Furmanek
79
+
80
+ PaypalNVGateway (Apr 12, 2008)
81
+
82
+ * Greg Furmanek
83
+
84
+ Beanstream (May 13, 2008)
85
+
86
+ * Created by xiaobozz ( xiaobozzz at gmail dot com )
87
+ * Secure Profiles support by Forrest Zeisler (http://github.com/forrest)
88
+
89
+ Sage (June, 2008)
90
+
91
+ * Cody
92
+
93
+ Modern Payments (June 13, 2008)
94
+
95
+ * Initial implementation by Jeremy Nicoll
96
+ * Additional portions by Cody Fauser
97
+
98
+ Wirecard Gateway (June 30, 2008)
99
+
100
+ * Initial implementation by Soleone
101
+
102
+ Transax Gateway (May 3, 2009)
103
+
104
+ * Mike Mangino
105
+
106
+ Merchant E-Solutions Gateway (May 3, 2009)
107
+
108
+ * Zac Williams, Robby Russell
109
+
110
+ Instapay Gateway (May 3, 2009)
111
+
112
+ * Thomas Rideout
113
+
114
+ Iridium Gateway (June 13, 2009)
115
+
116
+ * Phil Smy
117
+
118
+ MerchantWARE (July 7, 2009)
119
+
120
+ * Cody Fauser
121
+
122
+ FirstPay (July 24, 2009)
123
+
124
+ * Phil R
125
+
126
+ Ogone (July 20, 2009)
127
+
128
+ * Nicolas Jacobeus
129
+
130
+ Elavon (August 09, 2009)
131
+
132
+ * Jesse Storimer
133
+
134
+ JetPay (September 29, 2009)
135
+
136
+ * Phil Ripperger, Peter Williams
137
+
138
+ SallieMae (October 2, 2009)
139
+
140
+ * iamjwc
141
+
142
+ Netaxept (February 08, 2010)
143
+
144
+ * Nathaniel Talbott
145
+
146
+ Garanti (May 05, 2010)
147
+
148
+ * Selem Delul (moon@mac.home)
149
+
150
+ Braintree Blue Gateway (May 19th, 2010)
151
+
152
+ * Braintree (code@getbraintree.com)
153
+
154
+ Inspire Gateway (September 27, 2010)
155
+
156
+ * ryan r. smith
157
+
158
+ SecureNet Gateway (September 27, 2010)
159
+
160
+ * Kal
161
+
162
+ PayboxDirect Gateway (September 27, 2010)
163
+
164
+ * Donald Piret <donald@donaldpiret.com>
165
+
166
+ SagePay Form Offsite Gateway (October 14, 2010)
167
+
168
+ * Adrian Irving-Beer
169
+
170
+ DirecPay Gateway (October 14, 2010)
171
+
172
+ * Soleone
173
+
174
+ ePay Gateway (November 23, 2010)
175
+
176
+ * Original code by ePay (epay.dk)
177
+ * Refactored by Jonathan Rudenberg
178
+
179
+ iDEAL/Rabobank Gateway (January 10, 2011)
180
+
181
+ * Original code by Soemirno Kartosoewito
182
+ * Refactored by Cody Fauser
183
+ * Refactored and updated by Jonathan Rudenberg
184
+
185
+ Quantum Gateway
186
+
187
+ * Joshua Lippiner
188
+ * Refactored by Nathaniel Talbott
189
+
190
+ BluePay Gateway
191
+
192
+ * Mel Sleight
193
+ * Refactored by Nathaniel Talbott
194
+
195
+ Valitor Integration (January 2011)
196
+
197
+ * Nathaniel Talbott
198
+ * Sponsored by Sævar Öfjörð Magnússon
199
+
200
+ Barclays ePDQ
201
+
202
+ * Original code by Rob W (rfwatson)
203
+ * Refactored by Nathaniel Talbott
204
+
205
+ Federated Canada
206
+
207
+ * Bob Larrick (deathbob)
208
+
209
+ NMI
210
+
211
+ * Nathaniel Talbott (ntalbott)
212
+
213
+ QBMS
214
+
215
+ * Will Glozer (wg)
216
+
217
+ WorldPay Integration (Feb 17, 2011)
218
+
219
+ * Original code by Unknown from this patch: https://jadedpixel.lighthouseapp.com/projects/11599/tickets/3-patch-integration-support-for-worldpay-uk
220
+ * Refactored by Soleone
221
+
222
+ WorldPay Gateway
223
+
224
+ * Original code by Amit kumar (ask4amit@gmail.com)
225
+ * Refactored by Nathaniel Talbott (ntalbott)
226
+
227
+ Orbital Paymentech Gateway (July, 2009)
228
+
229
+ * Sam Vincent - http://ecommerce.versapay.com
230
+
231
+ DIRECTebanking - Payment Network AG (May, 2011)
232
+
233
+ * Gerwin Brunner (Vilango)
234
+
235
+ Stripe
236
+
237
+ * Ross Boucher (boucher)
238
+
239
+ Paystation (July, 2011)
240
+
241
+ * Nik Wakelin (nikz)
242
+
243
+ ePaymentPlans offsite gatway (June, 2011)
244
+
245
+ * Roberto Miranda (robertomiranda)
246
+
247
+ Optimal Payments (August, 2011)
248
+
249
+ * Jamie Macey (jamie)
250
+
251
+ CardSave (August, 2011)
252
+
253
+ * Tom Crinson (MrJaba)
254
+
255
+ Dwolla (September, 2011)
256
+
257
+ * James Armstead (armsteadj1)
258
+
259
+ Samurai (November, 2011)
260
+
261
+ * Joshua Krall (jkrall)
262
+
263
+ CertoDirect Gateway (February, 2012)
264
+
265
+ * Aleksei Gusev (hron)
266
+
267
+ Authorize.Net SIM Integration (February, 2012)
268
+
269
+ * Roger Pack (rdp)
270
+ * Nick Rogers (courtland)
271
+
272
+ NAB Transact (AU) Gateway (February, 2012)
273
+
274
+ * Tom Meier (tommeier)
275
+
276
+ iTransact XML Gateway (March, 2012)
277
+
278
+ * Kevin Motschiedler (motske)
279
+
280
+ Robokassa Integration (March, 2012)
281
+
282
+ * Vasiliy Ermolovich (nashby)
283
+
284
+ Moneris US Gateway (March, 2012)
285
+
286
+ * Michael Wood (eddanger)
287
+
288
+ Dotpay Integration (March, 2012)
289
+
290
+ * Przemysław Ciąćka (kacperix)
291
+
292
+ Vindicia gateway (April 2012)
293
+
294
+ * Steven Davidovitz (steved555)
295
+
296
+ MiGS gateway (April 2012)
297
+
298
+ * Michael Noack (mnoack)
299
+ * Justin Jones (nagash)
300
+
301
+ ePay integration (April 2012)
302
+
303
+ * Michael (ePay)
304
+
305
+ Litle gateway (May 2012)
306
+
307
+ * Gregory Drake (GregDrake)
308
+
309
+ Fat Zebra gateway (June 2012)
310
+
311
+ * Matthew Savage (amasses)
312
+
313
+ Metrics Global gateway (June 2012)
314
+
315
+ * Dan Knox (DanKnox)
316
+
317
+ EasyPay integration (July 2012)
318
+
319
+ * Vasiliy Ermolovich (nashby)
320
+
321
+ PayGateXML gateway (July 2012)
322
+
323
+ * bryan (rubyisbeautiful)
324
+
325
+ PayWay gateway (July 2012)
326
+
327
+ * Ben Zhang (BenZhang)
328
+
329
+ First Data integration (July 2012)
330
+
331
+ * Nick Rogers (courtland)
332
+
333
+ WebPay integration (July 2012)
334
+
335
+ * Vasiliy Ermolovich (nashby)
336
+
337
+ Suomen Maksuturva integration (July 2012)
338
+
339
+ * Antti Akonniemi (akonan)
340
+
341
+ Paxum integration (July 2012)
342
+
343
+ * Stanislav Mekhonoshin (Mehonoshin)
344
+
345
+ Balanced gateway (July 2012)
346
+
347
+ * Marshall Jones (mjallday)
348
+
349
+ PayFast integration (October 2012)
350
+
351
+ * Vasiliy Ermolovich (nashby)
352
+
353
+ A1Agregator (November 2012)
354
+
355
+ * Roman Ivanilov (england)
356
+
357
+ Liqpay integration (November 2012)
358
+
359
+ * beorc
360
+
361
+ eWay Rapid 3.0 gateway (December 2012)
362
+
363
+ * Nathaniel Talbott (ntalbott)
364
+
365
+ FirstData Global Gateway e4 (December 2012)
366
+
367
+ * Chris Sheppard (frobcode)
368
+
369
+ Spreedly Core gateway (December 2012)
370
+
371
+ * Duff OMelia (duff)
372
+
373
+ Pin gateway (February 2013)
374
+
375
+ * Myles Eftos (madpilot)
376
+
377
+ Merchant Warrior (February 2013)
378
+
379
+ * Ben Bruscella (benbruscella)
380
+ * Дмитрий Василец (pronix)
381
+ * Kirill Shirinkin (Fodoj)
382
+ * Nathaniel Talbott (ntalbott)
383
+
384
+ Paymill (February 2013)
385
+
386
+ * Duff O'Melia (duff)
387
+
388
+ EVO Canada (February 2013)
389
+
390
+ * Alex Dunae (alexdunae)
391
+
392
+ Finansbank WebPOS (March 2013)
393
+
394
+ * scamurcuoglu
395
+
396
+ Cardstream Modern (March 2013)
397
+
398
+ * Vincens (ExxKA)
399
+
400
+ Transnational (May 2013)
401
+
402
+ * Ben VandenBos (bvandenbos)
403
+
404
+ Barclays ePDQ Extra Plus (June 2013)
405
+
406
+ * Nathaniel Talbott (ntalbott)
407
+
408
+ MerchantWare V4 (July 2013)
409
+
410
+ * Aleksei Gusev (hron)
411
+
412
+ Platron integration (July 2013)
413
+
414
+ * Alexey Kiryushin (alexwl)
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2005-2010 Tobias Luetke
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,221 @@
1
+ # Active Merchant
2
+ [![Build Status](https://secure.travis-ci.org/Shopify/active_merchant.png)](http://travis-ci.org/Shopify/active_merchant)
3
+ [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/Shopify/active_merchant)
4
+
5
+ Active Merchant is an extraction from the e-commerce system [Shopify](http://www.shopify.com).
6
+ Shopify's requirements for a simple and unified API to access dozens of different payment
7
+ gateways with very different internal APIs was the chief principle in designing the library.
8
+
9
+ It was developed for usage in Ruby on Rails web applications and integrates seamlessly
10
+ as a Rails plugin, but it also works excellently as a stand alone Ruby library.
11
+
12
+ Active Merchant has been in production use since June 2006 and is now used in most modern
13
+ Ruby applications which deal with financial transactions. It is maintained by the
14
+ [Shopify](http://www.shopify.com) and [Spreedly](https://spreedly.com) teams, with much help
15
+ from an ever-growing set of contributors.
16
+
17
+ See [GettingStarted.md](GettingStarted.md) if you want to learn more about using Active Merchant in your
18
+ applications.
19
+
20
+ ## Installation
21
+
22
+ ### From Git
23
+
24
+ You can check out the latest source from git:
25
+
26
+ git clone git://github.com/Shopify/active_merchant.git
27
+
28
+ ### From RubyGems
29
+
30
+ Installation from RubyGems:
31
+
32
+ gem install activemerchant
33
+
34
+ Or, if you're using Bundler, just add the following to your Gemfile:
35
+
36
+ gem 'activemerchant'
37
+
38
+ ## Usage
39
+
40
+ This simple example demonstrates how a purchase can be made using a person's
41
+ credit card details.
42
+
43
+ require 'rubygems'
44
+ require 'active_merchant'
45
+
46
+ # Use the TrustCommerce test servers
47
+ ActiveMerchant::Billing::Base.mode = :test
48
+
49
+ gateway = ActiveMerchant::Billing::TrustCommerceGateway.new(
50
+ :login => 'TestMerchant',
51
+ :password => 'password')
52
+
53
+ # ActiveMerchant accepts all amounts as Integer values in cents
54
+ amount = 1000 # $10.00
55
+
56
+ # The card verification value is also known as CVV2, CVC2, or CID
57
+ credit_card = ActiveMerchant::Billing::CreditCard.new(
58
+ :first_name => 'Bob',
59
+ :last_name => 'Bobsen',
60
+ :number => '4242424242424242',
61
+ :month => '8',
62
+ :year => Time.now.year+1,
63
+ :verification_value => '000')
64
+
65
+ # Validating the card automatically detects the card type
66
+ if credit_card.valid?
67
+ # Capture $10 from the credit card
68
+ response = gateway.purchase(amount, credit_card)
69
+
70
+ if response.success?
71
+ puts "Successfully charged $#{sprintf("%.2f", amount / 100)} to the credit card #{credit_card.display_number}"
72
+ else
73
+ raise StandardError, response.message
74
+ end
75
+ end
76
+
77
+ For more in-depth documentation and tutorials, see [GettingStarted.md](GettingStarted.md) and the
78
+ [API documentation](http://rubydoc.info/github/Shopify/active_merchant/master/file/README.md).
79
+
80
+ ## Supported Direct Payment Gateways
81
+
82
+ The [ActiveMerchant Wiki](http://github.com/Shopify/active_merchant/wikis) contains a [table of features supported by each gateway](http://github.com/Shopify/active_merchant/wikis/gatewayfeaturematrix).
83
+
84
+ * [Authorize.Net](http://www.authorize.net/) - US
85
+ * [Authorize.Net CIM](http://www.authorize.net/) - US
86
+ * [Balanced](https://www.balancedpayments.com/) - US
87
+ * [Banwire](https://www.banwire.com/) - MX
88
+ * [Barclays ePDQ MPI](http://www.barclaycard.co.uk/business/accepting-payments/epdq-mpi/) - UK
89
+ * [Barclays ePDQ Extra Plus](http://www.barclaycard.co.uk/business/accepting-payments/epdq-ecomm/) - UK
90
+ * [Beanstream.com](http://www.beanstream.com/) - CA
91
+ * [BluePay](http://www.bluepay.com/) - US
92
+ * [Braintree](http://www.braintreepaymentsolutions.com) - US
93
+ * [CardStream](http://www.cardstream.com/) - UK
94
+ * [CertoDirect](http://www.certodirect.com/) - BE, BG, CZ, DK, DE, EE, IE, EL, ES, FR, IT, CY, LV, LT, LU, HU, MT, NL, AT, PL, PT, RO, SI, SK, FI, SE, UK
95
+ * [CyberSource](http://www.cybersource.com) - US
96
+ * [DataCash](http://www.datacash.com/) - UK
97
+ * [Efsnet](http://www.concordefsnet.com/) - US
98
+ * [Elavon MyVirtualMerchant](http://www.elavon.com) - US, CA
99
+ * [ePay](http://www.epay.dk/) - DK, SE, NO
100
+ * [EVO Canada](http://www.evocanada.com/) - CA
101
+ * [eWAY](http://www.eway.com.au/) - AU
102
+ * [eWay Rapid 3.0](http://www.eway.com.au/) - AU
103
+ * [E-xact](http://www.e-xact.com) - CA, US
104
+ * [Fat Zebra](https://www.fatzebra.com.au) - AU
105
+ * [Federated Canada](http://www.federatedcanada.com/) - CA
106
+ * [Finansbank WebPOS](https://www.fbwebpos.com/) - US, TR
107
+ * [FirstData Global Gateway e4](http://www.firstdata.com) - CA, US
108
+ * [FirstPay](http://www.first-pay.com) - US
109
+ * [Garanti Sanal POS](https://ccpos.garanti.com.tr/ccRaporlar/garanti/ccReports) - US, TR
110
+ * [HDFC](http://www.hdfcbank.com/sme/sme-details/merchant-services/guzh6m0i) - IN
111
+ * [Inspire](http://www.inspiregateway.com) - US
112
+ * [InstaPay](http://www.instapayllc.com) - US
113
+ * [Iridium](http://www.iridiumcorp.co.uk/) - UK, ES
114
+ * [iTransact](http://www.itransact.com/) - US
115
+ * [JetPay](http://www.jetpay.com) - US
116
+ * [LinkPoint](http://www.linkpoint.com/) - US
117
+ * [Litle](http://www.litle.com/) - US
118
+ * [Merchant e-Solutions](http://merchante-solutions.com/) - US
119
+ * [MerchantWare](http://merchantwarehouse.com/merchantware) - US
120
+ * [Merchant Warrior] (http://merchantwarrior.com) - AU
121
+ * [Mercury](http://www.mercurypay.com) - US
122
+ * [MasterCard Internet Gateway Service (MiGS)](http://mastercard.com/mastercardsps) - AU, AE, BD, BN, EG, HK, ID, IN, JO, KW, LB, LK, MU, MV, MY, NZ, OM, PH, QA, SA, SG, TT, VN
123
+ * [Modern Payments](http://www.modpay.com) - US
124
+ * [Moneris](http://www.moneris.com/) - CA
125
+ * [Moneris US](http://www.monerisusa.com/) - US
126
+ * [NABTransact](http://www.nab.com.au/nabtransact/) - AU
127
+ * [NELiX TransaX Gateway](http://www.nelixtransax.com) - US
128
+ * [Netaxept](http://www.betalingsterminal.no/Netthandel-forside) - NO, DK, SE, FI
129
+ * [NETbilling](http://www.netbilling.com) - US
130
+ * [NetPay](http://www.netpay.com.mx) - MX
131
+ * [NetRegistry](http://www.netregistry.com.au) - AU
132
+ * [NMI](http://nmi.com/) - US
133
+ * [Ogone DirectLink](http://www.ogone.com) - BE, DE, FR, NL, AT, CH
134
+ * [Optimal Payments](http://www.optimalpayments.com/) - CA, US, UK
135
+ * [Orbital Paymentech](http://chasepaymentech.com/) - CA, US, UK, GB
136
+ * [PayBox Direct](http://www.paybox.com) - FR
137
+ * [PayFast](https://www.payfast.co.za/) - ZA
138
+ * [PayGate PayXML](http://paygate.co.za/) - US, ZA
139
+ * [PayJunction](http://www.payjunction.com/) - US
140
+ * [PaymentExpress](http://www.paymentexpress.com/) - AU, MY, NZ, SG, ZA, UK, US
141
+ * [PAYMILL](https://www.paymill.com) - AD, AT, BE, CH, CY, CZ, DE, DK, EE, ES, FI, FO, FR, GB, GR, HU, IE, IL, IS, IT, LI, LT, LU, LV, MT, NL, NO, PL, PT, SE, SI, SK, TR, VA
142
+ * [PayPal Express Checkout](https://www.paypal.com/cgi-bin/webscr?cmd=xpt/merchant/ExpressCheckoutIntro-outside) - US, CA, SG, AU
143
+ * [PayPal Payflow Pro](https://www.paypal.com/cgi-bin/webscr?cmd=_payflow-pro-overview-outside) - US, CA, SG, AU
144
+ * [PayPal Website Payments Pro (UK)](https://www.paypal.com/uk/cgi-bin/webscr?cmd=_wp-pro-overview-outside) - UK
145
+ * [PayPal Website Payments Pro (CA)](https://www.paypal.com/cgi-bin/webscr?cmd=_wp-pro-overview-outside) - CA
146
+ * [PayPal Express Checkout](https://www.paypal.com/cgi-bin/webscr?cmd=xpt/merchant/ExpressCheckoutIntro-outside) - US
147
+ * [PayPal Website Payments Pro (US)](https://www.paypal.com/cgi-bin/webscr?cmd=_wp-pro-overview-outside) - US
148
+ * [PaySecure](http://www.commsecure.com.au/paysecure.shtml) - AU
149
+ * [PayWay](https://www.payway.com.au) - AU
150
+ * [Pin](http://www.pin.net.au/) - AU
151
+ * [Plug'n Pay](http://www.plugnpay.com/) - US
152
+ * [Psigate](http://www.psigate.com/) - CA
153
+ * [PSL Payment Solutions](http://www.paymentsolutionsltd.com/) - UK
154
+ * [Quantum](http://www.quantumgateway.com) - US
155
+ * [QuickBooks Merchant Services](http://payments.intuit.com/) - US
156
+ * [Quickpay](http://quickpay.dk/) - DK, SE
157
+ * [Rabobank Nederland](http://www.rabobank.nl/) - NL
158
+ * [Realex](http://www.realexpayments.com/) - IE, UK
159
+ * [Redsys](http://www.redsys.es) - ES
160
+ * [SagePay](http://www.sagepay.com) - UK
161
+ * [Sage Payment Solutions](http://www.sagepayments.com) - US, CA
162
+ * [Sallie Mae](http://www.salliemae.com) - US
163
+ * [SecureNet](http://www.securenet.com) - US
164
+ * [SecurePay](http://securepay.com.au) - AU
165
+ * [SecurePay](http://www.securepay.com/) - US
166
+ * [SecurePayTech](http://www.securepaytech.com/) - NZ
167
+ * [SkipJack](http://www.skipjack.com/) - US, CA
168
+ * [Spreedly Core](https://spreedlycore.com/) - AD, AE, AT, AU, BD, BE, BG, BN, CA, CH, CY, CZ, DE, DK, EE, EG, ES, FI, FR, GB, GI, GR, HK, HU, ID, IE, IL, IM, IN, IS, IT, JO, KW, LB, LI, LK, LT, LU, LV, MC, MT, MU, MV, MX, MY, NL, NO, NZ, OM, PH, PL, PT, QA, RO, SA, SE, SG, SI, SK, SM, TR, TT, UM, US, VA, VN, ZA
169
+ * [Stripe](https://stripe.com/) - US
170
+ * [TransFirst](http://www.transfirst.com/) - US
171
+ * [Transnational](http://www.tnbci.com/) - US
172
+ * [TrustCommerce](http://www.trustcommerce.com/) - US
173
+ * [USA ePay](http://www.usaepay.com/) - US
174
+ * [Verifi](http://www.verifi.com/) - US
175
+ * [ViaKLIX](http://viaklix.com) - US
176
+ * [Vindica](http://www.vindicia.com/) - US, CA, UK, AU, MX, BR, DE, KR, CN, HK
177
+ * [WebPay](https://webpay.jp/) - JP
178
+ * [Wirecard](http://www.wirecard.com) - DE
179
+ * [WorldPay](http://www.worldpay.com) - AU, HK, UK, US
180
+
181
+ ## Supported Offsite Payment Gateways
182
+
183
+ * [2 Checkout](http://www.2checkout.com)
184
+ * [A1Agregator](http://a1agregator.ru/) - RU
185
+ * [Authorize.Net SIM](http://developer.authorize.net/api/sim/) - US
186
+ * [Banca Sella GestPay](https://www.sella.it/banca/ecommerce/gestpay/gestpay.jsp)
187
+ * [Chronopay](http://www.chronopay.com)
188
+ * [DirecPay](http://www.timesofmoney.com/direcpay/jsp/home.jsp)
189
+ * [Direct-eBanking / sofortueberweisung.de by Payment-Networks AG](https://www.payment-network.com/deb_com_en/merchantarea/home) - DE, AT, CH, BE, UK, NL
190
+ * [Dotpay](http://dotpay.pl)
191
+ * [Dwolla](https://www.dwolla.com/default.aspx)
192
+ * [ePay](http://www.epay.dk/epay-payment-solutions/)
193
+ * [First Data](https://firstdata.zendesk.com/entries/407522-first-data-global-gateway-e4sm-payment-pages-integration-manual)
194
+ * [HiTRUST](http://www.hitrust.com.hk/)
195
+ * [Moneybookers](http://www.moneybookers.com)
196
+ * [Nochex](http://www.nochex.com)
197
+ * [Paxum](https://www.paxum.com/)
198
+ * [PayPal Website Payments Standard](https://www.paypal.com/cgi-bin/webscr?cmd#_wp-standard-overview-outside)
199
+ * [Paysbuy](https://www.paysbuy.com/) - TH
200
+ * [Platron](https://www.platron.ru/) - RU
201
+ * [RBK Money](https://rbkmoney.ru/) - RU
202
+ * [Robokassa](http://robokassa.ru/) - RU
203
+ * [SagePay Form](http://www.sagepay.com/products_services/sage_pay_go/integration/form)
204
+ * [Suomen Maksuturva](https://www.maksuturva.fi/services/vendor_services/integration_guidelines.html)
205
+ * [Valitor](http://www.valitor.is/) - IS
206
+ * [Verkkomaksut](http://www.verkkomaksut.fi) - FI
207
+ * [WebMoney](http://www.webmoney.ru) - RU
208
+ * [WebPay](http://webpay.by/)
209
+ * [WorldPay](http://www.worldpay.com)
210
+
211
+ ## Contributing
212
+
213
+ The source code is hosted at [GitHub](http://github.com/Shopify/active_merchant), and can be fetched using:
214
+
215
+ git clone git://github.com/Shopify/active_merchant.git
216
+
217
+ Please see the [ActiveMerchant Guide to Contributing](http://github.com/Shopify/active_merchant/wikis/contributing) for
218
+ information on adding a new gateway to ActiveMerchant.
219
+
220
+ Please don't touch the CHANGELOG in your pull requests, we'll add the appropriate CHANGELOG entries
221
+ at release time.
@@ -0,0 +1,20 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIDNjCCAh6gAwIBAgIBADANBgkqhkiG9w0BAQUFADBBMRMwEQYDVQQDDApjb2R5
3
+ ZmF1c2VyMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJk/IsZAEZFgNj
4
+ b20wHhcNMDcwMjIyMTcyMTI3WhcNMDgwMjIyMTcyMTI3WjBBMRMwEQYDVQQDDApj
5
+ b2R5ZmF1c2VyMRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJk/IsZAEZ
6
+ FgNjb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6T4Iqt5iWvAlU
7
+ iXI6L8UO0URQhIC65X/gJ9hL/x4lwSl/ckVm/R/bPrJGmifT+YooFv824N3y/TIX
8
+ 25o/lZtRj1TUZJK4OCb0aVzosQVxBHSe6rLmxO8cItNTMOM9wn3thaITFrTa1DOQ
9
+ O3wqEjvW2L6VMozVfK1MfjL9IGgy0rCnl+2g4Gh4jDDpkLfnMG5CWI6cTCf3C1ye
10
+ ytOpWgi0XpOEy8nQWcFmt/KCQ/kFfzBo4QxqJi54b80842EyvzWT9OB7Oew/CXZG
11
+ F2yIHtiYxonz6N09vvSzq4CvEuisoUFLKZnktndxMEBKwJU3XeSHAbuS7ix40OKO
12
+ WKuI54fHAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
13
+ BBR9QQpefI3oDCAxiqJW/3Gg6jI6qjANBgkqhkiG9w0BAQUFAAOCAQEAs0lX26O+
14
+ HpyMp7WL+SgZuM8k76AjfOHuKajl2GEn3S8pWYGpsa0xu07HtehJhKLiavrfUYeE
15
+ qlFtyYMUyOh6/1S2vfkH6VqjX7mWjoi7XKHW/99fkMS40B5SbN+ypAUst+6c5R84
16
+ w390mjtLHpdDE6WQYhS6bFvBN53vK6jG3DLyCJc0K9uMQ7gdHWoxq7RnG92ncQpT
17
+ ThpRA+fky5Xt2Q63YJDnJpkYAz79QIama1enSnd4jslKzSl89JS2luq/zioPe/Us
18
+ hbyalWR1+HrhgPoSPq7nk+s2FQUBJ9UZFK1lgMzho/4fZgzJwbu+cO8SNuaLS/bj
19
+ hPaSTyVU0yCSnw==
20
+ -----END CERTIFICATE-----