seamusabshere-active_merchant 1.4.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (277) hide show
  1. data/CHANGELOG +399 -0
  2. data/CONTRIBUTERS +90 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README +133 -0
  5. data/Rakefile +161 -0
  6. data/active_merchant.gemspec +17 -0
  7. data/gem-public_cert.pem +20 -0
  8. data/generators/gateway/USAGE +5 -0
  9. data/generators/gateway/gateway_generator.rb +61 -0
  10. data/generators/gateway/templates/gateway.rb +77 -0
  11. data/generators/gateway/templates/gateway_test.rb +49 -0
  12. data/generators/gateway/templates/remote_gateway_test.rb +57 -0
  13. data/generators/integration/USAGE +5 -0
  14. data/generators/integration/integration_generator.rb +68 -0
  15. data/generators/integration/templates/helper.rb +34 -0
  16. data/generators/integration/templates/helper_test.rb +54 -0
  17. data/generators/integration/templates/integration.rb +18 -0
  18. data/generators/integration/templates/module_test.rb +9 -0
  19. data/generators/integration/templates/notification.rb +100 -0
  20. data/generators/integration/templates/notification_test.rb +41 -0
  21. data/init.rb +3 -0
  22. data/lib/active_merchant.rb +76 -0
  23. data/lib/active_merchant/billing/avs_result.rb +95 -0
  24. data/lib/active_merchant/billing/base.rb +57 -0
  25. data/lib/active_merchant/billing/check.rb +68 -0
  26. data/lib/active_merchant/billing/credit_card.rb +157 -0
  27. data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
  28. data/lib/active_merchant/billing/credit_card_methods.rb +125 -0
  29. data/lib/active_merchant/billing/cvv_result.rb +38 -0
  30. data/lib/active_merchant/billing/expiry_date.rb +28 -0
  31. data/lib/active_merchant/billing/gateway.rb +162 -0
  32. data/lib/active_merchant/billing/gateways.rb +3 -0
  33. data/lib/active_merchant/billing/gateways/authorize_net.rb +646 -0
  34. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +702 -0
  35. data/lib/active_merchant/billing/gateways/beanstream.rb +102 -0
  36. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +233 -0
  37. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
  38. data/lib/active_merchant/billing/gateways/bogus.rb +86 -0
  39. data/lib/active_merchant/billing/gateways/braintree.rb +222 -0
  40. data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
  41. data/lib/active_merchant/billing/gateways/cyber_source.rb +406 -0
  42. data/lib/active_merchant/billing/gateways/data_cash.rb +595 -0
  43. data/lib/active_merchant/billing/gateways/efsnet.rb +229 -0
  44. data/lib/active_merchant/billing/gateways/eway.rb +272 -0
  45. data/lib/active_merchant/billing/gateways/exact.rb +222 -0
  46. data/lib/active_merchant/billing/gateways/linkpoint.rb +396 -0
  47. data/lib/active_merchant/billing/gateways/modern_payments.rb +36 -0
  48. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +214 -0
  49. data/lib/active_merchant/billing/gateways/moneris.rb +205 -0
  50. data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
  51. data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
  52. data/lib/active_merchant/billing/gateways/pay_junction.rb +392 -0
  53. data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
  54. data/lib/active_merchant/billing/gateways/payflow.rb +236 -0
  55. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +213 -0
  56. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
  57. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  58. data/lib/active_merchant/billing/gateways/payflow_express.rb +138 -0
  59. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
  60. data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
  61. data/lib/active_merchant/billing/gateways/payment_express.rb +242 -0
  62. data/lib/active_merchant/billing/gateways/paypal.rb +108 -0
  63. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +325 -0
  64. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +38 -0
  65. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  66. data/lib/active_merchant/billing/gateways/paypal_express.rb +130 -0
  67. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +20 -0
  68. data/lib/active_merchant/billing/gateways/plugnpay.rb +292 -0
  69. data/lib/active_merchant/billing/gateways/protx.rb +284 -0
  70. data/lib/active_merchant/billing/gateways/psigate.rb +214 -0
  71. data/lib/active_merchant/billing/gateways/psl_card.rb +302 -0
  72. data/lib/active_merchant/billing/gateways/quickpay.rb +183 -0
  73. data/lib/active_merchant/billing/gateways/realex.rb +200 -0
  74. data/lib/active_merchant/billing/gateways/sage.rb +145 -0
  75. data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
  76. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +110 -0
  77. data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
  78. data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
  79. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +157 -0
  80. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
  81. data/lib/active_merchant/billing/gateways/skip_jack.rb +439 -0
  82. data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
  83. data/lib/active_merchant/billing/gateways/trust_commerce.rb +414 -0
  84. data/lib/active_merchant/billing/gateways/usa_epay.rb +194 -0
  85. data/lib/active_merchant/billing/gateways/verifi.rb +228 -0
  86. data/lib/active_merchant/billing/gateways/viaklix.rb +165 -0
  87. data/lib/active_merchant/billing/gateways/wirecard.rb +305 -0
  88. data/lib/active_merchant/billing/integrations.rb +21 -0
  89. data/lib/active_merchant/billing/integrations/action_view_helper.rb +79 -0
  90. data/lib/active_merchant/billing/integrations/bogus.rb +22 -0
  91. data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
  92. data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
  93. data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
  94. data/lib/active_merchant/billing/integrations/chronopay.rb +22 -0
  95. data/lib/active_merchant/billing/integrations/chronopay/helper.rb +81 -0
  96. data/lib/active_merchant/billing/integrations/chronopay/notification.rb +156 -0
  97. data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
  98. data/lib/active_merchant/billing/integrations/gestpay.rb +26 -0
  99. data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
  100. data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
  101. data/lib/active_merchant/billing/integrations/gestpay/notification.rb +83 -0
  102. data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
  103. data/lib/active_merchant/billing/integrations/helper.rb +93 -0
  104. data/lib/active_merchant/billing/integrations/hi_trust.rb +26 -0
  105. data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
  106. data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
  107. data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
  108. data/lib/active_merchant/billing/integrations/nochex.rb +87 -0
  109. data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
  110. data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
  111. data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
  112. data/lib/active_merchant/billing/integrations/notification.rb +62 -0
  113. data/lib/active_merchant/billing/integrations/paypal.rb +40 -0
  114. data/lib/active_merchant/billing/integrations/paypal/helper.rb +118 -0
  115. data/lib/active_merchant/billing/integrations/paypal/notification.rb +154 -0
  116. data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
  117. data/lib/active_merchant/billing/integrations/return.rb +35 -0
  118. data/lib/active_merchant/billing/integrations/two_checkout.rb +23 -0
  119. data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +59 -0
  120. data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +114 -0
  121. data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
  122. data/lib/active_merchant/billing/response.rb +32 -0
  123. data/lib/active_merchant/lib/country.rb +298 -0
  124. data/lib/active_merchant/lib/error.rb +4 -0
  125. data/lib/active_merchant/lib/post_data.rb +22 -0
  126. data/lib/active_merchant/lib/posts_data.rb +89 -0
  127. data/lib/active_merchant/lib/requires_parameters.rb +16 -0
  128. data/lib/active_merchant/lib/utils.rb +18 -0
  129. data/lib/active_merchant/lib/validateable.rb +76 -0
  130. data/lib/certs/cacert.pem +7815 -0
  131. data/lib/support/gateway_support.rb +58 -0
  132. data/lib/tasks/cia.rb +90 -0
  133. data/script/destroy +14 -0
  134. data/script/generate +14 -0
  135. data/test/extra/binding_of_caller.rb +80 -0
  136. data/test/extra/breakpoint.rb +547 -0
  137. data/test/fixtures.yml +301 -0
  138. data/test/remote/gateways/remote_authorize_net_cim_test.rb +459 -0
  139. data/test/remote/gateways/remote_authorize_net_test.rb +145 -0
  140. data/test/remote/gateways/remote_beanstream_interac_test.rb +53 -0
  141. data/test/remote/gateways/remote_beanstream_test.rb +150 -0
  142. data/test/remote/gateways/remote_braintree_test.rb +154 -0
  143. data/test/remote/gateways/remote_card_stream_test.rb +148 -0
  144. data/test/remote/gateways/remote_cyber_source_test.rb +144 -0
  145. data/test/remote/gateways/remote_data_cash_test.rb +357 -0
  146. data/test/remote/gateways/remote_efsnet_test.rb +81 -0
  147. data/test/remote/gateways/remote_eway_test.rb +74 -0
  148. data/test/remote/gateways/remote_exact_test.rb +60 -0
  149. data/test/remote/gateways/remote_linkpoint_test.rb +112 -0
  150. data/test/remote/gateways/remote_modern_payments_cim_test.rb +58 -0
  151. data/test/remote/gateways/remote_modern_payments_test.rb +43 -0
  152. data/test/remote/gateways/remote_moneris_test.rb +82 -0
  153. data/test/remote/gateways/remote_net_registry_test.rb +85 -0
  154. data/test/remote/gateways/remote_netbilling_test.rb +70 -0
  155. data/test/remote/gateways/remote_pay_junction_test.rb +143 -0
  156. data/test/remote/gateways/remote_pay_secure_test.rb +39 -0
  157. data/test/remote/gateways/remote_payflow_express_test.rb +50 -0
  158. data/test/remote/gateways/remote_payflow_test.rb +237 -0
  159. data/test/remote/gateways/remote_payflow_uk_test.rb +173 -0
  160. data/test/remote/gateways/remote_payment_express_test.rb +126 -0
  161. data/test/remote/gateways/remote_paypal_express_test.rb +49 -0
  162. data/test/remote/gateways/remote_paypal_test.rb +167 -0
  163. data/test/remote/gateways/remote_plugnpay_test.rb +72 -0
  164. data/test/remote/gateways/remote_protx_test.rb +184 -0
  165. data/test/remote/gateways/remote_psigate_test.rb +50 -0
  166. data/test/remote/gateways/remote_psl_card_test.rb +106 -0
  167. data/test/remote/gateways/remote_quickpay_test.rb +182 -0
  168. data/test/remote/gateways/remote_realex_test.rb +224 -0
  169. data/test/remote/gateways/remote_sage_bankcard_test.rb +109 -0
  170. data/test/remote/gateways/remote_sage_test.rb +87 -0
  171. data/test/remote/gateways/remote_sage_virtual_check_test.rb +62 -0
  172. data/test/remote/gateways/remote_secure_pay_au_test.rb +40 -0
  173. data/test/remote/gateways/remote_secure_pay_tech_test.rb +37 -0
  174. data/test/remote/gateways/remote_secure_pay_test.rb +28 -0
  175. data/test/remote/gateways/remote_skipjack_test.rb +105 -0
  176. data/test/remote/gateways/remote_trans_first_test.rb +34 -0
  177. data/test/remote/gateways/remote_trust_commerce_test.rb +152 -0
  178. data/test/remote/gateways/remote_usa_epay_test.rb +46 -0
  179. data/test/remote/gateways/remote_verifi_test.rb +107 -0
  180. data/test/remote/gateways/remote_viaklix_test.rb +43 -0
  181. data/test/remote/gateways/remote_wirecard_test.rb +77 -0
  182. data/test/remote/integrations/remote_gestpay_integration_test.rb +37 -0
  183. data/test/remote/integrations/remote_paypal_integration_test.rb +26 -0
  184. data/test/test_helper.rb +191 -0
  185. data/test/unit/avs_result_test.rb +59 -0
  186. data/test/unit/base_test.rb +55 -0
  187. data/test/unit/check_test.rb +88 -0
  188. data/test/unit/country_code_test.rb +33 -0
  189. data/test/unit/country_test.rb +64 -0
  190. data/test/unit/credit_card_formatting_test.rb +19 -0
  191. data/test/unit/credit_card_methods_test.rb +170 -0
  192. data/test/unit/credit_card_test.rb +311 -0
  193. data/test/unit/cvv_result_test.rb +33 -0
  194. data/test/unit/expiry_date_test.rb +21 -0
  195. data/test/unit/gateways/authorize_net_cim_test.rb +638 -0
  196. data/test/unit/gateways/authorize_net_test.rb +291 -0
  197. data/test/unit/gateways/beanstream_interac_test.rb +51 -0
  198. data/test/unit/gateways/beanstream_test.rb +108 -0
  199. data/test/unit/gateways/bogus_test.rb +42 -0
  200. data/test/unit/gateways/braintree_test.rb +116 -0
  201. data/test/unit/gateways/card_stream_test.rb +90 -0
  202. data/test/unit/gateways/cyber_source_test.rb +188 -0
  203. data/test/unit/gateways/data_cash_test.rb +132 -0
  204. data/test/unit/gateways/efsnet_test.rb +123 -0
  205. data/test/unit/gateways/eway_test.rb +118 -0
  206. data/test/unit/gateways/exact_test.rb +156 -0
  207. data/test/unit/gateways/gateway_test.rb +48 -0
  208. data/test/unit/gateways/linkpoint_test.rb +167 -0
  209. data/test/unit/gateways/modern_payments_cim_test.rb +171 -0
  210. data/test/unit/gateways/moneris_test.rb +158 -0
  211. data/test/unit/gateways/net_registry_test.rb +416 -0
  212. data/test/unit/gateways/netbilling_test.rb +54 -0
  213. data/test/unit/gateways/pay_junction_test.rb +123 -0
  214. data/test/unit/gateways/pay_secure_test.rb +71 -0
  215. data/test/unit/gateways/payflow_express_test.rb +173 -0
  216. data/test/unit/gateways/payflow_express_uk_test.rb +14 -0
  217. data/test/unit/gateways/payflow_test.rb +301 -0
  218. data/test/unit/gateways/payflow_uk_test.rb +30 -0
  219. data/test/unit/gateways/payment_express_test.rb +195 -0
  220. data/test/unit/gateways/paypal_express_test.rb +382 -0
  221. data/test/unit/gateways/paypal_test.rb +520 -0
  222. data/test/unit/gateways/plugnpay_test.rb +86 -0
  223. data/test/unit/gateways/protx_test.rb +122 -0
  224. data/test/unit/gateways/psigate_test.rb +169 -0
  225. data/test/unit/gateways/psl_card_test.rb +64 -0
  226. data/test/unit/gateways/quickpay_test.rb +112 -0
  227. data/test/unit/gateways/realex_test.rb +151 -0
  228. data/test/unit/gateways/sage_bankcard_test.rb +162 -0
  229. data/test/unit/gateways/sage_virtual_check_test.rb +71 -0
  230. data/test/unit/gateways/secure_pay_au_test.rb +207 -0
  231. data/test/unit/gateways/secure_pay_tech_test.rb +44 -0
  232. data/test/unit/gateways/secure_pay_test.rb +87 -0
  233. data/test/unit/gateways/skip_jack_test.rb +133 -0
  234. data/test/unit/gateways/trans_first_test.rb +112 -0
  235. data/test/unit/gateways/trust_commerce_test.rb +78 -0
  236. data/test/unit/gateways/usa_epay_test.rb +128 -0
  237. data/test/unit/gateways/verifi_test.rb +96 -0
  238. data/test/unit/gateways/viaklix_test.rb +78 -0
  239. data/test/unit/gateways/wirecard_test.rb +232 -0
  240. data/test/unit/generators/test_gateway_generator.rb +46 -0
  241. data/test/unit/generators/test_generator_helper.rb +20 -0
  242. data/test/unit/generators/test_integration_generator.rb +53 -0
  243. data/test/unit/integrations/action_view_helper_test.rb +50 -0
  244. data/test/unit/integrations/bogus_module_test.rb +20 -0
  245. data/test/unit/integrations/chronopay_module_test.rb +13 -0
  246. data/test/unit/integrations/gestpay_module_test.rb +14 -0
  247. data/test/unit/integrations/helpers/bogus_helper_test.rb +28 -0
  248. data/test/unit/integrations/helpers/chronopay_helper_test.rb +67 -0
  249. data/test/unit/integrations/helpers/gestpay_helper_test.rb +100 -0
  250. data/test/unit/integrations/helpers/hi_trust_helper_test.rb +16 -0
  251. data/test/unit/integrations/helpers/nochex_helper_test.rb +53 -0
  252. data/test/unit/integrations/helpers/paypal_helper_test.rb +162 -0
  253. data/test/unit/integrations/helpers/two_checkout_helper_test.rb +92 -0
  254. data/test/unit/integrations/hi_trust_module_test.rb +13 -0
  255. data/test/unit/integrations/nochex_module_test.rb +13 -0
  256. data/test/unit/integrations/notifications/chronopay_notification_test.rb +66 -0
  257. data/test/unit/integrations/notifications/gestpay_notification_test.rb +60 -0
  258. data/test/unit/integrations/notifications/hi_trust_notification_test.rb +59 -0
  259. data/test/unit/integrations/notifications/nochex_notification_test.rb +51 -0
  260. data/test/unit/integrations/notifications/notification_test.rb +54 -0
  261. data/test/unit/integrations/notifications/paypal_notification_test.rb +85 -0
  262. data/test/unit/integrations/notifications/two_checkout_notification_test.rb +55 -0
  263. data/test/unit/integrations/paypal_module_test.rb +28 -0
  264. data/test/unit/integrations/returns/chronopay_return_test.rb +11 -0
  265. data/test/unit/integrations/returns/gestpay_return_test.rb +10 -0
  266. data/test/unit/integrations/returns/hi_trust_return_test.rb +24 -0
  267. data/test/unit/integrations/returns/nochex_return_test.rb +10 -0
  268. data/test/unit/integrations/returns/paypal_return_test.rb +10 -0
  269. data/test/unit/integrations/returns/return_test.rb +11 -0
  270. data/test/unit/integrations/returns/two_checkout_return_test.rb +24 -0
  271. data/test/unit/integrations/two_checkout_module_test.rb +13 -0
  272. data/test/unit/post_data_test.rb +55 -0
  273. data/test/unit/posts_data_test.rb +100 -0
  274. data/test/unit/response_test.rb +28 -0
  275. data/test/unit/utils_test.rb +7 -0
  276. data/test/unit/validateable_test.rb +60 -0
  277. metadata +454 -0
@@ -0,0 +1,302 @@
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
+
167
+ commit(post)
168
+ end
169
+
170
+ private
171
+
172
+ def add_credit_card(post, credit_card)
173
+ post[:QAName] = credit_card.name
174
+ post[:CardNumber] = credit_card.number
175
+ post[:EMVTerminalType] = EMV_TERMINAL_TYPE
176
+ post[:ExpMonth] = credit_card.month
177
+ post[:ExpYear] = credit_card.year
178
+ post[:IssueNumber] = credit_card.issue_number unless credit_card.issue_number.blank?
179
+ post[:StartMonth] = credit_card.start_month unless credit_card.start_month.blank?
180
+ post[:StartYear] = credit_card.start_year unless credit_card.start_year.blank?
181
+
182
+ # CV2 check
183
+ post[:AVSCV2Check] = credit_card.verification_value? ? 'YES' : 'NO'
184
+ post[:CV2] = credit_card.verification_value if credit_card.verification_value?
185
+ end
186
+
187
+ def add_address(post, options)
188
+ address = options[:billing_address] || options[:address]
189
+ return if address.nil?
190
+
191
+ post[:QAAddress] = [:address1, :address2, :city, :state].collect{|a| address[a]}.reject{|a| a.blank?}.join(' ')
192
+ post[:QAPostcode] = address[:zip]
193
+ end
194
+
195
+ def add_invoice(post, options)
196
+ post[:MerchantName] = options[:merchant] || 'Merchant Name' # May use this as the order_id field
197
+ post[:OrderID] = options[:order_id] unless options[:order_id].blank?
198
+ end
199
+
200
+ def add_reference(post, authorization)
201
+ post[:CrossReference] = authorization
202
+ end
203
+
204
+ def add_amount(post, money, dispatch_type, options)
205
+ post[:CurrencyCode] = currency_code(options[:currency] || currency(money))
206
+
207
+ if dispatch_type == DISPATCH_LATER
208
+ post[:amount] = amount(NOMINAL_AMOUNT)
209
+ post[:DispatchLaterAmount] = amount(money)
210
+ else
211
+ post[:amount] = amount(money)
212
+ end
213
+
214
+ post[:Dispatch] = dispatch_type
215
+ end
216
+
217
+ def add_purchase_details(post)
218
+ post[:EchoAmount] = 'YES'
219
+ post[:SCBI] = 'YES' # Return information about the transaction
220
+ post[:MessageType] = MESSAGE_TYPE
221
+ end
222
+
223
+ # Get the currency code for the passed money object
224
+ #
225
+ # The money class stores the currency as an ISO 4217:2001 Alphanumeric,
226
+ # however PSL requires the ISO 4217:2001 Numeric code.
227
+ #
228
+ # Parameters:
229
+ # -money: Money object with the amount and currency
230
+ #
231
+ # Returns:
232
+ # -the ISO 4217:2001 Numberic currency code
233
+ #
234
+ def currency_code(currency)
235
+ CURRENCY_CODES[currency]
236
+ end
237
+
238
+ # Parse the PSL response and create a Response object
239
+ #
240
+ # Parameters:
241
+ # -body: The response string returned from PSL, Formatted:
242
+ # Key=value&key=value...
243
+ #
244
+ # Returns:
245
+ # -a hash with all of the values returned in the PSL response
246
+ #
247
+ def parse(body)
248
+
249
+ fields = {}
250
+ for line in body.split('&')
251
+ key, value = *line.scan( %r{^(\w+)\=(.*)$} ).flatten
252
+ fields[key] = CGI.unescape(value)
253
+ end
254
+ fields.symbolize_keys
255
+ end
256
+
257
+ # Send the passed data to PSL for processing
258
+ #
259
+ # Parameters:
260
+ # -request: The data that is to be sent to PSL
261
+ #
262
+ # Returns:
263
+ # - ActiveMerchant::Billing::Response object
264
+ #
265
+ def commit(request)
266
+ response = parse( ssl_post(URL, post_data(request)) )
267
+
268
+ Response.new(response[:ResponseCode] == APPROVED, response[:Message], response,
269
+ :test => test?,
270
+ :authorization => response[:CrossReference],
271
+ :cvv_result => CVV_CODE[response[:AVSCV2Check]],
272
+ :avs_result => { :code => AVS_CODE[response[:AVSCV2Check]] }
273
+ )
274
+ end
275
+
276
+ # Put the passed data into a format that can be submitted to PSL
277
+ # Key=Value&Key=Value...
278
+ #
279
+ # Any ampersands and equal signs are removed from the data being posted
280
+ # as PSL puts them back into the response string which then cannot be parsed.
281
+ # This is after escaping before sending the request to PSL - this is a work
282
+ # around for the time being
283
+ #
284
+ # Parameters:
285
+ # -post: Hash of all the data to be sent
286
+ #
287
+ # Returns:
288
+ # -String: the data to be sent
289
+ #
290
+ def post_data(post)
291
+ post[:CountryCode] = self.location
292
+ post[:MerchantID] = @options[:login]
293
+ post[:ValidityID] = @options[:password]
294
+ post[:ResponseAction] = RESPONSE_ACTION
295
+
296
+ post.collect { |key, value|
297
+ "#{key}=#{CGI.escape(value.to_s.tr('&=', ' '))}"
298
+ }.join("&")
299
+ end
300
+ end
301
+ end
302
+ end
@@ -0,0 +1,183 @@
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/transaction.php'
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
+ TRANSACTIONS = {
17
+ :authorization => '1100',
18
+ :capture => '1220',
19
+ :void => '1420',
20
+ :credit => 'credit'
21
+ }
22
+
23
+ POS_CODES = {
24
+ :mail => '100020100110',
25
+ :phone => '100030100110',
26
+ :internet => 'L00500L00130',
27
+ :internet_secure => 'K00500K00130',
28
+ :internet_edankort => 'KM0500R00130',
29
+ :internet_recurring => 'K00540K00130'
30
+ }
31
+
32
+ MD5_CHECK_FIELDS = {
33
+ :authorization => [:msgtype, :cardnumber, :amount, :expirationdate, :posc, :ordernum, :currency, :cvd, :merchant, :authtype, :reference, :transaction],
34
+ :capture => [:msgtype, :amount, :merchant, :transaction],
35
+ :void => [:msgtype, :merchant, :transaction],
36
+ :credit => [:msgtype, :amount, :merchant, :transaction]
37
+ }
38
+
39
+ CURRENCIES = [ 'DKK', 'EUR', 'NOK', 'GBP', 'USD' ]
40
+
41
+ APPROVED = '000'
42
+
43
+ # The login is the QuickpayId
44
+ # The password is the md5checkword from the Quickpay admin interface
45
+ def initialize(options = {})
46
+ requires!(options, :login, :password)
47
+ @options = options
48
+ super
49
+ end
50
+
51
+ def authorize(money, creditcard, options = {})
52
+ post = {}
53
+
54
+ add_amount(post, money, options)
55
+ add_creditcard(post, creditcard)
56
+ add_invoice(post, options)
57
+
58
+ commit(:authorization, post)
59
+ end
60
+
61
+ def purchase(money, creditcard, options = {})
62
+ auth = authorize(money, creditcard, options)
63
+ auth.success? ? capture(money, auth.authorization) : auth
64
+ end
65
+
66
+ def capture(money, authorization, options = {})
67
+ post = {}
68
+
69
+ add_reference(post, authorization)
70
+ add_amount(post, money)
71
+
72
+ commit(:capture, post)
73
+ end
74
+
75
+ def void(identification, options = {})
76
+ post = {}
77
+
78
+ add_reference(post, identification)
79
+
80
+ commit(:void, post)
81
+ end
82
+
83
+ def credit(money, identification, options = {})
84
+ post = {}
85
+
86
+ add_amount(post, money)
87
+ add_reference(post, identification)
88
+
89
+ commit(:credit, post)
90
+ end
91
+
92
+ private
93
+
94
+ def add_amount(post, money, options = {})
95
+ post[:amount] = amount(money)
96
+ post[:currency] = options[:currency] || currency(money)
97
+ end
98
+
99
+ def add_invoice(post, options)
100
+ post[:ordernum] = format_order_number(options[:order_id])
101
+ post[:posc] = POS_CODES[:internet_secure]
102
+ end
103
+
104
+ def add_creditcard(post, credit_card)
105
+ post[:cardnumber] = credit_card.number
106
+ post[:cvd] = credit_card.verification_value
107
+ post[:expirationdate] = expdate(credit_card)
108
+ end
109
+
110
+ def add_reference(post, identification)
111
+ post[:transaction] = identification
112
+ end
113
+
114
+ def commit(action, params)
115
+ response = parse(ssl_post(URL, post_data(action, params)))
116
+
117
+ Response.new(successful?(response), message_from(response), response,
118
+ :test => test?,
119
+ :authorization => response[:transaction]
120
+ )
121
+ end
122
+
123
+ def successful?(response)
124
+ response[:qpstat] == APPROVED
125
+ end
126
+
127
+ def parse(data)
128
+ response = {}
129
+
130
+ doc = REXML::Document.new(data)
131
+
132
+ doc.root.attributes.each do |name, value|
133
+ response[name.to_sym] = value
134
+ end
135
+
136
+ response
137
+ end
138
+
139
+ def message_from(response)
140
+ case response[:qpstat]
141
+ when '008'
142
+ response[:qpstatmsg].to_s.scan(/[A-Z][a-z0-9 \/]+/).to_sentence
143
+ else
144
+ response[:qpstatmsg].to_s
145
+ end
146
+ end
147
+
148
+ def post_data(action, params = {})
149
+ params[:merchant] = @options[:login]
150
+ params[:msgtype] = TRANSACTIONS[action]
151
+
152
+ check_field = (action == :authorization) ? :md5checkV2 : :md5check
153
+ params[check_field] = generate_check_hash(action, params)
154
+
155
+ request = params.collect { |key, value| "#{key}=#{CGI.escape(value.to_s)}" }.join("&")
156
+ request
157
+ end
158
+
159
+ def generate_check_hash(action, params)
160
+ string = MD5_CHECK_FIELDS[action].collect do |key|
161
+ params[key]
162
+ end.join('')
163
+
164
+ # Add the md5checkword
165
+ string << @options[:password].to_s
166
+
167
+ Digest::MD5.hexdigest(string)
168
+ end
169
+
170
+ def expdate(credit_card)
171
+ year = format(credit_card.year, :two_digits)
172
+ month = format(credit_card.month, :two_digits)
173
+
174
+ "#{year}#{month}"
175
+ end
176
+
177
+ def format_order_number(number)
178
+ number.to_s.gsub(/[^0-9]/, '').rjust(4, "0")
179
+ end
180
+ end
181
+ end
182
+ end
183
+