activemerchant-nsp 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (252) hide show
  1. data/CHANGELOG +952 -0
  2. data/CONTRIBUTORS +347 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README.md +204 -0
  5. data/gem-public_cert.pem +20 -0
  6. data/lib/active_merchant.rb +63 -0
  7. data/lib/active_merchant/billing.rb +9 -0
  8. data/lib/active_merchant/billing/avs_result.rb +98 -0
  9. data/lib/active_merchant/billing/base.rb +56 -0
  10. data/lib/active_merchant/billing/check.rb +68 -0
  11. data/lib/active_merchant/billing/credit_card.rb +274 -0
  12. data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
  13. data/lib/active_merchant/billing/credit_card_methods.rb +143 -0
  14. data/lib/active_merchant/billing/cvv_result.rb +38 -0
  15. data/lib/active_merchant/billing/expiry_date.rb +34 -0
  16. data/lib/active_merchant/billing/gateway.rb +176 -0
  17. data/lib/active_merchant/billing/gateways.rb +18 -0
  18. data/lib/active_merchant/billing/gateways/authorize_net.rb +695 -0
  19. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +943 -0
  20. data/lib/active_merchant/billing/gateways/balanced.rb +462 -0
  21. data/lib/active_merchant/billing/gateways/barclays_epdq.rb +308 -0
  22. data/lib/active_merchant/billing/gateways/beanstream.rb +167 -0
  23. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +389 -0
  24. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
  25. data/lib/active_merchant/billing/gateways/blue_pay.rb +492 -0
  26. data/lib/active_merchant/billing/gateways/bogus.rb +142 -0
  27. data/lib/active_merchant/billing/gateways/braintree.rb +19 -0
  28. data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +9 -0
  29. data/lib/active_merchant/billing/gateways/braintree_blue.rb +389 -0
  30. data/lib/active_merchant/billing/gateways/braintree_orange.rb +19 -0
  31. data/lib/active_merchant/billing/gateways/card_save.rb +23 -0
  32. data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
  33. data/lib/active_merchant/billing/gateways/certo_direct.rb +278 -0
  34. data/lib/active_merchant/billing/gateways/cyber_source.rb +576 -0
  35. data/lib/active_merchant/billing/gateways/data_cash.rb +597 -0
  36. data/lib/active_merchant/billing/gateways/efsnet.rb +235 -0
  37. data/lib/active_merchant/billing/gateways/elavon.rb +137 -0
  38. data/lib/active_merchant/billing/gateways/epay.rb +276 -0
  39. data/lib/active_merchant/billing/gateways/eway.rb +287 -0
  40. data/lib/active_merchant/billing/gateways/eway_managed.rb +265 -0
  41. data/lib/active_merchant/billing/gateways/exact.rb +227 -0
  42. data/lib/active_merchant/billing/gateways/fat_zebra.rb +152 -0
  43. data/lib/active_merchant/billing/gateways/federated_canada.rb +168 -0
  44. data/lib/active_merchant/billing/gateways/first_pay.rb +177 -0
  45. data/lib/active_merchant/billing/gateways/garanti.rb +262 -0
  46. data/lib/active_merchant/billing/gateways/ideal/ideal_base.rb +252 -0
  47. data/lib/active_merchant/billing/gateways/ideal/ideal_rabobank.pem +13 -0
  48. data/lib/active_merchant/billing/gateways/ideal/ideal_response.rb +29 -0
  49. data/lib/active_merchant/billing/gateways/ideal_rabobank.rb +55 -0
  50. data/lib/active_merchant/billing/gateways/inspire.rb +221 -0
  51. data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
  52. data/lib/active_merchant/billing/gateways/iridium.rb +257 -0
  53. data/lib/active_merchant/billing/gateways/itransact.rb +450 -0
  54. data/lib/active_merchant/billing/gateways/jetpay.rb +276 -0
  55. data/lib/active_merchant/billing/gateways/linkpoint.rb +451 -0
  56. data/lib/active_merchant/billing/gateways/litle.rb +290 -0
  57. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +157 -0
  58. data/lib/active_merchant/billing/gateways/merchant_ware.rb +289 -0
  59. data/lib/active_merchant/billing/gateways/metrics_global.rb +323 -0
  60. data/lib/active_merchant/billing/gateways/migs.rb +263 -0
  61. data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +100 -0
  62. data/lib/active_merchant/billing/gateways/modern_payments.rb +38 -0
  63. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +220 -0
  64. data/lib/active_merchant/billing/gateways/moneris.rb +250 -0
  65. data/lib/active_merchant/billing/gateways/moneris_us.rb +211 -0
  66. data/lib/active_merchant/billing/gateways/nab_transact.rb +257 -0
  67. data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
  68. data/lib/active_merchant/billing/gateways/netaxept.rb +239 -0
  69. data/lib/active_merchant/billing/gateways/netbilling.rb +196 -0
  70. data/lib/active_merchant/billing/gateways/nmi.rb +13 -0
  71. data/lib/active_merchant/billing/gateways/ogone.rb +427 -0
  72. data/lib/active_merchant/billing/gateways/optimal_payment.rb +277 -0
  73. data/lib/active_merchant/billing/gateways/orbital.rb +351 -0
  74. data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +46 -0
  75. data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +266 -0
  76. data/lib/active_merchant/billing/gateways/pay_junction.rb +397 -0
  77. data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
  78. data/lib/active_merchant/billing/gateways/paybox_direct.rb +201 -0
  79. data/lib/active_merchant/billing/gateways/payflow.rb +268 -0
  80. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +212 -0
  81. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
  82. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  83. data/lib/active_merchant/billing/gateways/payflow_express.rb +224 -0
  84. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
  85. data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
  86. data/lib/active_merchant/billing/gateways/payment_express.rb +282 -0
  87. data/lib/active_merchant/billing/gateways/paypal.rb +106 -0
  88. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +653 -0
  89. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +49 -0
  90. data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +245 -0
  91. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  92. data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +43 -0
  93. data/lib/active_merchant/billing/gateways/paypal_express.rb +178 -0
  94. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +30 -0
  95. data/lib/active_merchant/billing/gateways/paystation.rb +201 -0
  96. data/lib/active_merchant/billing/gateways/payway.rb +214 -0
  97. data/lib/active_merchant/billing/gateways/plugnpay.rb +295 -0
  98. data/lib/active_merchant/billing/gateways/psigate.rb +219 -0
  99. data/lib/active_merchant/billing/gateways/psl_card.rb +304 -0
  100. data/lib/active_merchant/billing/gateways/qbms.rb +297 -0
  101. data/lib/active_merchant/billing/gateways/quantum.rb +282 -0
  102. data/lib/active_merchant/billing/gateways/quickpay.rb +298 -0
  103. data/lib/active_merchant/billing/gateways/realex.rb +313 -0
  104. data/lib/active_merchant/billing/gateways/sage.rb +148 -0
  105. data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
  106. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +115 -0
  107. data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
  108. data/lib/active_merchant/billing/gateways/sage_pay.rb +322 -0
  109. data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -0
  110. data/lib/active_merchant/billing/gateways/samurai.rb +121 -0
  111. data/lib/active_merchant/billing/gateways/secure_net.rb +330 -0
  112. data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
  113. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +284 -0
  114. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
  115. data/lib/active_merchant/billing/gateways/skip_jack.rb +458 -0
  116. data/lib/active_merchant/billing/gateways/smart_ps.rb +273 -0
  117. data/lib/active_merchant/billing/gateways/stripe.rb +236 -0
  118. data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
  119. data/lib/active_merchant/billing/gateways/transax.rb +23 -0
  120. data/lib/active_merchant/billing/gateways/trust_commerce.rb +423 -0
  121. data/lib/active_merchant/billing/gateways/usa_epay.rb +25 -0
  122. data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +1497 -0
  123. data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +206 -0
  124. data/lib/active_merchant/billing/gateways/verifi.rb +233 -0
  125. data/lib/active_merchant/billing/gateways/viaklix.rb +194 -0
  126. data/lib/active_merchant/billing/gateways/vindicia.rb +359 -0
  127. data/lib/active_merchant/billing/gateways/wirecard.rb +313 -0
  128. data/lib/active_merchant/billing/gateways/worldpay.rb +271 -0
  129. data/lib/active_merchant/billing/integrations.rb +17 -0
  130. data/lib/active_merchant/billing/integrations/action_view_helper.rb +73 -0
  131. data/lib/active_merchant/billing/integrations/authorize_net_sim.rb +38 -0
  132. data/lib/active_merchant/billing/integrations/authorize_net_sim/helper.rb +228 -0
  133. data/lib/active_merchant/billing/integrations/authorize_net_sim/notification.rb +340 -0
  134. data/lib/active_merchant/billing/integrations/bogus.rb +23 -0
  135. data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
  136. data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
  137. data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
  138. data/lib/active_merchant/billing/integrations/chronopay.rb +23 -0
  139. data/lib/active_merchant/billing/integrations/chronopay/helper.rb +120 -0
  140. data/lib/active_merchant/billing/integrations/chronopay/notification.rb +158 -0
  141. data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
  142. data/lib/active_merchant/billing/integrations/direc_pay.rb +41 -0
  143. data/lib/active_merchant/billing/integrations/direc_pay/helper.rb +200 -0
  144. data/lib/active_merchant/billing/integrations/direc_pay/notification.rb +76 -0
  145. data/lib/active_merchant/billing/integrations/direc_pay/return.rb +32 -0
  146. data/lib/active_merchant/billing/integrations/direc_pay/status.rb +37 -0
  147. data/lib/active_merchant/billing/integrations/directebanking.rb +47 -0
  148. data/lib/active_merchant/billing/integrations/directebanking/helper.rb +90 -0
  149. data/lib/active_merchant/billing/integrations/directebanking/notification.rb +120 -0
  150. data/lib/active_merchant/billing/integrations/directebanking/return.rb +11 -0
  151. data/lib/active_merchant/billing/integrations/dotpay.rb +22 -0
  152. data/lib/active_merchant/billing/integrations/dotpay/helper.rb +77 -0
  153. data/lib/active_merchant/billing/integrations/dotpay/notification.rb +86 -0
  154. data/lib/active_merchant/billing/integrations/dotpay/return.rb +11 -0
  155. data/lib/active_merchant/billing/integrations/dwolla.rb +30 -0
  156. data/lib/active_merchant/billing/integrations/dwolla/helper.rb +31 -0
  157. data/lib/active_merchant/billing/integrations/dwolla/notification.rb +55 -0
  158. data/lib/active_merchant/billing/integrations/dwolla/return.rb +38 -0
  159. data/lib/active_merchant/billing/integrations/e_payment_plans.rb +48 -0
  160. data/lib/active_merchant/billing/integrations/e_payment_plans/helper.rb +34 -0
  161. data/lib/active_merchant/billing/integrations/e_payment_plans/notification.rb +84 -0
  162. data/lib/active_merchant/billing/integrations/easy_pay.rb +30 -0
  163. data/lib/active_merchant/billing/integrations/easy_pay/common.rb +40 -0
  164. data/lib/active_merchant/billing/integrations/easy_pay/helper.rb +40 -0
  165. data/lib/active_merchant/billing/integrations/easy_pay/notification.rb +51 -0
  166. data/lib/active_merchant/billing/integrations/epay.rb +21 -0
  167. data/lib/active_merchant/billing/integrations/epay/helper.rb +55 -0
  168. data/lib/active_merchant/billing/integrations/epay/notification.rb +110 -0
  169. data/lib/active_merchant/billing/integrations/first_data.rb +38 -0
  170. data/lib/active_merchant/billing/integrations/first_data/helper.rb +63 -0
  171. data/lib/active_merchant/billing/integrations/first_data/notification.rb +56 -0
  172. data/lib/active_merchant/billing/integrations/gestpay.rb +25 -0
  173. data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
  174. data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
  175. data/lib/active_merchant/billing/integrations/gestpay/notification.rb +85 -0
  176. data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
  177. data/lib/active_merchant/billing/integrations/helper.rb +117 -0
  178. data/lib/active_merchant/billing/integrations/hi_trust.rb +27 -0
  179. data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
  180. data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
  181. data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
  182. data/lib/active_merchant/billing/integrations/maksuturva.rb +86 -0
  183. data/lib/active_merchant/billing/integrations/maksuturva/helper.rb +119 -0
  184. data/lib/active_merchant/billing/integrations/maksuturva/notification.rb +48 -0
  185. data/lib/active_merchant/billing/integrations/moneybookers.rb +26 -0
  186. data/lib/active_merchant/billing/integrations/moneybookers/helper.rb +59 -0
  187. data/lib/active_merchant/billing/integrations/moneybookers/notification.rb +129 -0
  188. data/lib/active_merchant/billing/integrations/nelnet.rb +40 -0
  189. data/lib/active_merchant/billing/integrations/nelnet/helper.rb +34 -0
  190. data/lib/active_merchant/billing/integrations/nelnet/notification.rb +100 -0
  191. data/lib/active_merchant/billing/integrations/nochex.rb +88 -0
  192. data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
  193. data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
  194. data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
  195. data/lib/active_merchant/billing/integrations/notification.rb +62 -0
  196. data/lib/active_merchant/billing/integrations/paxum.rb +44 -0
  197. data/lib/active_merchant/billing/integrations/paxum/common.rb +24 -0
  198. data/lib/active_merchant/billing/integrations/paxum/helper.rb +42 -0
  199. data/lib/active_merchant/billing/integrations/paxum/notification.rb +33 -0
  200. data/lib/active_merchant/billing/integrations/payflow_link.rb +21 -0
  201. data/lib/active_merchant/billing/integrations/payflow_link/helper.rb +100 -0
  202. data/lib/active_merchant/billing/integrations/payflow_link/notification.rb +78 -0
  203. data/lib/active_merchant/billing/integrations/paypal.rb +39 -0
  204. data/lib/active_merchant/billing/integrations/paypal/helper.rb +119 -0
  205. data/lib/active_merchant/billing/integrations/paypal/notification.rb +155 -0
  206. data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
  207. data/lib/active_merchant/billing/integrations/paypal_payments_advanced.rb +20 -0
  208. data/lib/active_merchant/billing/integrations/paypal_payments_advanced/helper.rb +15 -0
  209. data/lib/active_merchant/billing/integrations/pxpay.rb +31 -0
  210. data/lib/active_merchant/billing/integrations/pxpay/helper.rb +110 -0
  211. data/lib/active_merchant/billing/integrations/pxpay/notification.rb +157 -0
  212. data/lib/active_merchant/billing/integrations/pxpay/return.rb +25 -0
  213. data/lib/active_merchant/billing/integrations/quickpay.rb +21 -0
  214. data/lib/active_merchant/billing/integrations/quickpay/helper.rb +71 -0
  215. data/lib/active_merchant/billing/integrations/quickpay/notification.rb +74 -0
  216. data/lib/active_merchant/billing/integrations/return.rb +42 -0
  217. data/lib/active_merchant/billing/integrations/robokassa.rb +49 -0
  218. data/lib/active_merchant/billing/integrations/robokassa/common.rb +19 -0
  219. data/lib/active_merchant/billing/integrations/robokassa/helper.rb +50 -0
  220. data/lib/active_merchant/billing/integrations/robokassa/notification.rb +55 -0
  221. data/lib/active_merchant/billing/integrations/robokassa/return.rb +17 -0
  222. data/lib/active_merchant/billing/integrations/sage_pay_form.rb +37 -0
  223. data/lib/active_merchant/billing/integrations/sage_pay_form/encryption.rb +33 -0
  224. data/lib/active_merchant/billing/integrations/sage_pay_form/helper.rb +129 -0
  225. data/lib/active_merchant/billing/integrations/sage_pay_form/notification.rb +210 -0
  226. data/lib/active_merchant/billing/integrations/sage_pay_form/return.rb +31 -0
  227. data/lib/active_merchant/billing/integrations/two_checkout.rb +44 -0
  228. data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +91 -0
  229. data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +139 -0
  230. data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
  231. data/lib/active_merchant/billing/integrations/valitor.rb +33 -0
  232. data/lib/active_merchant/billing/integrations/valitor/helper.rb +86 -0
  233. data/lib/active_merchant/billing/integrations/valitor/notification.rb +13 -0
  234. data/lib/active_merchant/billing/integrations/valitor/response_fields.rb +97 -0
  235. data/lib/active_merchant/billing/integrations/valitor/return.rb +13 -0
  236. data/lib/active_merchant/billing/integrations/verkkomaksut.rb +20 -0
  237. data/lib/active_merchant/billing/integrations/verkkomaksut/helper.rb +87 -0
  238. data/lib/active_merchant/billing/integrations/verkkomaksut/notification.rb +59 -0
  239. data/lib/active_merchant/billing/integrations/web_pay.rb +45 -0
  240. data/lib/active_merchant/billing/integrations/web_pay/common.rb +50 -0
  241. data/lib/active_merchant/billing/integrations/web_pay/helper.rb +68 -0
  242. data/lib/active_merchant/billing/integrations/web_pay/notification.rb +51 -0
  243. data/lib/active_merchant/billing/integrations/world_pay.rb +27 -0
  244. data/lib/active_merchant/billing/integrations/world_pay/helper.rb +100 -0
  245. data/lib/active_merchant/billing/integrations/world_pay/notification.rb +160 -0
  246. data/lib/active_merchant/billing/response.rb +64 -0
  247. data/lib/active_merchant/version.rb +3 -0
  248. data/lib/activemerchant.rb +1 -0
  249. data/lib/support/gateway_support.rb +65 -0
  250. data/lib/support/outbound_hosts.rb +25 -0
  251. data/lib/support/ssl_verify.rb +93 -0
  252. metadata +482 -0
@@ -0,0 +1,227 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class ExactGateway < Gateway
4
+ self.live_url = self.test_url = 'https://secure2.e-xact.com/vplug-in/transaction/rpc-enc/service.asmx'
5
+
6
+ API_VERSION = "8.5"
7
+
8
+ TEST_LOGINS = [ {:login => "A00049-01", :password => "test1"},
9
+ {:login => "A00427-01", :password => "testus"} ]
10
+
11
+ TRANSACTIONS = { :sale => "00",
12
+ :authorization => "01",
13
+ :capture => "32",
14
+ :credit => "34" }
15
+
16
+
17
+ ENVELOPE_NAMESPACES = { 'xmlns:xsd' => 'http://www.w3.org/2001/XMLSchema',
18
+ 'xmlns:env' => 'http://schemas.xmlsoap.org/soap/envelope/',
19
+ 'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance'
20
+ }
21
+
22
+ SEND_AND_COMMIT_ATTRIBUTES = { 'xmlns:n1' => "http://secure2.e-xact.com/vplug-in/transaction/rpc-enc/Request",
23
+ 'env:encodingStyle' => 'http://schemas.xmlsoap.org/soap/encoding/'
24
+ }
25
+
26
+ SEND_AND_COMMIT_SOURCE_ATTRIBUTES = { 'xmlns:n2' => 'http://secure2.e-xact.com/vplug-in/transaction/rpc-enc/encodedTypes',
27
+ 'xsi:type' => 'n2:Transaction'
28
+ }
29
+
30
+ POST_HEADERS = { 'soapAction' => "http://secure2.e-xact.com/vplug-in/transaction/rpc-enc/SendAndCommit",
31
+ 'Content-Type' => 'text/xml'
32
+ }
33
+
34
+ SUCCESS = "true"
35
+
36
+ SENSITIVE_FIELDS = [ :verification_str2, :expiry_date, :card_number ]
37
+
38
+ self.supported_cardtypes = [:visa, :master, :american_express, :jcb, :discover]
39
+ self.supported_countries = ['CA', 'US']
40
+ self.homepage_url = 'http://www.e-xact.com'
41
+ self.display_name = 'E-xact'
42
+
43
+ def initialize(options = {})
44
+ requires!(options, :login, :password)
45
+ @options = options
46
+
47
+ if TEST_LOGINS.include?( { :login => options[:login], :password => options[:password] } )
48
+ @test_mode = true
49
+ end
50
+
51
+ super
52
+ end
53
+
54
+ def test?
55
+ @test_mode || Base.gateway_mode == :test
56
+ end
57
+
58
+ def authorize(money, credit_card, options = {})
59
+ commit(:authorization, build_sale_or_authorization_request(money, credit_card, options))
60
+ end
61
+
62
+ def purchase(money, credit_card, options = {})
63
+ commit(:sale, build_sale_or_authorization_request(money, credit_card, options))
64
+ end
65
+
66
+ def capture(money, authorization, options = {})
67
+ commit(:capture, build_capture_or_credit_request(money, authorization, options))
68
+ end
69
+
70
+ def credit(money, authorization, options = {})
71
+ deprecated CREDIT_DEPRECATION_MESSAGE
72
+ refund(money, authorization, options)
73
+ end
74
+
75
+ def refund(money, authorization, options = {})
76
+ commit(:credit, build_capture_or_credit_request(money, authorization, options))
77
+ end
78
+
79
+ private
80
+ def build_request(action, body)
81
+ xml = Builder::XmlMarkup.new
82
+
83
+ xml.instruct!
84
+ xml.tag! 'env:Envelope', ENVELOPE_NAMESPACES do
85
+ xml.tag! 'env:Body' do
86
+ xml.tag! 'n1:SendAndCommit', SEND_AND_COMMIT_ATTRIBUTES do
87
+ xml.tag! 'SendAndCommitSource', SEND_AND_COMMIT_SOURCE_ATTRIBUTES do
88
+ add_credentials(xml)
89
+ add_transaction_type(xml, action)
90
+ xml << body
91
+ end
92
+ end
93
+ end
94
+ end
95
+ xml.target!
96
+ end
97
+
98
+ def build_sale_or_authorization_request(money, credit_card, options)
99
+ xml = Builder::XmlMarkup.new
100
+
101
+ add_amount(xml, money)
102
+ add_credit_card(xml, credit_card)
103
+ add_customer_data(xml, options)
104
+ add_invoice(xml, options)
105
+
106
+ xml.target!
107
+ end
108
+
109
+ def build_capture_or_credit_request(money, identification, options)
110
+ xml = Builder::XmlMarkup.new
111
+
112
+ add_identification(xml, identification)
113
+ add_amount(xml, money)
114
+ add_customer_data(xml, options)
115
+
116
+ xml.target!
117
+ end
118
+
119
+ def add_credentials(xml)
120
+ xml.tag! 'ExactID', @options[:login]
121
+ xml.tag! 'Password', @options[:password]
122
+ end
123
+
124
+ def add_transaction_type(xml, action)
125
+ xml.tag! 'Transaction_Type', TRANSACTIONS[action]
126
+ end
127
+
128
+ def add_identification(xml, identification)
129
+ authorization_num, transaction_tag = identification.split(';')
130
+
131
+ xml.tag! 'Authorization_Num', authorization_num
132
+ xml.tag! 'Transaction_Tag', transaction_tag
133
+ end
134
+
135
+ def add_amount(xml, money)
136
+ xml.tag! 'DollarAmount', amount(money)
137
+ end
138
+
139
+ def add_credit_card(xml, credit_card)
140
+ xml.tag! 'Card_Number', credit_card.number
141
+ xml.tag! 'Expiry_Date', expdate(credit_card)
142
+ xml.tag! 'CardHoldersName', credit_card.name
143
+
144
+ if credit_card.verification_value?
145
+ xml.tag! 'CVD_Presence_Ind', '1'
146
+ xml.tag! 'VerificationStr2', credit_card.verification_value
147
+ end
148
+ end
149
+
150
+ def add_customer_data(xml, options)
151
+ xml.tag! 'Customer_Ref', options[:customer]
152
+ xml.tag! 'Client_IP', options[:ip]
153
+ xml.tag! 'Client_Email', options[:email]
154
+ end
155
+
156
+ def add_address(xml, options)
157
+ if address = options[:billing_address] || options[:address]
158
+ xml.tag! 'ZipCode', address[:zip]
159
+ end
160
+ end
161
+
162
+ def add_invoice(xml, options)
163
+ xml.tag! 'Reference_No', options[:order_id]
164
+ xml.tag! 'Reference_3', options[:description]
165
+ end
166
+
167
+ def expdate(credit_card)
168
+ "#{format(credit_card.month, :two_digits)}#{format(credit_card.year, :two_digits)}"
169
+ end
170
+
171
+ def commit(action, request)
172
+ response = parse(ssl_post(self.live_url, build_request(action, request), POST_HEADERS))
173
+
174
+ Response.new(successful?(response), message_from(response), response,
175
+ :test => test?,
176
+ :authorization => authorization_from(response),
177
+ :avs_result => { :code => response[:avs] },
178
+ :cvv_result => response[:cvv2]
179
+ )
180
+ end
181
+
182
+ def successful?(response)
183
+ response[:transaction_approved] == SUCCESS
184
+ end
185
+
186
+ def authorization_from(response)
187
+ if response[:authorization_num] && response[:transaction_tag]
188
+ "#{response[:authorization_num]};#{response[:transaction_tag]}"
189
+ else
190
+ ''
191
+ end
192
+ end
193
+
194
+ def message_from(response)
195
+ if response[:faultcode] && response[:faultstring]
196
+ response[:faultstring]
197
+ elsif response[:error_number] != '0'
198
+ response[:error_description]
199
+ else
200
+ result = response[:exact_message] || ''
201
+ result << " - #{response[:bank_message]}" unless response[:bank_message].blank?
202
+ result
203
+ end
204
+ end
205
+
206
+ def parse(xml)
207
+ response = {}
208
+ xml = REXML::Document.new(xml)
209
+
210
+ if root = REXML::XPath.first(xml, "//types:TransactionResult")
211
+ parse_elements(response, root)
212
+ elsif root = REXML::XPath.first(xml, "//soap:Fault")
213
+ parse_elements(response, root)
214
+ end
215
+
216
+ response.delete_if{ |k,v| SENSITIVE_FIELDS.include?(k) }
217
+ end
218
+
219
+ def parse_elements(response, root)
220
+ root.elements.to_a.each do |node|
221
+ response[node.name.gsub(/EXact/, 'Exact').underscore.to_sym] = (node.text || '').strip
222
+ end
223
+ end
224
+ end
225
+ end
226
+ end
227
+
@@ -0,0 +1,152 @@
1
+ require 'json'
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ class FatZebraGateway < Gateway
6
+ self.live_url = "https://gateway.fatzebra.com.au/v1.0"
7
+ self.test_url = "https://gateway.sandbox.fatzebra.com.au/v1.0"
8
+
9
+ self.supported_countries = ['AU']
10
+ self.default_currency = 'AUD'
11
+ self.money_format = :cents
12
+ self.supported_cardtypes = [:visa, :master, :american_express, :jcb]
13
+
14
+ self.homepage_url = 'https://www.fatzebra.com.au/'
15
+ self.display_name = 'Fat Zebra'
16
+
17
+ # Setup a new instance of the gateway.
18
+ #
19
+ # The options hash should include :username and :token
20
+ # You can find your username and token at https://dashboard.fatzebra.com.au
21
+ # Under the Your Account section
22
+ def initialize(options = {})
23
+ requires!(options, :username)
24
+ requires!(options, :token)
25
+ @username = options[:username]
26
+ @token = options[:token]
27
+ super
28
+ end
29
+
30
+ # To create a purchase on a credit card use:
31
+ #
32
+ # purchase(money, creditcard , { ... })
33
+ #
34
+ # To charge a tokenized card
35
+ #
36
+ # purchase(money, {:token => "abzy87u", :cvv => "123"}, { ... }})
37
+ def purchase(money, creditcard, options = {})
38
+ post = {}
39
+
40
+ add_amount(post, money, options)
41
+ add_creditcard(post, creditcard, options)
42
+ post[:reference] = options[:order_id]
43
+ post[:customer_ip] = options[:ip]
44
+
45
+ commit(:post, 'purchases', post)
46
+ end
47
+
48
+ # Refund a transaction
49
+ #
50
+ # amount - Integer - the amount to refund
51
+ # txn_id - String - the original transaction to be refunded
52
+ # reference - String - your transaction reference
53
+ def refund(money, txn_id, reference)
54
+ post = {}
55
+
56
+ post[:amount] = money
57
+ post[:transaction_id] = txn_id
58
+ post[:reference] = reference
59
+
60
+ commit(:post, "refunds", post)
61
+ end
62
+
63
+ # Tokenize a credit card
64
+ def store(creditcard)
65
+ post = {}
66
+ add_creditcard(post, creditcard)
67
+
68
+ commit(:post, "credit_cards", post)
69
+ end
70
+
71
+ private
72
+ # Add the money details to the request
73
+ def add_amount(post, money, options)
74
+ post[:amount] = money
75
+ end
76
+
77
+ # Add the credit card details to the request
78
+ def add_creditcard(post, creditcard, options = {})
79
+ if creditcard.respond_to?(:number)
80
+ post[:card_number] = creditcard.number
81
+ post[:card_expiry] = "#{creditcard.month}/#{creditcard.year}"
82
+ post[:cvv] = creditcard.verification_value if creditcard.verification_value?
83
+ post[:card_holder] = creditcard.name if creditcard.name
84
+ else
85
+ post[:card_token] = creditcard[:token]
86
+ post[:cvv] = creditcard[:cvv]
87
+ end
88
+ end
89
+
90
+ # Post the data to the gateway
91
+ def commit(method, uri, parameters=nil)
92
+ raw_response = response = nil
93
+ success = false
94
+ begin
95
+ raw_response = ssl_request(method, get_url(uri), parameters.to_json, headers)
96
+ response = parse(raw_response)
97
+ success = response["successful"] && (response["response"]["successful"] || response["response"]["token"])
98
+ rescue ResponseError => e
99
+ if e.response.code == "401"
100
+ return Response.new(false, "Invalid Login")
101
+ end
102
+
103
+ raw_response = e.response.body
104
+ response = parse(raw_response)
105
+ rescue JSON::ParserError
106
+ response = json_error(raw_response)
107
+ end
108
+
109
+ message = response["response"]["message"]
110
+ unless response["successful"]
111
+ # There is an error, so we will show that instead
112
+ message = response["errors"].empty? ? "Unknown Error" : response["errors"].join(", ")
113
+ end
114
+
115
+ Response.new(success,
116
+ message,
117
+ response,
118
+ :test => response.has_key?("test") ? response["test"] : false,
119
+ :authorization => response["response"]["id"] || response["response"]["token"])
120
+ end
121
+
122
+ # Parse the returned JSON, if parse errors are raised then return a detailed error.
123
+ def parse(response)
124
+ begin
125
+ JSON.parse(response)
126
+ rescue JSON::ParserError
127
+ msg = 'Invalid JSON response received from Fat Zebra. Please contact support@fatzebra.com.au if you continue to receive this message.'
128
+ msg += " (The raw response returned by the API was #{response.inspect})"
129
+ {
130
+ "successful" => false,
131
+ "response" => {},
132
+ "errors" => [msg]
133
+ }
134
+ end
135
+ end
136
+
137
+ # Build the URL based on the AM mode and the URI
138
+ def get_url(uri)
139
+ base = test? ? self.test_url : self.live_url
140
+ base + "/" + uri
141
+ end
142
+
143
+ # Builds the auth and U-A headers for the request
144
+ def headers
145
+ {
146
+ "Authorization" => "Basic " + Base64.strict_encode64(@username.to_s + ":" + @token.to_s).strip,
147
+ "User-Agent" => "Fat Zebra v1.0/ActiveMerchant #{ActiveMerchant::VERSION}"
148
+ }
149
+ end
150
+ end
151
+ end
152
+ end
@@ -0,0 +1,168 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class FederatedCanadaGateway < Gateway
4
+ # Same URL for both test and live, testing is done by using the test username (demo) and password (password).
5
+ self.live_url = self.test_url = 'https://secure.federatedgateway.com/api/transact.php'
6
+
7
+ APPROVED, DECLINED, ERROR = 1, 2, 3
8
+
9
+ # The countries the gateway supports merchants from as 2 digit ISO country codes
10
+ self.supported_countries = ['CA']
11
+
12
+ self.default_currency = 'CAD'
13
+
14
+ # The card types supported by the payment gateway
15
+ self.supported_cardtypes = [:visa, :master, :american_express, :discover]
16
+
17
+ # The homepage URL of the gateway
18
+ self.homepage_url = 'http://www.federatedcanada.com/'
19
+
20
+ # The name of the gateway
21
+ self.display_name = 'Federated Canada'
22
+
23
+ def initialize(options = {})
24
+ requires!(options, :login, :password)
25
+ @options = options
26
+ super
27
+ end
28
+
29
+ def purchase(money, creditcard, options = {})
30
+ post = {}
31
+ add_invoice(post, options)
32
+ add_creditcard(post, creditcard)
33
+ add_address(post, options)
34
+ add_customer_data(post, options)
35
+ commit('sale', money, post)
36
+ end
37
+
38
+ def authorize(money, creditcard, options = {})
39
+ post = {}
40
+ add_invoice(post, options)
41
+ add_creditcard(post, creditcard)
42
+ add_address(post, options)
43
+ add_customer_data(post, options)
44
+ commit('auth', money, post)
45
+ end
46
+
47
+ def capture(money, authorization, options = {})
48
+ options[:transactionid] = authorization
49
+ commit('capture', money, options)
50
+ end
51
+
52
+ def void(authorization, options = {})
53
+ options[:transactionid] = authorization
54
+ commit('void', nil, options)
55
+ end
56
+
57
+ def refund(money, authorization, options = {})
58
+ commit('refund', money, options.merge(:transactionid => authorization))
59
+ end
60
+
61
+ def credit(money, authorization, options = {})
62
+ deprecated CREDIT_DEPRECATION_MESSAGE
63
+ refund(money, authorization, options)
64
+ end
65
+
66
+ private
67
+
68
+ def add_customer_data(post, options)
69
+ post[:firstname] = options[:first_name]
70
+ post[:lastname] = options[:last_name]
71
+
72
+ post[:email] = options[:email]
73
+ end
74
+
75
+ def add_address(post, options)
76
+ if address = (options[:billing_address] || options[:address])
77
+ post[:company] = address[:company]
78
+ post[:address1] = address[:address1]
79
+ post[:address2] = address[:address2]
80
+ post[:city] = address[:city]
81
+ post[:state] = address[:state]
82
+ post[:zip] = address[:zip]
83
+ post[:country] = address[:country]
84
+ post[:phone] = address[:phone]
85
+ end
86
+ if address = options[:shipping_address]
87
+ post[:shipping_firstname] = address[:first_name]
88
+ post[:shipping_lastname] = address[:last_name]
89
+ post[:shipping_company] = address[:company]
90
+ post[:shipping_address1] = address[:address1]
91
+ post[:shipping_address2] = address[:address2]
92
+ post[:shipping_city] = address[:city]
93
+ post[:shipping_state] = address[:state]
94
+ post[:shipping_zip] = address[:zip]
95
+ post[:shipping_country] = address[:country]
96
+ post[:shipping_email] = address[:email]
97
+ end
98
+ end
99
+
100
+ def add_invoice(post, options)
101
+ post[:orderid] = options[:order_id]
102
+ post[:orderdescription] = options[:description]
103
+ end
104
+
105
+ def add_creditcard(post, creditcard)
106
+ post[:ccnumber] = creditcard.number
107
+ post[:ccexp] = expdate(creditcard)
108
+ post[:cvv] = creditcard.verification_value
109
+ end
110
+
111
+ def expdate(creditcard)
112
+ year = sprintf("%.4i", creditcard.year)
113
+ month = sprintf("%.2i", creditcard.month)
114
+ "#{month}#{year[-2..-1]}"
115
+ end
116
+
117
+ def parse(body)
118
+ body.split('&').inject({}) do |memo, x|
119
+ k, v = x.split('=')
120
+ memo[k] = v
121
+ memo
122
+ end
123
+ end
124
+
125
+ def commit(action, money, parameters)
126
+ parameters[:amount] = amount(money)
127
+ data = ssl_post(self.live_url, post_data(action, parameters))
128
+ response = parse(data)
129
+ message = message_from(response)
130
+ test_mode = test?
131
+
132
+ Response.new(success?(response), message, response,
133
+ :test => test?,
134
+ :authorization => response['transactionid'],
135
+ :avs_result => {:code => response['avsresponse']},
136
+ :cvv_result => response['cvvresponse']
137
+ )
138
+ end
139
+
140
+ def success?(response)
141
+ response['response'] == '1'
142
+ end
143
+
144
+ def test?
145
+ (@options[:login].eql?('demo')) && (@options[:password].eql?('password'))
146
+ end
147
+
148
+ def message_from(response)
149
+ case response['response'].to_i
150
+ when APPROVED
151
+ "Transaction Approved"
152
+ when DECLINED
153
+ "Transaction Declined"
154
+ else
155
+ "Error in transaction data or system error"
156
+ end
157
+ end
158
+
159
+ def post_data(action, parameters = {})
160
+ parameters[:type] = action
161
+ parameters[:username] = @options[:login]
162
+ parameters[:password] = @options[:password]
163
+ parameters.map{|k, v| "#{k}=#{CGI.escape(v.to_s)}"}.join('&')
164
+ end
165
+ end
166
+ end
167
+ end
168
+