mattbauer-activemerchant 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (292) hide show
  1. data/CHANGELOG +459 -0
  2. data/CONTRIBUTERS +118 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README +134 -0
  5. data/Rakefile +153 -0
  6. data/gem-public_cert.pem +20 -0
  7. data/init.rb +3 -0
  8. data/lib/active_merchant.rb +60 -0
  9. data/lib/active_merchant/billing/avs_result.rb +98 -0
  10. data/lib/active_merchant/billing/base.rb +57 -0
  11. data/lib/active_merchant/billing/check.rb +68 -0
  12. data/lib/active_merchant/billing/credit_card.rb +159 -0
  13. data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
  14. data/lib/active_merchant/billing/credit_card_methods.rb +125 -0
  15. data/lib/active_merchant/billing/cvv_result.rb +38 -0
  16. data/lib/active_merchant/billing/expiry_date.rb +34 -0
  17. data/lib/active_merchant/billing/gateway.rb +158 -0
  18. data/lib/active_merchant/billing/gateways.rb +3 -0
  19. data/lib/active_merchant/billing/gateways/authorize_net.rb +657 -0
  20. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +703 -0
  21. data/lib/active_merchant/billing/gateways/beanstream.rb +102 -0
  22. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +233 -0
  23. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
  24. data/lib/active_merchant/billing/gateways/bogus.rb +98 -0
  25. data/lib/active_merchant/billing/gateways/braintree.rb +17 -0
  26. data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
  27. data/lib/active_merchant/billing/gateways/cyber_source.rb +406 -0
  28. data/lib/active_merchant/billing/gateways/data_cash.rb +595 -0
  29. data/lib/active_merchant/billing/gateways/efsnet.rb +229 -0
  30. data/lib/active_merchant/billing/gateways/elavon.rb +106 -0
  31. data/lib/active_merchant/billing/gateways/eway.rb +277 -0
  32. data/lib/active_merchant/billing/gateways/exact.rb +222 -0
  33. data/lib/active_merchant/billing/gateways/first_pay.rb +172 -0
  34. data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
  35. data/lib/active_merchant/billing/gateways/linkpoint.rb +396 -0
  36. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +154 -0
  37. data/lib/active_merchant/billing/gateways/merchant_ware.rb +283 -0
  38. data/lib/active_merchant/billing/gateways/modern_payments.rb +36 -0
  39. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +214 -0
  40. data/lib/active_merchant/billing/gateways/moneris.rb +295 -0
  41. data/lib/active_merchant/billing/gateways/moneris_usa.rb +258 -0
  42. data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
  43. data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
  44. data/lib/active_merchant/billing/gateways/ogone.rb +259 -0
  45. data/lib/active_merchant/billing/gateways/pay_junction.rb +392 -0
  46. data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
  47. data/lib/active_merchant/billing/gateways/payflow.rb +236 -0
  48. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +207 -0
  49. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
  50. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  51. data/lib/active_merchant/billing/gateways/payflow_express.rb +138 -0
  52. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
  53. data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
  54. data/lib/active_merchant/billing/gateways/payment_express.rb +230 -0
  55. data/lib/active_merchant/billing/gateways/paypal.rb +121 -0
  56. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +325 -0
  57. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +38 -0
  58. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  59. data/lib/active_merchant/billing/gateways/paypal_express.rb +130 -0
  60. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +20 -0
  61. data/lib/active_merchant/billing/gateways/plugnpay.rb +292 -0
  62. data/lib/active_merchant/billing/gateways/psigate.rb +214 -0
  63. data/lib/active_merchant/billing/gateways/psl_card.rb +306 -0
  64. data/lib/active_merchant/billing/gateways/quickpay.rb +213 -0
  65. data/lib/active_merchant/billing/gateways/realex.rb +200 -0
  66. data/lib/active_merchant/billing/gateways/sage.rb +146 -0
  67. data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
  68. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +110 -0
  69. data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
  70. data/lib/active_merchant/billing/gateways/sage_pay.rb +308 -0
  71. data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
  72. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +157 -0
  73. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
  74. data/lib/active_merchant/billing/gateways/skip_jack.rb +442 -0
  75. data/lib/active_merchant/billing/gateways/smart_ps.rb +254 -0
  76. data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
  77. data/lib/active_merchant/billing/gateways/transax.rb +26 -0
  78. data/lib/active_merchant/billing/gateways/trust_commerce.rb +418 -0
  79. data/lib/active_merchant/billing/gateways/usa_epay.rb +194 -0
  80. data/lib/active_merchant/billing/gateways/verifi.rb +228 -0
  81. data/lib/active_merchant/billing/gateways/viaklix.rb +189 -0
  82. data/lib/active_merchant/billing/gateways/wirecard.rb +318 -0
  83. data/lib/active_merchant/billing/integrations.rb +22 -0
  84. data/lib/active_merchant/billing/integrations/action_view_helper.rb +79 -0
  85. data/lib/active_merchant/billing/integrations/bogus.rb +22 -0
  86. data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
  87. data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
  88. data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
  89. data/lib/active_merchant/billing/integrations/chronopay.rb +22 -0
  90. data/lib/active_merchant/billing/integrations/chronopay/helper.rb +81 -0
  91. data/lib/active_merchant/billing/integrations/chronopay/notification.rb +156 -0
  92. data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
  93. data/lib/active_merchant/billing/integrations/gestpay.rb +26 -0
  94. data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
  95. data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
  96. data/lib/active_merchant/billing/integrations/gestpay/notification.rb +83 -0
  97. data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
  98. data/lib/active_merchant/billing/integrations/helper.rb +93 -0
  99. data/lib/active_merchant/billing/integrations/hi_trust.rb +26 -0
  100. data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
  101. data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
  102. data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
  103. data/lib/active_merchant/billing/integrations/nochex.rb +87 -0
  104. data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
  105. data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
  106. data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
  107. data/lib/active_merchant/billing/integrations/notification.rb +62 -0
  108. data/lib/active_merchant/billing/integrations/paypal.rb +40 -0
  109. data/lib/active_merchant/billing/integrations/paypal/helper.rb +119 -0
  110. data/lib/active_merchant/billing/integrations/paypal/notification.rb +154 -0
  111. data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
  112. data/lib/active_merchant/billing/integrations/quickpay.rb +18 -0
  113. data/lib/active_merchant/billing/integrations/quickpay/helper.rb +72 -0
  114. data/lib/active_merchant/billing/integrations/quickpay/notification.rb +74 -0
  115. data/lib/active_merchant/billing/integrations/return.rb +35 -0
  116. data/lib/active_merchant/billing/integrations/two_checkout.rb +23 -0
  117. data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +59 -0
  118. data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +114 -0
  119. data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
  120. data/lib/active_merchant/billing/response.rb +32 -0
  121. data/lib/active_merchant/lib/connection.rb +170 -0
  122. data/lib/active_merchant/lib/country.rb +319 -0
  123. data/lib/active_merchant/lib/error.rb +4 -0
  124. data/lib/active_merchant/lib/post_data.rb +22 -0
  125. data/lib/active_merchant/lib/posts_data.rb +47 -0
  126. data/lib/active_merchant/lib/requires_parameters.rb +16 -0
  127. data/lib/active_merchant/lib/utils.rb +18 -0
  128. data/lib/active_merchant/lib/validateable.rb +76 -0
  129. data/lib/certs/cacert.pem +7815 -0
  130. data/lib/support/gateway_support.rb +58 -0
  131. data/script/destroy +14 -0
  132. data/script/generate +14 -0
  133. data/test/fixtures.yml +353 -0
  134. data/test/remote/gateways/remote_authorize_net_cim_test.rb +459 -0
  135. data/test/remote/gateways/remote_authorize_net_test.rb +145 -0
  136. data/test/remote/gateways/remote_beanstream_interac_test.rb +53 -0
  137. data/test/remote/gateways/remote_beanstream_test.rb +150 -0
  138. data/test/remote/gateways/remote_braintree_test.rb +154 -0
  139. data/test/remote/gateways/remote_card_stream_test.rb +148 -0
  140. data/test/remote/gateways/remote_cyber_source_test.rb +144 -0
  141. data/test/remote/gateways/remote_data_cash_test.rb +357 -0
  142. data/test/remote/gateways/remote_efsnet_test.rb +81 -0
  143. data/test/remote/gateways/remote_elavon_test.rb +66 -0
  144. data/test/remote/gateways/remote_eway_test.rb +74 -0
  145. data/test/remote/gateways/remote_exact_test.rb +60 -0
  146. data/test/remote/gateways/remote_first_pay_test.rb +87 -0
  147. data/test/remote/gateways/remote_instapay_test.rb +61 -0
  148. data/test/remote/gateways/remote_linkpoint_test.rb +112 -0
  149. data/test/remote/gateways/remote_merchant_e_solutions_test.rb +173 -0
  150. data/test/remote/gateways/remote_merchant_ware_test.rb +113 -0
  151. data/test/remote/gateways/remote_modern_payments_cim_test.rb +58 -0
  152. data/test/remote/gateways/remote_modern_payments_test.rb +43 -0
  153. data/test/remote/gateways/remote_moneris_test.rb +118 -0
  154. data/test/remote/gateways/remote_moneris_usa_test.rb +115 -0
  155. data/test/remote/gateways/remote_net_registry_test.rb +85 -0
  156. data/test/remote/gateways/remote_netbilling_test.rb +70 -0
  157. data/test/remote/gateways/remote_ogone_test.rb +108 -0
  158. data/test/remote/gateways/remote_pay_junction_test.rb +143 -0
  159. data/test/remote/gateways/remote_pay_secure_test.rb +39 -0
  160. data/test/remote/gateways/remote_payflow_express_test.rb +50 -0
  161. data/test/remote/gateways/remote_payflow_test.rb +237 -0
  162. data/test/remote/gateways/remote_payflow_uk_test.rb +173 -0
  163. data/test/remote/gateways/remote_payment_express_test.rb +136 -0
  164. data/test/remote/gateways/remote_paypal_express_test.rb +49 -0
  165. data/test/remote/gateways/remote_paypal_test.rb +178 -0
  166. data/test/remote/gateways/remote_plugnpay_test.rb +72 -0
  167. data/test/remote/gateways/remote_psigate_test.rb +50 -0
  168. data/test/remote/gateways/remote_psl_card_test.rb +125 -0
  169. data/test/remote/gateways/remote_quickpay_test.rb +190 -0
  170. data/test/remote/gateways/remote_realex_test.rb +224 -0
  171. data/test/remote/gateways/remote_sage_bankcard_test.rb +109 -0
  172. data/test/remote/gateways/remote_sage_pay_test.rb +219 -0
  173. data/test/remote/gateways/remote_sage_test.rb +87 -0
  174. data/test/remote/gateways/remote_sage_virtual_check_test.rb +62 -0
  175. data/test/remote/gateways/remote_secure_pay_au_test.rb +40 -0
  176. data/test/remote/gateways/remote_secure_pay_tech_test.rb +37 -0
  177. data/test/remote/gateways/remote_secure_pay_test.rb +28 -0
  178. data/test/remote/gateways/remote_skipjack_test.rb +105 -0
  179. data/test/remote/gateways/remote_trans_first_test.rb +34 -0
  180. data/test/remote/gateways/remote_transax_test.rb +112 -0
  181. data/test/remote/gateways/remote_trust_commerce_test.rb +152 -0
  182. data/test/remote/gateways/remote_usa_epay_test.rb +46 -0
  183. data/test/remote/gateways/remote_verifi_test.rb +107 -0
  184. data/test/remote/gateways/remote_viaklix_test.rb +43 -0
  185. data/test/remote/gateways/remote_wirecard_test.rb +111 -0
  186. data/test/remote/integrations/remote_gestpay_integration_test.rb +37 -0
  187. data/test/remote/integrations/remote_paypal_integration_test.rb +26 -0
  188. data/test/test_helper.rb +182 -0
  189. data/test/unit/avs_result_test.rb +59 -0
  190. data/test/unit/base_test.rb +55 -0
  191. data/test/unit/check_test.rb +88 -0
  192. data/test/unit/connection_test.rb +129 -0
  193. data/test/unit/country_code_test.rb +33 -0
  194. data/test/unit/country_test.rb +64 -0
  195. data/test/unit/credit_card_formatting_test.rb +19 -0
  196. data/test/unit/credit_card_methods_test.rb +179 -0
  197. data/test/unit/credit_card_test.rb +318 -0
  198. data/test/unit/cvv_result_test.rb +33 -0
  199. data/test/unit/expiry_date_test.rb +32 -0
  200. data/test/unit/gateways/authorize_net_cim_test.rb +638 -0
  201. data/test/unit/gateways/authorize_net_test.rb +290 -0
  202. data/test/unit/gateways/beanstream_interac_test.rb +51 -0
  203. data/test/unit/gateways/beanstream_test.rb +108 -0
  204. data/test/unit/gateways/bogus_test.rb +46 -0
  205. data/test/unit/gateways/braintree_test.rb +126 -0
  206. data/test/unit/gateways/card_stream_test.rb +90 -0
  207. data/test/unit/gateways/cyber_source_test.rb +188 -0
  208. data/test/unit/gateways/data_cash_test.rb +133 -0
  209. data/test/unit/gateways/efsnet_test.rb +123 -0
  210. data/test/unit/gateways/elavon_test.rb +139 -0
  211. data/test/unit/gateways/eway_test.rb +118 -0
  212. data/test/unit/gateways/exact_test.rb +156 -0
  213. data/test/unit/gateways/first_pay_test.rb +125 -0
  214. data/test/unit/gateways/gateway_test.rb +48 -0
  215. data/test/unit/gateways/instapay_test.rb +102 -0
  216. data/test/unit/gateways/linkpoint_test.rb +167 -0
  217. data/test/unit/gateways/merchant_e_solutions_test.rb +169 -0
  218. data/test/unit/gateways/merchant_ware_test.rb +188 -0
  219. data/test/unit/gateways/modern_payments_cim_test.rb +171 -0
  220. data/test/unit/gateways/moneris_test.rb +185 -0
  221. data/test/unit/gateways/moneris_usa_test.rb +183 -0
  222. data/test/unit/gateways/net_registry_test.rb +416 -0
  223. data/test/unit/gateways/netbilling_test.rb +54 -0
  224. data/test/unit/gateways/ogone_test.rb +256 -0
  225. data/test/unit/gateways/pay_junction_test.rb +123 -0
  226. data/test/unit/gateways/pay_secure_test.rb +71 -0
  227. data/test/unit/gateways/payflow_express_test.rb +173 -0
  228. data/test/unit/gateways/payflow_express_uk_test.rb +86 -0
  229. data/test/unit/gateways/payflow_test.rb +305 -0
  230. data/test/unit/gateways/payflow_uk_test.rb +30 -0
  231. data/test/unit/gateways/payment_express_test.rb +195 -0
  232. data/test/unit/gateways/paypal_express_test.rb +382 -0
  233. data/test/unit/gateways/paypal_test.rb +569 -0
  234. data/test/unit/gateways/plugnpay_test.rb +86 -0
  235. data/test/unit/gateways/psigate_test.rb +169 -0
  236. data/test/unit/gateways/psl_card_test.rb +64 -0
  237. data/test/unit/gateways/quickpay_test.rb +112 -0
  238. data/test/unit/gateways/realex_test.rb +151 -0
  239. data/test/unit/gateways/sage_bankcard_test.rb +162 -0
  240. data/test/unit/gateways/sage_pay_test.rb +139 -0
  241. data/test/unit/gateways/sage_virtual_check_test.rb +71 -0
  242. data/test/unit/gateways/secure_pay_au_test.rb +207 -0
  243. data/test/unit/gateways/secure_pay_tech_test.rb +44 -0
  244. data/test/unit/gateways/secure_pay_test.rb +87 -0
  245. data/test/unit/gateways/skip_jack_test.rb +133 -0
  246. data/test/unit/gateways/trans_first_test.rb +112 -0
  247. data/test/unit/gateways/trust_commerce_test.rb +90 -0
  248. data/test/unit/gateways/usa_epay_test.rb +128 -0
  249. data/test/unit/gateways/verifi_test.rb +96 -0
  250. data/test/unit/gateways/viaklix_test.rb +78 -0
  251. data/test/unit/gateways/wirecard_test.rb +250 -0
  252. data/test/unit/generators/test_gateway_generator.rb +46 -0
  253. data/test/unit/generators/test_generator_helper.rb +20 -0
  254. data/test/unit/generators/test_integration_generator.rb +53 -0
  255. data/test/unit/integrations/action_view_helper_test.rb +50 -0
  256. data/test/unit/integrations/bogus_module_test.rb +20 -0
  257. data/test/unit/integrations/chronopay_module_test.rb +13 -0
  258. data/test/unit/integrations/gestpay_module_test.rb +14 -0
  259. data/test/unit/integrations/helpers/bogus_helper_test.rb +28 -0
  260. data/test/unit/integrations/helpers/chronopay_helper_test.rb +67 -0
  261. data/test/unit/integrations/helpers/gestpay_helper_test.rb +100 -0
  262. data/test/unit/integrations/helpers/hi_trust_helper_test.rb +16 -0
  263. data/test/unit/integrations/helpers/nochex_helper_test.rb +53 -0
  264. data/test/unit/integrations/helpers/paypal_helper_test.rb +171 -0
  265. data/test/unit/integrations/helpers/quickpay_helper_test.rb +40 -0
  266. data/test/unit/integrations/helpers/two_checkout_helper_test.rb +92 -0
  267. data/test/unit/integrations/hi_trust_module_test.rb +13 -0
  268. data/test/unit/integrations/nochex_module_test.rb +13 -0
  269. data/test/unit/integrations/notifications/chronopay_notification_test.rb +66 -0
  270. data/test/unit/integrations/notifications/gestpay_notification_test.rb +60 -0
  271. data/test/unit/integrations/notifications/hi_trust_notification_test.rb +59 -0
  272. data/test/unit/integrations/notifications/nochex_notification_test.rb +51 -0
  273. data/test/unit/integrations/notifications/notification_test.rb +54 -0
  274. data/test/unit/integrations/notifications/paypal_notification_test.rb +85 -0
  275. data/test/unit/integrations/notifications/quickpay_notification_test.rb +69 -0
  276. data/test/unit/integrations/notifications/two_checkout_notification_test.rb +55 -0
  277. data/test/unit/integrations/paypal_module_test.rb +28 -0
  278. data/test/unit/integrations/quickpay_module_test.rb +9 -0
  279. data/test/unit/integrations/returns/chronopay_return_test.rb +11 -0
  280. data/test/unit/integrations/returns/gestpay_return_test.rb +10 -0
  281. data/test/unit/integrations/returns/hi_trust_return_test.rb +24 -0
  282. data/test/unit/integrations/returns/nochex_return_test.rb +10 -0
  283. data/test/unit/integrations/returns/paypal_return_test.rb +10 -0
  284. data/test/unit/integrations/returns/return_test.rb +11 -0
  285. data/test/unit/integrations/returns/two_checkout_return_test.rb +24 -0
  286. data/test/unit/integrations/two_checkout_module_test.rb +13 -0
  287. data/test/unit/post_data_test.rb +55 -0
  288. data/test/unit/posts_data_test.rb +48 -0
  289. data/test/unit/response_test.rb +28 -0
  290. data/test/unit/utils_test.rb +7 -0
  291. data/test/unit/validateable_test.rb +60 -0
  292. metadata +396 -0
@@ -0,0 +1,306 @@
1
+ # Author:: MoneySpyder, http://moneyspyder.co.uk
2
+
3
+ module ActiveMerchant
4
+ module Billing
5
+ #
6
+ # ActiveMerchant PSL Card Gateway
7
+ #
8
+ # Notes:
9
+ # -To be able to use the capture function, the IP address of the machine must be
10
+ # registered with PSL
11
+ # -ESALE_KEYED should only be used in situations where the cardholder perceives the
12
+ # transaction to be Internet-based, such as purchasing from a web site/on-line store.
13
+ # If the Internet is used purely for the transport of information from the merchant
14
+ # directly to the gateway then the appropriate cardholder present or not present message
15
+ # type should be used rather than the ‘E’ equivalent.
16
+ # -The CV2 / AVS policies are set up with the account settings when signing up for an account
17
+ class PslCardGateway < Gateway
18
+ self.money_format = :cents
19
+ self.default_currency = 'GBP'
20
+
21
+ self.supported_countries = ['GB']
22
+ # Visa Credit, Visa Debit, Mastercard, Maestro, Solo, Electron,
23
+ # American Express, Diners Club, JCB, International Maestro,
24
+ # Style, Clydesdale Financial Services, Other
25
+
26
+ self.supported_cardtypes = [ :visa, :master, :american_express, :diners_club, :jcb, :switch, :solo, :maestro ]
27
+ self.homepage_url = 'http://www.paymentsolutionsltd.com/'
28
+ self.display_name = 'PSL Payment Solutions'
29
+
30
+ # Default ISO 3166 country code (GB)
31
+ cattr_accessor :location
32
+ self.location = 826
33
+
34
+ # PslCard server URL - The url is the same whether testing or live - use
35
+ # the test account when testing...
36
+ URL = 'https://pslcard3.paymentsolutionsltd.com/secure/transact.asp?'
37
+
38
+ # eCommerce sale transaction, details keyed by merchant or cardholder
39
+ MESSAGE_TYPE = 'ESALE_KEYED'
40
+
41
+ # The type of response that we want to get from PSL, options are HTML, XML or REDIRECT
42
+ RESPONSE_ACTION = 'HTML'
43
+
44
+ # Currency Codes
45
+ CURRENCY_CODES = {
46
+ 'AUD' => 036,
47
+ 'GBP' => 826,
48
+ 'USD' => 840
49
+ }
50
+
51
+ #The terminal used - only for swipe transactions, so hard coded to 32 for online
52
+ EMV_TERMINAL_TYPE = 32
53
+
54
+ #Different Dispatch types
55
+ DISPATCH_LATER = 'LATER'
56
+ DISPATCH_NOW = 'NOW'
57
+
58
+ # Return codes
59
+ APPROVED = '00'
60
+
61
+ #Nominal amount to authorize for a 'dispatch later' type
62
+ #The nominal amount is held straight away, when the goods are ready
63
+ #to be dispatched, PSL is informed and the full amount is the
64
+ #taken.
65
+ NOMINAL_AMOUNT = 101
66
+
67
+ AVS_CODE = {
68
+ "ALL MATCH" => 'Y',
69
+ "SECURITY CODE MATCH ONLY" => 'N',
70
+ "ADDRESS MATCH ONLY" => 'Y',
71
+ "NO DATA MATCHES" => 'N',
72
+ "DATA NOT CHECKED" => 'R',
73
+ "SECURITY CHECKS NOT SUPPORTED" => 'X'
74
+ }
75
+
76
+ CVV_CODE = {
77
+ "ALL MATCH" => 'M',
78
+ "SECURITY CODE MATCH ONLY" => 'M',
79
+ "ADDRESS MATCH ONLY" => 'N',
80
+ "NO DATA MATCHES" => 'N',
81
+ "DATA NOT CHECKED" => 'P',
82
+ "SECURITY CHECKS NOT SUPPORTED" => 'X'
83
+ }
84
+
85
+ # Create a new PslCardGateway
86
+ #
87
+ # The gateway requires that a valid :login be passed in the options hash
88
+ #
89
+ # Paramaters:
90
+ # -options:
91
+ # :login - the PslCard account login (required)
92
+ def initialize(options = {})
93
+ requires!(options, :login)
94
+
95
+ @options = options
96
+ super
97
+ end
98
+
99
+ # Purchase the item straight away
100
+ #
101
+ # Parameters:
102
+ # -money: Money object for the total to be charged
103
+ # -authorization: the PSL cross reference from the previous authorization
104
+ # -options:
105
+ #
106
+ # Returns:
107
+ # -ActiveRecord::Billing::Response object
108
+ #
109
+ def purchase(money, credit_card, options = {})
110
+ post = {}
111
+
112
+ add_amount(post, money, DISPATCH_NOW, options)
113
+ add_credit_card(post, credit_card)
114
+ add_address(post, options)
115
+ add_invoice(post, options)
116
+ add_purchase_details(post)
117
+
118
+ commit(post)
119
+ end
120
+
121
+ # Authorize the transaction
122
+ #
123
+ # Reserves the funds on the customer's credit card, but does not
124
+ # charge the card.
125
+ #
126
+ # This implementation does not authorize the full amount, rather it checks that the full amount
127
+ # is available and only 'reserves' the nominal amount (currently a pound and a penny)
128
+ #
129
+ # Parameters:
130
+ # -money: Money object for the total to be charged
131
+ # -authorization: the PSL cross reference from the previous authorization
132
+ # -options:
133
+ #
134
+ # Returns:
135
+ # -ActiveRecord::Billing::Response object
136
+ #
137
+ def authorize(money, credit_card, options = {})
138
+ post = {}
139
+
140
+ add_amount(post, money, DISPATCH_LATER, options)
141
+ add_credit_card(post, credit_card)
142
+ add_address(post, options)
143
+ add_invoice(post, options)
144
+ add_purchase_details(post)
145
+
146
+ commit(post)
147
+ end
148
+
149
+ # Post an authorization.
150
+ #
151
+ # Captures the funds from an authorized transaction.
152
+ #
153
+ # Parameters:
154
+ # -money: Money object for the total to be charged
155
+ # -authorization: The PSL Cross Reference
156
+ # -options:
157
+ #
158
+ # Returns:
159
+ # -ActiveRecord::Billing::Response object
160
+ #
161
+ def capture(money, authorization, options = {})
162
+ post = {}
163
+
164
+ add_amount(post, money, DISPATCH_NOW, options)
165
+ add_reference(post, authorization)
166
+ add_purchase_details(post)
167
+
168
+ commit(post)
169
+ end
170
+
171
+ private
172
+
173
+ def add_credit_card(post, credit_card)
174
+ post[:QAName] = credit_card.name
175
+ post[:CardNumber] = credit_card.number
176
+ post[:EMVTerminalType] = EMV_TERMINAL_TYPE
177
+ post[:ExpMonth] = credit_card.month
178
+ post[:ExpYear] = credit_card.year
179
+
180
+ if requires_start_date_or_issue_number?(credit_card)
181
+ post[:IssueNumber] = credit_card.issue_number unless credit_card.issue_number.blank?
182
+ post[:StartMonth] = credit_card.start_month unless credit_card.start_month.blank?
183
+ post[:StartYear] = credit_card.start_year unless credit_card.start_year.blank?
184
+ end
185
+
186
+ # CV2 check
187
+ post[:AVSCV2Check] = credit_card.verification_value? ? 'YES' : 'NO'
188
+ post[:CV2] = credit_card.verification_value if credit_card.verification_value?
189
+ end
190
+
191
+ def add_address(post, options)
192
+ address = options[:billing_address] || options[:address]
193
+ return if address.nil?
194
+
195
+ post[:QAAddress] = [:address1, :address2, :city, :state].collect{|a| address[a]}.reject{|a| a.blank?}.join(' ')
196
+ post[:QAPostcode] = address[:zip]
197
+ end
198
+
199
+ def add_invoice(post, options)
200
+ post[:MerchantName] = options[:merchant] || 'Merchant Name' # May use this as the order_id field
201
+ post[:OrderID] = options[:order_id] unless options[:order_id].blank?
202
+ end
203
+
204
+ def add_reference(post, authorization)
205
+ post[:CrossReference] = authorization
206
+ end
207
+
208
+ def add_amount(post, money, dispatch_type, options)
209
+ post[:CurrencyCode] = currency_code(options[:currency] || currency(money))
210
+
211
+ if dispatch_type == DISPATCH_LATER
212
+ post[:amount] = amount(NOMINAL_AMOUNT)
213
+ post[:DispatchLaterAmount] = amount(money)
214
+ else
215
+ post[:amount] = amount(money)
216
+ end
217
+
218
+ post[:Dispatch] = dispatch_type
219
+ end
220
+
221
+ def add_purchase_details(post)
222
+ post[:EchoAmount] = 'YES'
223
+ post[:SCBI] = 'YES' # Return information about the transaction
224
+ post[:MessageType] = MESSAGE_TYPE
225
+ end
226
+
227
+ # Get the currency code for the passed money object
228
+ #
229
+ # The money class stores the currency as an ISO 4217:2001 Alphanumeric,
230
+ # however PSL requires the ISO 4217:2001 Numeric code.
231
+ #
232
+ # Parameters:
233
+ # -money: Money object with the amount and currency
234
+ #
235
+ # Returns:
236
+ # -the ISO 4217:2001 Numberic currency code
237
+ #
238
+ def currency_code(currency)
239
+ CURRENCY_CODES[currency]
240
+ end
241
+
242
+ # Parse the PSL response and create a Response object
243
+ #
244
+ # Parameters:
245
+ # -body: The response string returned from PSL, Formatted:
246
+ # Key=value&key=value...
247
+ #
248
+ # Returns:
249
+ # -a hash with all of the values returned in the PSL response
250
+ #
251
+ def parse(body)
252
+
253
+ fields = {}
254
+ for line in body.split('&')
255
+ key, value = *line.scan( %r{^(\w+)\=(.*)$} ).flatten
256
+ fields[key] = CGI.unescape(value)
257
+ end
258
+ fields.symbolize_keys
259
+ end
260
+
261
+ # Send the passed data to PSL for processing
262
+ #
263
+ # Parameters:
264
+ # -request: The data that is to be sent to PSL
265
+ #
266
+ # Returns:
267
+ # - ActiveMerchant::Billing::Response object
268
+ #
269
+ def commit(request)
270
+ response = parse( ssl_post(URL, post_data(request)) )
271
+
272
+ Response.new(response[:ResponseCode] == APPROVED, response[:Message], response,
273
+ :test => test?,
274
+ :authorization => response[:CrossReference],
275
+ :cvv_result => CVV_CODE[response[:AVSCV2Check]],
276
+ :avs_result => { :code => AVS_CODE[response[:AVSCV2Check]] }
277
+ )
278
+ end
279
+
280
+ # Put the passed data into a format that can be submitted to PSL
281
+ # Key=Value&Key=Value...
282
+ #
283
+ # Any ampersands and equal signs are removed from the data being posted
284
+ # as PSL puts them back into the response string which then cannot be parsed.
285
+ # This is after escaping before sending the request to PSL - this is a work
286
+ # around for the time being
287
+ #
288
+ # Parameters:
289
+ # -post: Hash of all the data to be sent
290
+ #
291
+ # Returns:
292
+ # -String: the data to be sent
293
+ #
294
+ def post_data(post)
295
+ post[:CountryCode] = self.location
296
+ post[:MerchantID] = @options[:login]
297
+ post[:ValidityID] = @options[:password]
298
+ post[:ResponseAction] = RESPONSE_ACTION
299
+
300
+ post.collect { |key, value|
301
+ "#{key}=#{CGI.escape(value.to_s.tr('&=', ' '))}"
302
+ }.join("&")
303
+ end
304
+ end
305
+ end
306
+ end
@@ -0,0 +1,213 @@
1
+ require 'rexml/document'
2
+ require 'digest/md5'
3
+
4
+ module ActiveMerchant #:nodoc:
5
+ module Billing #:nodoc:
6
+ class QuickpayGateway < Gateway
7
+ URL = 'https://secure.quickpay.dk/api'
8
+
9
+ self.default_currency = 'DKK'
10
+ self.money_format = :cents
11
+ self.supported_cardtypes = [ :dankort, :forbrugsforeningen, :visa, :master, :american_express, :diners_club, :jcb, :maestro ]
12
+ self.supported_countries = ['DK']
13
+ self.homepage_url = 'http://quickpay.dk/'
14
+ self.display_name = 'Quickpay'
15
+
16
+ PROTOCOL = 3
17
+
18
+ MD5_CHECK_FIELDS = {
19
+ :authorize => [:protocol, :msgtype, :merchant, :ordernumber, :amount, :currency, :autocapture, :cardnumber, :expirationdate, :cvd, :cardtypelock],
20
+ :capture => [:protocol, :msgtype, :merchant, :amount, :transaction],
21
+ :cancel => [:protocol, :msgtype, :merchant, :transaction],
22
+ :refund => [:protocol, :msgtype, :merchant, :amount, :transaction],
23
+ :subscribe => [:protocol, :msgtype, :merchant, :ordernumber, :cardnumber, :expirationdate, :cvd, :cardtypelock, :description],
24
+ :recurring => [:protocol, :msgtype, :merchant, :ordernumber, :amount, :currency, :autocapture, :transaction],
25
+ :status => [:protocol, :msgtype, :merchant, :transaction],
26
+ :chstatus => [:protocol, :msgtype, :merchant],
27
+ }
28
+
29
+ APPROVED = '000'
30
+
31
+ # The login is the QuickpayId
32
+ # The password is the md5checkword from the Quickpay admin interface
33
+ def initialize(options = {})
34
+ requires!(options, :login, :password)
35
+ @options = options
36
+ super
37
+ end
38
+
39
+ def authorize(money, credit_card_or_reference, options = {})
40
+ post = {}
41
+
42
+ add_amount(post, money, options)
43
+ add_invoice(post, options)
44
+ add_creditcard_or_reference(post, credit_card_or_reference, options)
45
+ add_autocapture(post, false)
46
+
47
+ commit(recurring_or_authorize(credit_card_or_reference), post)
48
+ end
49
+
50
+ def purchase(money, credit_card_or_reference, options = {})
51
+ post = {}
52
+
53
+ add_amount(post, money, options)
54
+ add_creditcard_or_reference(post, credit_card_or_reference, options)
55
+ add_invoice(post, options)
56
+ add_autocapture(post, true)
57
+
58
+ commit(recurring_or_authorize(credit_card_or_reference), post)
59
+ end
60
+
61
+ def capture(money, authorization, options = {})
62
+ post = {}
63
+
64
+ add_reference(post, authorization)
65
+ add_amount_without_currency(post, money)
66
+
67
+ commit(:capture, post)
68
+ end
69
+
70
+ def void(identification, options = {})
71
+ post = {}
72
+
73
+ add_reference(post, identification)
74
+
75
+ commit(:cancel, post)
76
+ end
77
+
78
+ def credit(money, identification, options = {})
79
+ post = {}
80
+
81
+ add_amount_without_currency(post, money)
82
+ add_reference(post, identification)
83
+
84
+ commit(:refund, post)
85
+ end
86
+
87
+ def store(creditcard, options = {})
88
+ post = {}
89
+
90
+ add_creditcard(post, creditcard, options)
91
+ add_invoice(post, options)
92
+ add_description(post, options)
93
+
94
+ commit(:subscribe, post)
95
+ end
96
+
97
+ private
98
+
99
+ def add_amount(post, money, options = {})
100
+ post[:amount] = amount(money)
101
+ post[:currency] = options[:currency] || currency(money)
102
+ end
103
+
104
+ def add_amount_without_currency(post, money, options = {})
105
+ post[:amount] = amount(money)
106
+ end
107
+
108
+ def add_invoice(post, options)
109
+ post[:ordernumber] = format_order_number(options[:order_id])
110
+ end
111
+
112
+ def add_creditcard(post, credit_card, options)
113
+ post[:cardnumber] = credit_card.number
114
+ post[:cvd] = credit_card.verification_value
115
+ post[:expirationdate] = expdate(credit_card)
116
+ post[:cardtypelock] = options[:cardtypelock] unless options[:cardtypelock].blank?
117
+ end
118
+
119
+ def add_reference(post, identification)
120
+ post[:transaction] = identification
121
+ end
122
+
123
+ def add_creditcard_or_reference(post, credit_card_or_reference, options)
124
+ if credit_card_or_reference.is_a?(String)
125
+ add_reference(post, credit_card_or_reference)
126
+ else
127
+ add_creditcard(post, credit_card_or_reference, options)
128
+ end
129
+ end
130
+
131
+ def add_autocapture(post, autocapture)
132
+ post[:autocapture] = autocapture ? 1 : 0
133
+ end
134
+
135
+ def recurring_or_authorize(credit_card_or_reference)
136
+ credit_card_or_reference.is_a?(String) ? :recurring : :authorize
137
+ end
138
+
139
+ def add_description(post, options)
140
+ post[:description] = options[:description]
141
+ end
142
+
143
+ def commit(action, params)
144
+ response = parse(ssl_post(URL, post_data(action, params)))
145
+
146
+ Response.new(successful?(response), message_from(response), response,
147
+ :test => test?,
148
+ :authorization => response[:transaction]
149
+ )
150
+ end
151
+
152
+ def successful?(response)
153
+ response[:qpstat] == APPROVED
154
+ end
155
+
156
+ def parse(data)
157
+ response = {}
158
+
159
+ doc = REXML::Document.new(data)
160
+
161
+ doc.root.elements.each do |element|
162
+ response[element.name.to_sym] = element.text
163
+ end
164
+
165
+ response
166
+ end
167
+
168
+ def message_from(response)
169
+ case response[:qpstat]
170
+ when '008' # Error in request data
171
+ response[:qpstatmsg].to_s
172
+ #.scan(/[A-Z][a-z0-9 \/]+/).to_sentence
173
+ else
174
+ response[:qpstatmsg].to_s
175
+ end
176
+ end
177
+
178
+ def post_data(action, params = {})
179
+ params[:protocol] = PROTOCOL
180
+ params[:msgtype] = action.to_s
181
+ params[:merchant] = @options[:login]
182
+ #params[:testmode] = '1' if test?
183
+ params[:md5check] = generate_check_hash(action, params)
184
+
185
+ params.collect { |key, value| "#{key}=#{CGI.escape(value.to_s)}" }.join("&")
186
+ end
187
+
188
+ def generate_check_hash(action, params)
189
+ string = MD5_CHECK_FIELDS[action].collect do |key|
190
+ params[key]
191
+ end.join('')
192
+
193
+ # Add the md5checkword
194
+ string << @options[:password].to_s
195
+
196
+ Digest::MD5.hexdigest(string)
197
+ end
198
+
199
+ def expdate(credit_card)
200
+ year = format(credit_card.year, :two_digits)
201
+ month = format(credit_card.month, :two_digits)
202
+
203
+ "#{year}#{month}"
204
+ end
205
+
206
+ # Limited to 20 digits max
207
+ def format_order_number(number)
208
+ number.to_s.gsub(/[^\w_]/, '').rjust(4, "0")[0...20]
209
+ end
210
+ end
211
+ end
212
+ end
213
+