merb_merchant 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (273) hide show
  1. data/CHANGELOG +421 -0
  2. data/CONTRIBUTERS +90 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README +131 -0
  5. data/Rakefile +129 -0
  6. data/init.rb +3 -0
  7. data/lib/certs/cacert.pem +7815 -0
  8. data/lib/core_ext/delegating_attributes.rb +76 -0
  9. data/lib/core_ext/hash_ext.rb +35 -0
  10. data/lib/core_ext/inheritable_attributes.rb +145 -0
  11. data/lib/core_ext/time_dsl.rb +59 -0
  12. data/lib/merb_merchant.rb +96 -0
  13. data/lib/merb_merchant/billing/avs_result.rb +95 -0
  14. data/lib/merb_merchant/billing/base.rb +71 -0
  15. data/lib/merb_merchant/billing/check.rb +68 -0
  16. data/lib/merb_merchant/billing/credit_card.rb +157 -0
  17. data/lib/merb_merchant/billing/credit_card_formatting.rb +21 -0
  18. data/lib/merb_merchant/billing/credit_card_methods.rb +125 -0
  19. data/lib/merb_merchant/billing/cvv_result.rb +38 -0
  20. data/lib/merb_merchant/billing/expiry_date.rb +28 -0
  21. data/lib/merb_merchant/billing/gateway.rb +162 -0
  22. data/lib/merb_merchant/billing/gateways.rb +3 -0
  23. data/lib/merb_merchant/billing/gateways/authorize_net.rb +646 -0
  24. data/lib/merb_merchant/billing/gateways/authorize_net_cim.rb +702 -0
  25. data/lib/merb_merchant/billing/gateways/beanstream.rb +102 -0
  26. data/lib/merb_merchant/billing/gateways/beanstream/beanstream_core.rb +233 -0
  27. data/lib/merb_merchant/billing/gateways/beanstream_interac.rb +54 -0
  28. data/lib/merb_merchant/billing/gateways/bogus.rb +98 -0
  29. data/lib/merb_merchant/billing/gateways/braintree.rb +222 -0
  30. data/lib/merb_merchant/billing/gateways/card_stream.rb +229 -0
  31. data/lib/merb_merchant/billing/gateways/cyber_source.rb +406 -0
  32. data/lib/merb_merchant/billing/gateways/data_cash.rb +595 -0
  33. data/lib/merb_merchant/billing/gateways/efsnet.rb +229 -0
  34. data/lib/merb_merchant/billing/gateways/eway.rb +272 -0
  35. data/lib/merb_merchant/billing/gateways/exact.rb +222 -0
  36. data/lib/merb_merchant/billing/gateways/linkpoint.rb +396 -0
  37. data/lib/merb_merchant/billing/gateways/modern_payments.rb +36 -0
  38. data/lib/merb_merchant/billing/gateways/modern_payments_cim.rb +214 -0
  39. data/lib/merb_merchant/billing/gateways/moneris.rb +205 -0
  40. data/lib/merb_merchant/billing/gateways/net_registry.rb +189 -0
  41. data/lib/merb_merchant/billing/gateways/netbilling.rb +168 -0
  42. data/lib/merb_merchant/billing/gateways/pay_junction.rb +392 -0
  43. data/lib/merb_merchant/billing/gateways/pay_secure.rb +120 -0
  44. data/lib/merb_merchant/billing/gateways/payflow.rb +236 -0
  45. data/lib/merb_merchant/billing/gateways/payflow/payflow_common_api.rb +207 -0
  46. data/lib/merb_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
  47. data/lib/merb_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  48. data/lib/merb_merchant/billing/gateways/payflow_express.rb +138 -0
  49. data/lib/merb_merchant/billing/gateways/payflow_express_uk.rb +15 -0
  50. data/lib/merb_merchant/billing/gateways/payflow_uk.rb +21 -0
  51. data/lib/merb_merchant/billing/gateways/payment_express.rb +241 -0
  52. data/lib/merb_merchant/billing/gateways/paypal.rb +108 -0
  53. data/lib/merb_merchant/billing/gateways/paypal/paypal_common_api.rb +325 -0
  54. data/lib/merb_merchant/billing/gateways/paypal/paypal_express_response.rb +38 -0
  55. data/lib/merb_merchant/billing/gateways/paypal_ca.rb +13 -0
  56. data/lib/merb_merchant/billing/gateways/paypal_express.rb +130 -0
  57. data/lib/merb_merchant/billing/gateways/paypal_express_common.rb +20 -0
  58. data/lib/merb_merchant/billing/gateways/plugnpay.rb +292 -0
  59. data/lib/merb_merchant/billing/gateways/protx.rb +284 -0
  60. data/lib/merb_merchant/billing/gateways/psigate.rb +214 -0
  61. data/lib/merb_merchant/billing/gateways/psl_card.rb +306 -0
  62. data/lib/merb_merchant/billing/gateways/quickpay.rb +213 -0
  63. data/lib/merb_merchant/billing/gateways/realex.rb +200 -0
  64. data/lib/merb_merchant/billing/gateways/sage.rb +146 -0
  65. data/lib/merb_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
  66. data/lib/merb_merchant/billing/gateways/sage/sage_core.rb +110 -0
  67. data/lib/merb_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
  68. data/lib/merb_merchant/billing/gateways/secure_pay.rb +31 -0
  69. data/lib/merb_merchant/billing/gateways/secure_pay_au.rb +157 -0
  70. data/lib/merb_merchant/billing/gateways/secure_pay_tech.rb +113 -0
  71. data/lib/merb_merchant/billing/gateways/skip_jack.rb +439 -0
  72. data/lib/merb_merchant/billing/gateways/trans_first.rb +127 -0
  73. data/lib/merb_merchant/billing/gateways/trust_commerce.rb +418 -0
  74. data/lib/merb_merchant/billing/gateways/usa_epay.rb +194 -0
  75. data/lib/merb_merchant/billing/gateways/verifi.rb +228 -0
  76. data/lib/merb_merchant/billing/gateways/viaklix.rb +165 -0
  77. data/lib/merb_merchant/billing/gateways/wirecard.rb +305 -0
  78. data/lib/merb_merchant/billing/integrations.rb +22 -0
  79. data/lib/merb_merchant/billing/integrations/action_view_helper.rb +79 -0
  80. data/lib/merb_merchant/billing/integrations/bogus.rb +29 -0
  81. data/lib/merb_merchant/billing/integrations/bogus/helper.rb +17 -0
  82. data/lib/merb_merchant/billing/integrations/bogus/notification.rb +11 -0
  83. data/lib/merb_merchant/billing/integrations/bogus/return.rb +10 -0
  84. data/lib/merb_merchant/billing/integrations/chronopay.rb +29 -0
  85. data/lib/merb_merchant/billing/integrations/chronopay/helper.rb +81 -0
  86. data/lib/merb_merchant/billing/integrations/chronopay/notification.rb +156 -0
  87. data/lib/merb_merchant/billing/integrations/chronopay/return.rb +10 -0
  88. data/lib/merb_merchant/billing/integrations/gestpay.rb +32 -0
  89. data/lib/merb_merchant/billing/integrations/gestpay/common.rb +42 -0
  90. data/lib/merb_merchant/billing/integrations/gestpay/helper.rb +70 -0
  91. data/lib/merb_merchant/billing/integrations/gestpay/notification.rb +83 -0
  92. data/lib/merb_merchant/billing/integrations/gestpay/return.rb +10 -0
  93. data/lib/merb_merchant/billing/integrations/helper.rb +93 -0
  94. data/lib/merb_merchant/billing/integrations/hi_trust.rb +26 -0
  95. data/lib/merb_merchant/billing/integrations/hi_trust/helper.rb +58 -0
  96. data/lib/merb_merchant/billing/integrations/hi_trust/notification.rb +59 -0
  97. data/lib/merb_merchant/billing/integrations/hi_trust/return.rb +67 -0
  98. data/lib/merb_merchant/billing/integrations/nochex.rb +101 -0
  99. data/lib/merb_merchant/billing/integrations/nochex/helper.rb +68 -0
  100. data/lib/merb_merchant/billing/integrations/nochex/notification.rb +94 -0
  101. data/lib/merb_merchant/billing/integrations/nochex/return.rb +10 -0
  102. data/lib/merb_merchant/billing/integrations/notification.rb +62 -0
  103. data/lib/merb_merchant/billing/integrations/paypal.rb +54 -0
  104. data/lib/merb_merchant/billing/integrations/paypal/helper.rb +118 -0
  105. data/lib/merb_merchant/billing/integrations/paypal/notification.rb +154 -0
  106. data/lib/merb_merchant/billing/integrations/paypal/return.rb +10 -0
  107. data/lib/merb_merchant/billing/integrations/quickpay.rb +25 -0
  108. data/lib/merb_merchant/billing/integrations/quickpay/helper.rb +72 -0
  109. data/lib/merb_merchant/billing/integrations/quickpay/notification.rb +74 -0
  110. data/lib/merb_merchant/billing/integrations/return.rb +35 -0
  111. data/lib/merb_merchant/billing/integrations/two_checkout.rb +30 -0
  112. data/lib/merb_merchant/billing/integrations/two_checkout/helper.rb +59 -0
  113. data/lib/merb_merchant/billing/integrations/two_checkout/notification.rb +114 -0
  114. data/lib/merb_merchant/billing/integrations/two_checkout/return.rb +17 -0
  115. data/lib/merb_merchant/billing/response.rb +32 -0
  116. data/lib/merb_merchant/lib/country.rb +298 -0
  117. data/lib/merb_merchant/lib/error.rb +4 -0
  118. data/lib/merb_merchant/lib/inflector.rb +69 -0
  119. data/lib/merb_merchant/lib/post_data.rb +22 -0
  120. data/lib/merb_merchant/lib/posts_data.rb +109 -0
  121. data/lib/merb_merchant/lib/requires_parameters.rb +16 -0
  122. data/lib/merb_merchant/lib/utils.rb +18 -0
  123. data/lib/merb_merchant/lib/validateable.rb +76 -0
  124. data/lib/support/gateway_support.rb +57 -0
  125. data/lib/tasks/cia.rb +90 -0
  126. data/script/destroy +14 -0
  127. data/script/generate +14 -0
  128. data/test/extra/binding_of_caller.rb +80 -0
  129. data/test/extra/breakpoint.rb +547 -0
  130. data/test/fixtures.yml +317 -0
  131. data/test/remote/gateways/remote_authorize_net_cim_test.rb +459 -0
  132. data/test/remote/gateways/remote_authorize_net_test.rb +145 -0
  133. data/test/remote/gateways/remote_beanstream_interac_test.rb +53 -0
  134. data/test/remote/gateways/remote_beanstream_test.rb +150 -0
  135. data/test/remote/gateways/remote_braintree_test.rb +154 -0
  136. data/test/remote/gateways/remote_card_stream_test.rb +148 -0
  137. data/test/remote/gateways/remote_cyber_source_test.rb +144 -0
  138. data/test/remote/gateways/remote_data_cash_test.rb +357 -0
  139. data/test/remote/gateways/remote_efsnet_test.rb +81 -0
  140. data/test/remote/gateways/remote_eway_test.rb +74 -0
  141. data/test/remote/gateways/remote_exact_test.rb +60 -0
  142. data/test/remote/gateways/remote_linkpoint_test.rb +112 -0
  143. data/test/remote/gateways/remote_modern_payments_cim_test.rb +58 -0
  144. data/test/remote/gateways/remote_modern_payments_test.rb +43 -0
  145. data/test/remote/gateways/remote_moneris_test.rb +82 -0
  146. data/test/remote/gateways/remote_net_registry_test.rb +85 -0
  147. data/test/remote/gateways/remote_netbilling_test.rb +70 -0
  148. data/test/remote/gateways/remote_pay_junction_test.rb +143 -0
  149. data/test/remote/gateways/remote_pay_secure_test.rb +39 -0
  150. data/test/remote/gateways/remote_payflow_express_test.rb +50 -0
  151. data/test/remote/gateways/remote_payflow_test.rb +237 -0
  152. data/test/remote/gateways/remote_payflow_uk_test.rb +173 -0
  153. data/test/remote/gateways/remote_payment_express_test.rb +126 -0
  154. data/test/remote/gateways/remote_paypal_express_test.rb +49 -0
  155. data/test/remote/gateways/remote_paypal_test.rb +167 -0
  156. data/test/remote/gateways/remote_plugnpay_test.rb +72 -0
  157. data/test/remote/gateways/remote_protx_test.rb +184 -0
  158. data/test/remote/gateways/remote_psigate_test.rb +50 -0
  159. data/test/remote/gateways/remote_psl_card_test.rb +125 -0
  160. data/test/remote/gateways/remote_quickpay_test.rb +190 -0
  161. data/test/remote/gateways/remote_realex_test.rb +224 -0
  162. data/test/remote/gateways/remote_sage_bankcard_test.rb +109 -0
  163. data/test/remote/gateways/remote_sage_test.rb +87 -0
  164. data/test/remote/gateways/remote_sage_virtual_check_test.rb +62 -0
  165. data/test/remote/gateways/remote_secure_pay_au_test.rb +40 -0
  166. data/test/remote/gateways/remote_secure_pay_tech_test.rb +37 -0
  167. data/test/remote/gateways/remote_secure_pay_test.rb +28 -0
  168. data/test/remote/gateways/remote_skipjack_test.rb +105 -0
  169. data/test/remote/gateways/remote_trans_first_test.rb +34 -0
  170. data/test/remote/gateways/remote_trust_commerce_test.rb +152 -0
  171. data/test/remote/gateways/remote_usa_epay_test.rb +46 -0
  172. data/test/remote/gateways/remote_verifi_test.rb +107 -0
  173. data/test/remote/gateways/remote_viaklix_test.rb +43 -0
  174. data/test/remote/gateways/remote_wirecard_test.rb +77 -0
  175. data/test/remote/integrations/remote_gestpay_integration_test.rb +37 -0
  176. data/test/remote/integrations/remote_paypal_integration_test.rb +26 -0
  177. data/test/test_helper.rb +208 -0
  178. data/test/unit/avs_result_test.rb +59 -0
  179. data/test/unit/base_test.rb +55 -0
  180. data/test/unit/check_test.rb +88 -0
  181. data/test/unit/country_code_test.rb +33 -0
  182. data/test/unit/country_test.rb +64 -0
  183. data/test/unit/credit_card_formatting_test.rb +19 -0
  184. data/test/unit/credit_card_methods_test.rb +170 -0
  185. data/test/unit/credit_card_test.rb +311 -0
  186. data/test/unit/cvv_result_test.rb +33 -0
  187. data/test/unit/expiry_date_test.rb +21 -0
  188. data/test/unit/gateways/authorize_net_cim_test.rb +638 -0
  189. data/test/unit/gateways/authorize_net_test.rb +290 -0
  190. data/test/unit/gateways/beanstream_interac_test.rb +51 -0
  191. data/test/unit/gateways/beanstream_test.rb +108 -0
  192. data/test/unit/gateways/bogus_test.rb +46 -0
  193. data/test/unit/gateways/braintree_test.rb +116 -0
  194. data/test/unit/gateways/card_stream_test.rb +91 -0
  195. data/test/unit/gateways/cyber_source_test.rb +188 -0
  196. data/test/unit/gateways/data_cash_test.rb +132 -0
  197. data/test/unit/gateways/efsnet_test.rb +124 -0
  198. data/test/unit/gateways/eway_test.rb +118 -0
  199. data/test/unit/gateways/exact_test.rb +156 -0
  200. data/test/unit/gateways/gateway_test.rb +48 -0
  201. data/test/unit/gateways/linkpoint_test.rb +167 -0
  202. data/test/unit/gateways/modern_payments_cim_test.rb +171 -0
  203. data/test/unit/gateways/moneris_test.rb +158 -0
  204. data/test/unit/gateways/net_registry_test.rb +416 -0
  205. data/test/unit/gateways/netbilling_test.rb +54 -0
  206. data/test/unit/gateways/pay_junction_test.rb +123 -0
  207. data/test/unit/gateways/pay_secure_test.rb +71 -0
  208. data/test/unit/gateways/payflow_express_test.rb +173 -0
  209. data/test/unit/gateways/payflow_express_uk_test.rb +14 -0
  210. data/test/unit/gateways/payflow_test.rb +305 -0
  211. data/test/unit/gateways/payflow_uk_test.rb +30 -0
  212. data/test/unit/gateways/payment_express_test.rb +195 -0
  213. data/test/unit/gateways/paypal_express_test.rb +382 -0
  214. data/test/unit/gateways/paypal_test.rb +520 -0
  215. data/test/unit/gateways/plugnpay_test.rb +86 -0
  216. data/test/unit/gateways/protx_test.rb +122 -0
  217. data/test/unit/gateways/psigate_test.rb +169 -0
  218. data/test/unit/gateways/psl_card_test.rb +64 -0
  219. data/test/unit/gateways/quickpay_test.rb +112 -0
  220. data/test/unit/gateways/realex_test.rb +151 -0
  221. data/test/unit/gateways/sage_bankcard_test.rb +162 -0
  222. data/test/unit/gateways/sage_virtual_check_test.rb +71 -0
  223. data/test/unit/gateways/secure_pay_au_test.rb +207 -0
  224. data/test/unit/gateways/secure_pay_tech_test.rb +44 -0
  225. data/test/unit/gateways/secure_pay_test.rb +87 -0
  226. data/test/unit/gateways/skip_jack_test.rb +133 -0
  227. data/test/unit/gateways/trans_first_test.rb +112 -0
  228. data/test/unit/gateways/trust_commerce_test.rb +90 -0
  229. data/test/unit/gateways/usa_epay_test.rb +128 -0
  230. data/test/unit/gateways/verifi_test.rb +96 -0
  231. data/test/unit/gateways/viaklix_test.rb +78 -0
  232. data/test/unit/gateways/wirecard_test.rb +232 -0
  233. data/test/unit/generators/test_gateway_generator.rb +46 -0
  234. data/test/unit/generators/test_generator_helper.rb +20 -0
  235. data/test/unit/generators/test_integration_generator.rb +53 -0
  236. data/test/unit/integrations/action_view_helper_test.rb +50 -0
  237. data/test/unit/integrations/bogus_module_test.rb +20 -0
  238. data/test/unit/integrations/chronopay_module_test.rb +13 -0
  239. data/test/unit/integrations/gestpay_module_test.rb +14 -0
  240. data/test/unit/integrations/helpers/bogus_helper_test.rb +28 -0
  241. data/test/unit/integrations/helpers/chronopay_helper_test.rb +67 -0
  242. data/test/unit/integrations/helpers/gestpay_helper_test.rb +100 -0
  243. data/test/unit/integrations/helpers/hi_trust_helper_test.rb +16 -0
  244. data/test/unit/integrations/helpers/nochex_helper_test.rb +53 -0
  245. data/test/unit/integrations/helpers/paypal_helper_test.rb +162 -0
  246. data/test/unit/integrations/helpers/quickpay_helper_test.rb +40 -0
  247. data/test/unit/integrations/helpers/two_checkout_helper_test.rb +92 -0
  248. data/test/unit/integrations/hi_trust_module_test.rb +13 -0
  249. data/test/unit/integrations/nochex_module_test.rb +13 -0
  250. data/test/unit/integrations/notifications/chronopay_notification_test.rb +66 -0
  251. data/test/unit/integrations/notifications/gestpay_notification_test.rb +60 -0
  252. data/test/unit/integrations/notifications/hi_trust_notification_test.rb +59 -0
  253. data/test/unit/integrations/notifications/nochex_notification_test.rb +51 -0
  254. data/test/unit/integrations/notifications/notification_test.rb +54 -0
  255. data/test/unit/integrations/notifications/paypal_notification_test.rb +85 -0
  256. data/test/unit/integrations/notifications/quickpay_notification_test.rb +69 -0
  257. data/test/unit/integrations/notifications/two_checkout_notification_test.rb +55 -0
  258. data/test/unit/integrations/paypal_module_test.rb +28 -0
  259. data/test/unit/integrations/quickpay_module_test.rb +9 -0
  260. data/test/unit/integrations/returns/chronopay_return_test.rb +11 -0
  261. data/test/unit/integrations/returns/gestpay_return_test.rb +10 -0
  262. data/test/unit/integrations/returns/hi_trust_return_test.rb +24 -0
  263. data/test/unit/integrations/returns/nochex_return_test.rb +10 -0
  264. data/test/unit/integrations/returns/paypal_return_test.rb +10 -0
  265. data/test/unit/integrations/returns/return_test.rb +11 -0
  266. data/test/unit/integrations/returns/two_checkout_return_test.rb +24 -0
  267. data/test/unit/integrations/two_checkout_module_test.rb +13 -0
  268. data/test/unit/post_data_test.rb +55 -0
  269. data/test/unit/posts_data_test.rb +100 -0
  270. data/test/unit/response_test.rb +28 -0
  271. data/test/unit/utils_test.rb +7 -0
  272. data/test/unit/validateable_test.rb +60 -0
  273. metadata +379 -0
@@ -0,0 +1,97 @@
1
+ require File.dirname(__FILE__) + '/sage_core'
2
+
3
+ module MerbMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ class SageVirtualCheckGateway < Gateway #:nodoc:
6
+ include SageCore
7
+ self.url = 'https://www.sagepayments.net/cgi-bin/eftVirtualCheck.dll?transaction'
8
+ self.source = 'virtual_check'
9
+
10
+ def purchase(money, credit_card, options = {})
11
+ post = {}
12
+ add_check(post, credit_card)
13
+ add_check_customer_data(post, options)
14
+ add_transaction_data(post, money, options)
15
+ commit(:purchase, post)
16
+ end
17
+
18
+ def void(reference, options = {})
19
+ post = {}
20
+ add_reference(post, reference)
21
+ commit(:void, post)
22
+ end
23
+
24
+ def credit(money, credit_card, options = {})
25
+ post = {}
26
+ add_check(post, credit_card)
27
+ add_check_customer_data(post, options)
28
+ add_transaction_data(post, money, options)
29
+ commit(:credit, post)
30
+ end
31
+
32
+ private
33
+ def add_check(post, check)
34
+ post[:C_first_name] = check.first_name
35
+ post[:C_last_name] = check.last_name
36
+ post[:C_rte] = check.routing_number
37
+ post[:C_acct] = check.account_number
38
+ post[:C_check_number] = check.number
39
+ post[:C_acct_type] = account_type(check)
40
+ end
41
+
42
+ def add_check_customer_data(post, options)
43
+ # Required  Customer Type – (NACHA Transaction Class)
44
+ # CCD for Commercial, Merchant Initiated
45
+ # PPD for Personal, Merchant Initiated
46
+ # WEB for Internet, Consumer Initiated
47
+ # RCK for Returned Checks
48
+ # ARC for Account Receivable Entry
49
+ # TEL for TelephoneInitiated
50
+ post[:C_customer_type] = "WEB"
51
+
52
+ # Optional  10  Digit Originator  ID – Assigned  By for  each transaction  class  or  business  purpose. If  not provided, the default Originator ID for the specific  Customer Type will be applied. 
53
+ post[:C_originator_id] = options[:originator_id]
54
+
55
+ # Optional  Transaction Addenda
56
+ post[:T_addenda] = options[:addenda]
57
+
58
+ # Required  Check  Writer  Social  Security  Number  (  Numbers Only, No Dashes ) 
59
+ post[:C_ssn] = options[:ssn].to_s.gsub(/[^\d]/, '')
60
+
61
+ post[:C_dl_state_code] = options[:drivers_license_state]
62
+ post[:C_dl_number] = options[:drivers_license_number]
63
+ post[:C_dob] = format_birth_date(options[:date_of_birth])
64
+ end
65
+
66
+ def format_birth_date(date)
67
+ date.respond_to?(:strftime) ? date.strftime("%m/%d/%Y") : date
68
+ end
69
+
70
+ # DDA for Checking
71
+ # SAV for Savings 
72
+ def account_type(check)
73
+ case check.account_type
74
+ when 'checking' then 'DDA'
75
+ when 'savings' then 'SAV'
76
+ else raise ArgumentError, "Unknown account type #{check.account_type}"
77
+ end
78
+ end
79
+
80
+ def parse(data)
81
+ response = {}
82
+ response[:success] = data[1,1]
83
+ response[:code] = data[2,6].strip
84
+ response[:message] = data[8,32].strip
85
+ response[:risk] = data[40, 2]
86
+ response[:reference] = data[42, 10]
87
+
88
+ extra_data = data[53...-1].split("\034")
89
+ response[:order_number] = extra_data[0]
90
+ response[:authentication_indicator] = extra_data[1]
91
+ response[:authentication_disclosure] = extra_data[2]
92
+ response
93
+ end
94
+ end
95
+ end
96
+ end
97
+
@@ -0,0 +1,31 @@
1
+ require File.dirname(__FILE__) + '/authorize_net'
2
+
3
+ module MerbMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ class SecurePayGateway < AuthorizeNetGateway
6
+ self.live_url = self.test_url = 'https://www.securepay.com/AuthSpayAdapter/process.aspx'
7
+
8
+ self.homepage_url = 'http://www.securepay.com/'
9
+ self.display_name = 'SecurePay'
10
+
11
+ # Limit support to purchase() for the time being
12
+ # JRuby chokes here
13
+ # undef_method :authorize, :capture, :void, :credit
14
+
15
+ undef_method :authorize
16
+ undef_method :capture
17
+ undef_method :void
18
+ undef_method :credit
19
+
20
+ def test?
21
+ Base.gateway_mode == :test
22
+ end
23
+
24
+ private
25
+ def split(response)
26
+ response.split('%')
27
+ end
28
+ end
29
+ end
30
+ end
31
+
@@ -0,0 +1,157 @@
1
+ require 'rexml/document'
2
+
3
+ module MerbMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ class SecurePayAuGateway < Gateway
6
+ API_VERSION = 'xml-4.2'
7
+
8
+ TEST_URL = 'https://www.securepay.com.au/test/payment'
9
+ LIVE_URL = 'https://www.securepay.com.au/xmlapi/payment'
10
+
11
+ self.supported_countries = ['AU']
12
+ self.supported_cardtypes = [:visa, :master, :american_express, :diners_club, :jcb]
13
+
14
+ # The homepage URL of the gateway
15
+ self.homepage_url = 'http://securepay.com.au'
16
+
17
+ # The name of the gateway
18
+ self.display_name = 'SecurePay'
19
+
20
+ class_inheritable_accessor :request_timeout
21
+ self.request_timeout = 60
22
+
23
+ self.money_format = :cents
24
+ self.default_currency = 'AUD'
25
+
26
+ # 0 Standard Payment
27
+ # 4 Refund
28
+ # 6 Client Reversal (Void)
29
+ # 10 Preauthorise
30
+ # 11 Preauth Complete (Advice)
31
+ TRANSACTIONS = {
32
+ :purchase => 0,
33
+ :authorization => 10,
34
+ :capture => 11,
35
+ :void => 6,
36
+ :credit => 4
37
+ }
38
+
39
+ SUCCESS_CODES = [ '00', '08', '11', '16', '77' ]
40
+
41
+ def initialize(options = {})
42
+ requires!(options, :login, :password)
43
+ @options = options
44
+ super
45
+ end
46
+
47
+ def test?
48
+ @options[:test] || super
49
+ end
50
+
51
+ def purchase(money, credit_card, options = {})
52
+ commit :purchase, build_purchase_request(money, credit_card, options)
53
+ end
54
+
55
+ private
56
+
57
+ def build_purchase_request(money, credit_card, options)
58
+ xml = Builder::XmlMarkup.new
59
+
60
+ xml.tag! 'amount', amount(money)
61
+ xml.tag! 'currency', options[:currency] || currency(money)
62
+ xml.tag! 'purchaseOrderNo', options[:order_id].to_s.gsub(/[ ']/, '')
63
+
64
+ xml.tag! 'CreditCardInfo' do
65
+ xml.tag! 'cardNumber', credit_card.number
66
+ xml.tag! 'expiryDate', expdate(credit_card)
67
+ xml.tag! 'cvv', credit_card.verification_value if credit_card.verification_value?
68
+ end
69
+
70
+ xml.target!
71
+ end
72
+
73
+ def build_request(action, body)
74
+ xml = Builder::XmlMarkup.new
75
+ xml.instruct!
76
+ xml.tag! 'SecurePayMessage' do
77
+ xml.tag! 'MessageInfo' do
78
+ xml.tag! 'messageID', Utils.generate_unique_id.slice(0, 30)
79
+ xml.tag! 'messageTimestamp', generate_timestamp
80
+ xml.tag! 'timeoutValue', request_timeout
81
+ xml.tag! 'apiVersion', API_VERSION
82
+ end
83
+
84
+ xml.tag! 'MerchantInfo' do
85
+ xml.tag! 'merchantID', @options[:login]
86
+ xml.tag! 'password', @options[:password]
87
+ end
88
+
89
+ xml.tag! 'RequestType', 'Payment'
90
+ xml.tag! 'Payment' do
91
+ xml.tag! 'TxnList', "count" => 1 do
92
+ xml.tag! 'Txn', "ID" => 1 do
93
+ xml.tag! 'txnType', TRANSACTIONS[action]
94
+ xml.tag! 'txnSource', 23
95
+ xml << body
96
+ end
97
+ end
98
+ end
99
+ end
100
+
101
+ xml.target!
102
+ end
103
+
104
+ def commit(action, request)
105
+ response = parse(ssl_post(test? ? TEST_URL : LIVE_URL, build_request(action, request)))
106
+
107
+ Response.new(success?(response), message_from(response), response,
108
+ :test => test?,
109
+ :authorization => authorization_from(response)
110
+ )
111
+ end
112
+
113
+ def success?(response)
114
+ SUCCESS_CODES.include?(response[:response_code])
115
+ end
116
+
117
+ def authorization_from(response)
118
+ response[:txn_id]
119
+ end
120
+
121
+ def message_from(response)
122
+ response[:response_text] || response[:status_description]
123
+ end
124
+
125
+ def expdate(credit_card)
126
+ "#{format(credit_card.month, :two_digits)}/#{format(credit_card.year, :two_digits)}"
127
+ end
128
+
129
+ def parse(body)
130
+ xml = REXML::Document.new(body)
131
+
132
+ response = {}
133
+
134
+ xml.root.elements.to_a.each do |node|
135
+ parse_element(response, node)
136
+ end
137
+
138
+ response
139
+ end
140
+
141
+ def parse_element(response, node)
142
+ if node.has_elements?
143
+ node.elements.each{|element| parse_element(response, element) }
144
+ else
145
+ response[MerbMerchant::Inflector.underscore(node.name).to_sym] = node.text
146
+ end
147
+ end
148
+
149
+ # YYYYDDMMHHNNSSKKK000sOOO
150
+ def generate_timestamp
151
+ time = Time.now.utc
152
+ time.strftime("%Y%d%m%H%M%S#{time.usec}+000")
153
+ end
154
+ end
155
+ end
156
+ end
157
+
@@ -0,0 +1,113 @@
1
+ module MerbMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class SecurePayTechGateway < Gateway
4
+ class SecurePayTechPostData < PostData
5
+ self.required_fields = [ :OrderReference, :CardNumber, :CardExpiry, :CardHolderName, :CardType, :MerchantID, :MerchantKey, :Amount, :Currency ]
6
+ end
7
+
8
+ URL = 'https://tx.securepaytech.com/web/HttpPostPurchase'
9
+
10
+ PAYMENT_GATEWAY_RESPONSES = {
11
+ 1 => "Transaction OK",
12
+ 2 => "Insufficient funds",
13
+ 3 => "Card expired",
14
+ 4 => "Card declined",
15
+ 5 => "Server error",
16
+ 6 => "Communications error",
17
+ 7 => "Unsupported transaction type",
18
+ 8 => "Bad or malformed request",
19
+ 9 => "Invalid card number"
20
+ }
21
+
22
+ self.default_currency = 'NZD'
23
+ self.supported_countries = ['NZ']
24
+ self.supported_cardtypes = [:visa, :master, :american_express, :diners_club]
25
+ self.homepage_url = 'http://www.securepaytech.com/'
26
+ self.display_name = 'SecurePayTech'
27
+
28
+ def initialize(options = {})
29
+ requires!(options, :login, :password)
30
+ @options = options
31
+ super
32
+ end
33
+
34
+ def purchase(money, creditcard, options = {})
35
+ post = SecurePayTechPostData.new
36
+
37
+ add_invoice(post, money, options)
38
+ add_creditcard(post, creditcard)
39
+
40
+ commit(:purchase, post)
41
+ end
42
+
43
+ private
44
+
45
+ def add_invoice(post, money, options)
46
+ post[:Amount] = amount(money)
47
+ post[:Currency] = options[:currency] || currency(money)
48
+
49
+ post[:OrderReference] = options[:order_id]
50
+ end
51
+
52
+ def add_creditcard(post, creditcard)
53
+ post[:CardNumber] = creditcard.number
54
+ post[:CardExpiry] = expdate(creditcard)
55
+ post[:CardHolderName] = creditcard.name
56
+
57
+ if creditcard.verification_value?
58
+ post[:EnableCSC] = 1
59
+ post[:CSC] = creditcard.verification_value
60
+ end
61
+
62
+ # SPT will autodetect this
63
+ post[:CardType] = 0
64
+ end
65
+
66
+ def parse(body)
67
+ response = CGI.unescape(body).split(',')
68
+
69
+ result = {}
70
+ result[:result_code] = response[0].to_i
71
+
72
+ if response.length == 2
73
+ result[:fail_reason] = response[1]
74
+ else
75
+ result[:merchant_transaction_reference] = response[1]
76
+ result[:receipt_number] = response[2]
77
+ result[:transaction_number] = response[3]
78
+ result[:authorisation_id] = response[4]
79
+ result[:batch_number] = response[5]
80
+ end
81
+
82
+ result
83
+ end
84
+
85
+ def commit(action, post)
86
+ response = parse( ssl_post(URL, post_data(action, post) ) )
87
+
88
+ Response.new(response[:result_code] == 1, message_from(response), response,
89
+ :test => test?,
90
+ :authorization => response[:merchant_transaction_reference]
91
+ )
92
+ end
93
+
94
+ def message_from(result)
95
+ PAYMENT_GATEWAY_RESPONSES[result[:result_code]]
96
+ end
97
+
98
+ def post_data(action, post)
99
+ post[:MerchantID] = @options[:login]
100
+ post[:MerchantKey] = @options[:password]
101
+ post.to_s
102
+ end
103
+
104
+ def expdate(creditcard)
105
+ year = sprintf("%.4i", creditcard.year)
106
+ month = sprintf("%.2i", creditcard.month)
107
+
108
+ "#{month}#{year[-2..-1]}"
109
+ end
110
+ end
111
+ end
112
+ end
113
+
@@ -0,0 +1,439 @@
1
+ module MerbMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class SkipJackGateway < Gateway
4
+ API_VERSION = '?.?'
5
+ LIVE_URL = "https://www.skipjackic.com/scripts/evolvcc.dll"
6
+ TEST_URL = "https://developer.skipjackic.com/scripts/evolvcc.dll"
7
+
8
+ ACTIONS = {
9
+ :authorization => 'AuthorizeAPI',
10
+ :change_status => 'SJAPI_TransactionChangeStatusRequest',
11
+ :get_status => 'SJAPI_TransactionStatusRequest'
12
+ }
13
+
14
+ SUCCESS_MESSAGE = 'The transaction was successful.'
15
+
16
+ MONETARY_CHANGE_STATUSES = ['AUTHORIZE', 'AUTHORIZE ADDITIONAL', 'CREDIT', 'SPLITSETTLE']
17
+
18
+ CARD_CODE_ERRORS = %w( N S "" )
19
+
20
+ CARD_CODE_MESSAGES = {
21
+ "M" => "Card verification number matched",
22
+ "N" => "Card verification number didn't match",
23
+ "P" => "Card verification number was not processed",
24
+ "S" => "Card verification number should be on card but was not indicated",
25
+ "U" => "Issuer was not certified for card verification",
26
+ "" => "Transaction failed because incorrect card verification number was entered or no number was entered"
27
+ }
28
+
29
+ AVS_ERRORS = %w( A B C E I N O P R W Z )
30
+
31
+ AVS_MESSAGES = {
32
+ "A" => "Street address matches billing information, zip/postal code does not",
33
+ "B" => "Street address match for international transaction. Postal code not verified due to incompatible formats",
34
+ "C" => "Street address and postal code not verified for internation transaction due to incompatible formats",
35
+ "D" => "Street address and postal code match for international transaction",
36
+ "E" => "Address verification service error",
37
+ "I" => "Address information not verified by international issuer",
38
+ "M" => "Street address and postal code match for international transaction",
39
+ "N" => "Neither street address nor zip/postal match billing information",
40
+ "O" => "Non-US issuer does not participate",
41
+ "P" => "Postal codes match for international transaction but street address not verified due to incompatible formats",
42
+ "P" => "Address verification not applicable for this transaction",
43
+ "R" => "Payment gateway was unavailable or timed out",
44
+ "S" => "Address verification service not supported by issuer",
45
+ "U" => "Address information is unavailable",
46
+ "W" => "9-digit zip/postal code matches billing information, street address does not",
47
+ "X" => "Street address and 9-digit zip/postal code matches billing information",
48
+ "Y" => "Street address and 5-digit zip/postal code matches billing information",
49
+ "Z" => "5-digit zip/postal code matches billing information, street address does not",
50
+ }
51
+
52
+ CHANGE_STATUS_ERROR_MESSAGES = {
53
+ '0' => 'Success',
54
+ '-1' => 'Invalid Command',
55
+ '-2' => 'Parameter Missing',
56
+ '-3' => 'Failed retrieving response',
57
+ '-4' => 'Invalid Status',
58
+ '-5' => 'Failed reading security flags',
59
+ '-6' => 'Developer serial number not found',
60
+ '-7' => 'Invalid Serial Number'
61
+ }
62
+
63
+ TRANSACTION_CURRENT_STATUS = {
64
+ '0' => 'Idle',
65
+ '1' => 'Authorized',
66
+ '2' => 'Denied',
67
+ '3' => 'Settled',
68
+ '4' => 'Credited',
69
+ '5' => 'Deleted',
70
+ '6' => 'Archived',
71
+ '7' => 'Pre-Authorized',
72
+ '8' => 'Split Settled'
73
+ }
74
+
75
+ TRANSACTION_PENDING_STATUS = {
76
+ '0' => 'Idle',
77
+ '1' => 'Pending Credit',
78
+ '2' => 'Pending Settlement',
79
+ '3' => 'Pending Authorization',
80
+ '4' => 'Pending Manual Settlement',
81
+ '5' => 'Pending Recurring'
82
+ }
83
+
84
+ RETURN_CODE_MESSAGES = {
85
+ '-1' => 'Data was not by received intact by Skipjack Transaction Network.',
86
+ '0' => 'Communication Failure. Error in Request and Response at IP level.',
87
+ '1' => 'Valid Data. Authorization request was valid.',
88
+ '-35' => 'Invalid credit card number. Retry with correct credit card number.',
89
+ '-37' => 'Merchant Processor Unavailable. Skipjack is unable to communicate with payment Processor. Retry',
90
+ '-39' => 'Length or value of HTML Serial. Number Invalid serial number. Check HTML Serial Number length and that it is a correct/valid number. Confirm you are sending to the correct environment (Development or Production)',
91
+ '-51' => 'The value or length for billing zip code is incorrect.',
92
+ '-52' => 'The value or length for shipping zip code is incorrect.',
93
+ '-53' => 'The value or length for credit card expiration month is incorrect.',
94
+ '-54' => 'The value or length of the month or year of the credit card account number was incorrect.',
95
+ '-55' => 'The value or length or billing street address is incorrect.',
96
+ '-56' => 'The value or length of the shipping address is incorrect.',
97
+ '-57' => 'The length of the transaction amount must be at least 3 digits long (excluding the decimal place).',
98
+ '-58' => 'Length or value in Merchant Name Merchant Name associated with Skipjack account is misconfigured or invalid',
99
+ '-59' => 'Length or value in Merchant Address Merchant Address associated with Skipjack account is misconfigured or invalid',
100
+ '-60' => 'Length or value in Merchant State Merchant State associated with Skipjack account is misconfigured or invalid',
101
+ '-61' => 'The value or length for shipping state/province is empty.',
102
+ '-62' => 'The value for length orderstring is empty.',
103
+ '-64' => 'The value for the phone number is incorrect.',
104
+ '-65' => 'The value or length for billing name is empty.',
105
+ '-66' => 'The value or length for billing e-mail is empty.',
106
+ '-67' => 'The value or length for billing street address is empty.',
107
+ '-68' => 'The value or length for billing city is empty.',
108
+ '-69' => 'The value or length for billing state is empty.',
109
+ '-70' => 'Empty zipcode Zip Code field is empty.',
110
+ '-71' => 'Empty ordernumber Ordernumber field is empty.',
111
+ '-72' => 'Empty accountnumber Accountnumber field is empty',
112
+ '-73' => 'Empty month Month field is empty.',
113
+ '-74' => 'Empty year Year field is empty.',
114
+ '-75' => 'Empty serialnumber Serialnumber field is empty.',
115
+ '-76' => 'Empty transactionamount Transaction amount field is empty.',
116
+ '-77' => 'Empty orderstring Orderstring field is empty.',
117
+ '-78' => 'Empty shiptophone Shiptophone field is empty.',
118
+ '-79' => 'The value or length for billing name is empty.',
119
+ '-80' => 'Length shipto name Error in the length or value of shiptophone.',
120
+ '-81' => 'Length or value of Customer location',
121
+ '-82' => 'The value or length for billing state is empty.',
122
+ '-83' => 'The value or length for shipping phone is empty.',
123
+ '-84' => 'There is already an existing pending transaction in the register sharing the posted Order Number.',
124
+ '-85' => 'Airline leg info invalid Airline leg field value is invalid or empty.',
125
+ '-86' => 'Airline ticket info invalid Airline ticket info field is invalid or empty',
126
+ '-87' => 'Point of Sale check routing number must be 9 numeric digits Point of Sale check routing number is invalid or empty.',
127
+ '-88' => 'Point of Sale check account number missing or invalid Point of Sale check account number is invalid or empty.',
128
+ '-89' => 'Point of Sale check MICR missing or invalid Point of Sale check MICR invalid or empty.',
129
+ '-90' => 'Point of Sale check number missing or invalid Point of Sale check number invalid or empty.',
130
+ '-91' => 'CVV2 Invalid or empty “Make CVV a required field feature” enabled (New feature 01 April 2006) in the Merchant Account Setup interface but no CVV code was sent in the transaction data.',
131
+ '-92' => 'Approval Code Invalid Approval Code Invalid. Approval Code is a 6 digit code.',
132
+ '-93' => 'Blind Credits Request Refused “Allow Blind Credits” option must be enabled on the Skipjack Merchant Account.',
133
+ '-94' => 'Blind Credits Failed',
134
+ '-95' => 'Voice Authorization Request Refused Voice Authorization option must be enabled on the Skipjack Merchant Account.',
135
+ '-96' => 'Voice Authorizations Failed',
136
+ '-97' => 'Fraud Rejection Violates Velocity Settling.',
137
+ '-98' => 'Invalid Discount Amount',
138
+ '-99' => 'POS PIN Debit Pin Block Debit-specific',
139
+ '-100' => 'POS PIN Debit Invalid Key Serial Number Debit-specific',
140
+ '-101' => 'Invalid Authentication Data Data for Verified by Visa/MC Secure Code is invalid.',
141
+ '-102' => 'Authentication Data Not Allowed',
142
+ '-103' => 'POS Check Invalid Birth Date POS check dateofbirth variable contains a birth date in an incorrect format. Use MM/DD/YYYY format for this variable.',
143
+ '-104' => 'POS Check Invalid Identification Type POS check identificationtype variable contains a identification type value which is invalid. Use the single digit value where Social Security Number=1, Drivers License=2 for this variable.',
144
+ '-105' => 'Invalid trackdata Track Data is in invalid format.',
145
+ '-106' => 'POS Check Invalid Account Type',
146
+ '-107' => 'POS PIN Debit Invalid Sequence Number',
147
+ '-108' => 'Invalid Transaction ID',
148
+ '-109' => 'Invalid From Account Type',
149
+ '-110' => 'Pos Error Invalid To Account Type',
150
+ '-112' => 'Pos Error Invalid Auth Option',
151
+ '-113' => 'Pos Error Transaction Failed',
152
+ '-114' => 'Pos Error Invalid Incoming Eci',
153
+ '-115' => 'POS Check Invalid Check Type',
154
+ '-116' => 'POS Check Invalid Lane Number POS Check lane or cash register number is invalid. Use a valid lane or cash register number that has been configured in the Skipjack Merchant Account.',
155
+ '-117' => 'POS Check Invalid Cashier Number'
156
+ }
157
+
158
+ self.supported_countries = ['US', 'CA']
159
+ self.supported_cardtypes = [:visa, :master, :american_express, :jcb, :discover, :diners_club]
160
+ self.homepage_url = 'http://www.skipjack.com/'
161
+ self.display_name = 'SkipJack'
162
+
163
+ # Creates a new SkipJackGateway
164
+ #
165
+ # The gateway requires that a valid login and password be passed
166
+ # in the +options+ hash.
167
+ #
168
+ # ==== Options
169
+ #
170
+ # * <tt>:login</tt> -- The SkipJack Merchant Serial Number.
171
+ # * <tt>:password</tt> -- The SkipJack Developer Serial Number.
172
+ # * <tt>:test => +true+ or +false+</tt> -- Use the test or live SkipJack url.
173
+ def initialize(options = {})
174
+ requires!(options, :login, :password)
175
+ @options = options
176
+ super
177
+ end
178
+
179
+ def test?
180
+ @options[:test] || super
181
+ end
182
+
183
+ def authorize(money, creditcard, options = {})
184
+ requires!(options, :order_id, :email)
185
+ post = {}
186
+ add_invoice(post, options)
187
+ add_creditcard(post, creditcard)
188
+ add_address(post, options)
189
+ add_customer_data(post, options)
190
+ commit(:authorization, money, post)
191
+ end
192
+
193
+ def purchase(money, creditcard, options = {})
194
+ post = {}
195
+ authorization = authorize(money, creditcard, options)
196
+ if authorization.success?
197
+ capture(money, authorization.authorization)
198
+ else
199
+ authorization
200
+ end
201
+ end
202
+
203
+ # Captures the funds from an authorized transaction.
204
+ #
205
+ # ==== Parameters
206
+ #
207
+ # * <tt>money</tt> -- The amount to be capture as an Integer in cents.
208
+ # * <tt>authorization</tt> -- The authorization returned from the previous authorize request.
209
+ # * <tt>options</tt> -- A hash of optional parameters.
210
+ #
211
+ # ==== Options
212
+ #
213
+ # * <tt>:force_settlement</tt> -- Force the settlement to occur as soon as possible. This option is not supported by other gateways. See the SkipJack API reference for more details
214
+ def capture(money, authorization, options = {})
215
+ post = { }
216
+ add_status_action(post, 'SETTLE')
217
+ add_forced_settlement(post, options)
218
+ add_transaction_id(post, authorization)
219
+ commit(:change_status, money, post)
220
+ end
221
+
222
+ def void(authorization, options = {})
223
+ post = {}
224
+ add_status_action(post, 'DELETE')
225
+ add_forced_settlement(post, options)
226
+ add_transaction_id(post, authorization)
227
+ commit(:change_status, nil, post)
228
+ end
229
+
230
+ def credit(money, identification, options = {})
231
+ post = {}
232
+ add_status_action(post, 'CREDIT')
233
+ add_forced_settlement(post, options)
234
+ add_transaction_id(post, identification)
235
+ commit(:change_status, money, post)
236
+ end
237
+
238
+ def status(order_id)
239
+ post = { }
240
+ post[:szOrderNumber] = :order_id
241
+ commit(:get_status, nil, post)
242
+ end
243
+
244
+ private
245
+ def add_forced_settlement(post, options)
246
+ post[:szForceSettlement] = options[:force_settlment] ? 1 : 0
247
+ end
248
+
249
+ def add_status_action(post, action)
250
+ post[:szDesiredStatus] = action
251
+ end
252
+
253
+ def commit(action, money, parameters)
254
+ response = parse( ssl_post( url_for(action), post_data(action, money, parameters) ), action )
255
+
256
+ # Pass along the original transaction id in the case an update transaction
257
+ Response.new(response[:success], message_from(response, action), response,
258
+ :test => test?,
259
+ :authorization => response[:szTransactionFileName] || parameters[:szTransactionId],
260
+ :avs_result => { :code => response[:szAVSResponseCode] },
261
+ :cvv_result => response[:szCVV2ResponseCode]
262
+ )
263
+ end
264
+
265
+ def url_for(action)
266
+ result = test? ? TEST_URL : LIVE_URL
267
+ result += "?#{ACTIONS[action]}"
268
+ end
269
+
270
+ def add_credentials(params, action)
271
+ if action == :authorization
272
+ params[:SerialNumber] = @options[:login]
273
+ params[:DeveloperSerialNumber] = @options[:password]
274
+ else
275
+ params[:szSerialNumber] = @options[:login]
276
+ params[:szDeveloperSerialNumber] = @options[:password]
277
+ end
278
+ end
279
+
280
+ def add_amount(params, action, money)
281
+ if action == :authorization
282
+ params[:TransactionAmount] = amount(money)
283
+ else
284
+ params[:szAmount] = amount(money) if MONETARY_CHANGE_STATUSES.include?(params[:szDesiredStatus])
285
+ end
286
+ end
287
+
288
+ def parse(body, action)
289
+ case action
290
+ when :authorization
291
+ parse_authorization_response(body)
292
+ when :get_status
293
+ parse_status_response(body, [ :SerialNumber, :TransactionAmount, :TransactionStatusCode, :TransactionStatusMessage, :OrderNumber, :TransactionDateTime, :TransactionID, :ApprovalCode, :BatchNumber ])
294
+ else
295
+ parse_status_response(body, [ :SerialNumber, :TransactionAmount, :DesiredStatus, :StatusResponse, :StatusResponseMessage, :OrderNumber, :AuditID ])
296
+ end
297
+ end
298
+
299
+ def split_lines(body)
300
+ body.split(/[\r\n]+/)
301
+ end
302
+
303
+ def split_line(line)
304
+ line.split(/","/).collect { |key| key.sub(/"*([^"]*)"*/, '\1').strip; }
305
+ end
306
+
307
+ def authorize_response_map(body)
308
+ lines = split_lines(body)
309
+ keys, values = split_line(lines[0]), split_line(lines[1])
310
+ Hash[*(keys.zip(values).flatten)].symbolize_keys
311
+ end
312
+
313
+ def parse_authorization_response(body)
314
+ result = authorize_response_map(body)
315
+ result[:success] = (result[:szIsApproved] == '1')
316
+ result
317
+ end
318
+
319
+ def parse_status_response(body, response_keys)
320
+ lines = split_lines(body)
321
+
322
+ keys = [ :szSerialNumber, :szErrorCode, :szNumberRecords]
323
+ values = split_line(lines[0])[0..2]
324
+
325
+ result = Hash[*(keys.zip(values).flatten)]
326
+
327
+ result[:szErrorMessage] = ''
328
+ result[:success] = (result[:szErrorCode] == '0')
329
+
330
+ if result[:success]
331
+ lines[1..-1].each do |line|
332
+ values = split_line(line)
333
+ response_keys.each_with_index do |key, index|
334
+ result[key] = values[index]
335
+ end
336
+ end
337
+ else
338
+ result[:szErrorMessage] = lines[1]
339
+ end
340
+ result
341
+ end
342
+
343
+ def post_data(action, money, params = {})
344
+ add_credentials(params, action)
345
+ add_amount(params, action, money)
346
+ params.collect { |key, value| "#{key.to_s}=#{CGI.escape(value.to_s)}" }.join("&")
347
+ end
348
+
349
+ def add_transaction_id(post, transaction_id)
350
+ post[:szTransactionId] = transaction_id
351
+ end
352
+
353
+ def add_invoice(post, options)
354
+ post[:OrderNumber] = sanitize_order_id(options[:order_id])
355
+ post[:CustomerCode] = options[:customer].to_s.slice(0, 17)
356
+ post[:InvoiceNumber] = options[:invoice]
357
+ post[:OrderDescription] = options[:description]
358
+
359
+ if order_items = options[:items]
360
+ post[:OrderString] = order_items.collect { |item| "#{item[:sku]}~#{item[:description].tr('~','-')}~#{item[:declared_value]}~#{item[:quantity]}~#{item[:taxable]}~~~~~~~~#{item[:tax_rate]}~||"}.join
361
+ else
362
+ post[:OrderString] = '1~None~0.00~0~N~||'
363
+ end
364
+ end
365
+
366
+ def add_creditcard(post, creditcard)
367
+ post[:AccountNumber] = creditcard.number
368
+ post[:Month] = creditcard.month
369
+ post[:Year] = creditcard.year
370
+ post[:CVV2] = creditcard.verification_value if creditcard.verification_value?
371
+ post[:SJName] = creditcard.name
372
+ end
373
+
374
+ def add_customer_data(post, options)
375
+ post[:Email] = options[:email]
376
+ end
377
+
378
+ def add_address(post, options)
379
+ if address = options[:billing_address] || options[:address]
380
+ post[:StreetAddress] = address[:address1]
381
+ post[:StreetAddress2] = address[:address2]
382
+ post[:City] = address[:city]
383
+ post[:State] = address[:state]
384
+ post[:ZipCode] = address[:zip]
385
+ post[:Country] = address[:country]
386
+ post[:Phone] = address[:phone]
387
+ post[:Fax] = address[:fax]
388
+ end
389
+
390
+ if address = options[:shipping_address]
391
+ post[:ShipToName] = address[:name]
392
+ post[:ShipToStreetAddress] = address[:address1]
393
+ post[:ShipToStreetAddress2] = address[:address2]
394
+ post[:ShipToCity] = address[:city]
395
+ post[:ShipToState] = address[:state]
396
+ post[:ShipToZipCode] = address[:zip]
397
+ post[:ShipToCountry] = address[:country]
398
+ post[:ShipToPhone] = address[:phone]
399
+ post[:ShipToFax] = address[:fax]
400
+ end
401
+
402
+ # The phone number for the shipping address is required
403
+ # Use the billing address phone number if a shipping address
404
+ # phone number wasn't provided
405
+ post[:ShipToPhone] = post[:Phone] if post[:ShipToPhone].blank?
406
+ end
407
+
408
+ def message_from(response, action)
409
+ case action
410
+ when :authorization
411
+ message_from_authorization(response)
412
+ when :get_status
413
+ message_from_status(response)
414
+ else
415
+ message_from_status(response)
416
+ end
417
+ end
418
+
419
+ def message_from_authorization(response)
420
+ if response[:success]
421
+ return SUCCESS_MESSAGE
422
+ else
423
+ return CARD_CODE_MESSAGES[response[:szCVV2ResponseCode]] if CARD_CODE_ERRORS.include?(response[:szCVV2ResponseCode])
424
+ return AVS_MESSAGES[response[:szAVSResponseMessage]] if AVS_ERRORS.include?(response[:szAVSResponseCode])
425
+ return RETURN_CODE_MESSAGES[response[:szReturnCode]] if response[:szReturnCode] != '1'
426
+ return response[:szAuthorizationDeclinedMessage]
427
+ end
428
+ end
429
+
430
+ def message_from_status(response)
431
+ response[:success] ? SUCCESS_MESSAGE : response[:szErrorMessage]
432
+ end
433
+
434
+ def sanitize_order_id(value)
435
+ value.to_s.gsub(/[^\w.]/, '')
436
+ end
437
+ end
438
+ end
439
+ end