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,462 @@
1
+ require 'json'
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+
6
+ # For more information on Balanced visit https://www.balancedpayments.com
7
+ # or visit #balanced on irc.freenode.net
8
+ #
9
+ # Instantiate a instance of BalancedGateway by passing through your
10
+ # Balanced API key secret.
11
+ #
12
+ # ==== To obtain an API key of your own
13
+ #
14
+ # 1. Visit https://www.balancedpayments.com
15
+ # 2. Click "Get started"
16
+ # 3. The next screen will give you a test API key of your own
17
+ # 4. When you're ready to generate a production API key click the "Go
18
+ # live" button on the Balanced dashboard and fill in your marketplace
19
+ # details.
20
+ #
21
+ # ==== Overview
22
+ #
23
+ # Balanced provides a RESTful API, all entities within Balanced are
24
+ # represented by their respective URIs, these are returned in the
25
+ # `authorization` parameter of the Active Merchant Response object.
26
+ #
27
+ # All Response objects will contain a hash property called `params` which
28
+ # holds the raw JSON dictionary returned by Balanced. You can find
29
+ # properties about the operation performed and the object that represents
30
+ # it within this hash.
31
+ #
32
+ # All operations within Balanced are tied to an account, as such, when you
33
+ # perform an `authorization` or a `capture` with a new credit card you
34
+ # must ensure you also pass the `:email` property within the `options`
35
+ # parameter.
36
+ #
37
+ # For more details about Balanced's API visit:
38
+ # https://www.balancedpayments.com/docs
39
+ #
40
+ # ==== Terminology & Transaction Flow
41
+ #
42
+ # * An `authorization` operation will return a Hold URI. An `authorization`
43
+ # within Balanced is valid until the `expires_at` property. You can see the
44
+ # exact date of the expiry on the Response object by inspecting the
45
+ # property `response.params['expires_at']`. The resulting Hold may be
46
+ # `capture`d or `void`ed at any time before the `expires_at` date for
47
+ # any amount up to the full amount of the original `authorization`.
48
+ # * A `capture` operation will return a Debit URI. You must pass the URI of
49
+ # the previously performed `authorization`
50
+ # * A `purchase` will create a Hold and Debit in a single operation and
51
+ # return the URI of the resulting Debit.
52
+ # * A `void` operation must be performed on an existing `authorization`
53
+ # and will result in releasing the funds reserved by the
54
+ # `authorization`.
55
+ # * The `refund` operation must be performed on a previously captured
56
+ # Debit URI. You may refund any fraction of the original amount of the
57
+ # debit up to the original total.
58
+ #
59
+ class BalancedGateway < Gateway
60
+ VERSION = '1.0.0'
61
+
62
+ TEST_URL = LIVE_URL = 'https://api.balancedpayments.com'
63
+
64
+ # The countries the gateway supports merchants from as 2 digit ISO
65
+ # country codes
66
+ self.supported_countries = ['US']
67
+ self.supported_cardtypes = [:visa, :master, :american_express, :discover]
68
+ self.homepage_url = 'https://www.balancedpayments.com/'
69
+ self.display_name = 'Balanced'
70
+ self.money_format = :cents
71
+
72
+ class Error < StandardError
73
+ attr_reader :response
74
+
75
+ def initialize(response, msg=nil)
76
+ @response = response
77
+ super(msg || response['description'])
78
+ end
79
+ end
80
+
81
+ class CardDeclined < Error
82
+ end
83
+
84
+ # Creates a new BalancedGateway
85
+ #
86
+ # The gateway requires that a valid api_key be passed in the +options+
87
+ # hash.
88
+ #
89
+ # ==== Options
90
+ #
91
+ # * <tt>:login</tt> -- The Balanced API Secret (REQUIRED)
92
+ def initialize(options = {})
93
+ requires!(options, :login)
94
+ @options = options
95
+ initialize_marketplace(options[:marketplace] || load_marketplace)
96
+ super
97
+ end
98
+
99
+ # Performs an authorization (Hold in Balanced nonclementure), which
100
+ # reserves the funds on the customer's credit card, but does not charge
101
+ # the card. An authorization is valid until the `expires_at` field in
102
+ # the params Hash passes. See `response.params['expires_at']`. The exact
103
+ # amount of time until an authorization expires depends on the card
104
+ # issuer.
105
+ #
106
+ # If you pass a previously tokenized `credit_card` URI the only other
107
+ # parameter required is `money`. If you pass `credit_card` as a hash of
108
+ # credit card information you must also pass `options` with a `:email`
109
+ # entry.
110
+ #
111
+ # ==== Parameters
112
+ #
113
+ # * <tt>money</tt> -- The amount to be authorized as an Integer value in cents.
114
+ # * <tt>credit_card</tt> -- A hash of credit card details for this
115
+ # transaction or the URI of a card previously stored in Balanced.
116
+ # * <tt>options</tt> -- A hash of optional parameters.
117
+ #
118
+ # ==== Options
119
+ #
120
+ # If you are passing a new credit card you must pass one of these two
121
+ # parameters
122
+ #
123
+ # * <tt>email</tt> -- the email address of user associated with this
124
+ # purchase.
125
+ # * <tt>account_uri</tt> -- `account_uri` is the URI of an existing
126
+ # Balanced account.
127
+ def authorize(money, credit_card, options = {})
128
+ if credit_card.respond_to?(:number)
129
+ requires!(options, :email) unless options[:account_uri]
130
+ end
131
+
132
+ post = {}
133
+ post[:amount] = money
134
+ post[:description] = options[:description]
135
+
136
+ create_or_find_account(post, options)
137
+ add_credit_card(post, credit_card, options)
138
+ add_address(credit_card, options)
139
+
140
+ create_transaction(:post, @holds_uri, post)
141
+ rescue Error => ex
142
+ failed_response(ex.response)
143
+ end
144
+
145
+ # Perform a purchase, which is an authorization and capture in a single
146
+ # operation.
147
+ #
148
+ # ==== Parameters
149
+ #
150
+ # * <tt>money</tt> -- The amount to be purchased as an Integer value in cents.
151
+ # * <tt>credit_card</tt> -- A hash of credit card details for this
152
+ # transaction or the URI of a card previously stored in Balanced.
153
+ # * <tt>options</tt> -- A hash of optional parameters.
154
+ #
155
+ # ==== Options
156
+ #
157
+ # If you are passing a new credit card you must pass one of these two
158
+ # parameters
159
+ #
160
+ # * <tt>email</tt> -- the email address of user associated with this
161
+ # purchase.
162
+ # * <tt>account_uri</tt> -- `account_uri` is the URI of an existing
163
+ # Balanced account.
164
+ def purchase(money, credit_card, options = {})
165
+ if credit_card.respond_to?('number')
166
+ requires!(options, :email) unless options[:account_uri]
167
+ end
168
+
169
+ post = {}
170
+ post[:amount] = money
171
+ post[:description] = options[:description]
172
+
173
+ create_or_find_account(post, options)
174
+ add_credit_card(post, credit_card, options)
175
+ add_address(credit_card, options)
176
+
177
+ create_transaction(:post, @debits_uri, post)
178
+ rescue Error => ex
179
+ failed_response(ex.response)
180
+ end
181
+
182
+ # Captures the funds from an authorized transaction (Hold).
183
+ #
184
+ # ==== Parameters
185
+ #
186
+ # * <tt>money</tt> -- The amount to be captured as an Integer value in
187
+ # cents. If omitted the full amount of the original authorization
188
+ # transaction will be captured.
189
+ # * <tt>authorization</tt> -- The uri of an authorization returned from
190
+ # an authorize request.
191
+ #
192
+ # ==== Options
193
+ #
194
+ # * <tt>description</tt> -- A string that will be displayed on the
195
+ # Balanced dashboard
196
+ def capture(money, authorization, options = {})
197
+ post = {}
198
+ post[:hold_uri] = authorization
199
+ post[:amount] = money if money
200
+ post[:description] = options[:description] if options[:description]
201
+
202
+ create_transaction(:post, @debits_uri, post)
203
+ rescue Error => ex
204
+ failed_response(ex.response)
205
+ end
206
+
207
+ # Void a previous authorization (Hold)
208
+ #
209
+ # ==== Parameters
210
+ #
211
+ # * <tt>authorization</tt> -- The uri of the authorization returned from
212
+ # an `authorize` request.
213
+ def void(authorization)
214
+ post = {}
215
+ post[:is_void] = true
216
+
217
+ create_transaction(:put, authorization, post)
218
+ rescue Error => ex
219
+ failed_response(ex.response)
220
+ end
221
+
222
+ # Refund a transaction.
223
+ #
224
+ # Returns the money debited from a card to the card from the
225
+ # marketplace's escrow balance.
226
+ #
227
+ # ==== Parameters
228
+ #
229
+ # * <tt>debit_uri</tt> -- The uri of the original transaction against
230
+ # which the refund is being issued.
231
+ # * <tt>options</tt> -- A hash of parameters.
232
+ #
233
+ # ==== Options
234
+ #
235
+ # * <tt>`:amount`<tt> -- specify an amount if you want to perform a
236
+ # partial refund. This value will default to the total amount of the
237
+ # debit that has not been refunded so far.
238
+ def refund(debit_uri, options = {})
239
+ requires!(debit_uri)
240
+ post = {}
241
+ post[:debit_uri] = debit_uri
242
+ post[:amount] = options[:amount] if options[:amount]
243
+ post[:description] = options[:description]
244
+ create_transaction(:post, @refunds_uri, post)
245
+ rescue Error => ex
246
+ failed_response(ex.response)
247
+ end
248
+
249
+ # Stores a card and email address
250
+ #
251
+ # ==== Parameters
252
+ #
253
+ # * <tt>credit_card</tt> --
254
+ def store(credit_card, options = {})
255
+ requires!(options, :email)
256
+ post = {}
257
+ account_uri = create_or_find_account(post, options)
258
+ if credit_card.respond_to? :number
259
+ add_credit_card(post, credit_card, options)
260
+ else
261
+ associate_card_to_account(account_uri, credit_card)
262
+ credit_card
263
+ end
264
+ rescue Error => ex
265
+ failed_response(ex.response)
266
+ end
267
+
268
+ private
269
+
270
+ # Load URIs for this marketplace by inspecting the marketplace object
271
+ # returned from the uri. http://en.wikipedia.org/wiki/HATEOAS
272
+ def load_marketplace
273
+ response = http_request(:get, '/v1/marketplaces')
274
+ if error?(response)
275
+ raise Error.new(response, 'Invalid login credentials supplied')
276
+ end
277
+ response['items'][0]
278
+ end
279
+
280
+ def initialize_marketplace(marketplace)
281
+ @marketplace_uri = marketplace['uri']
282
+ @holds_uri = marketplace['holds_uri']
283
+ @debits_uri = marketplace['debits_uri']
284
+ @cards_uri = marketplace['cards_uri']
285
+ @accounts_uri = marketplace['accounts_uri']
286
+ @refunds_uri = marketplace['refunds_uri']
287
+ end
288
+
289
+ def create_or_find_account(post, options)
290
+ account_uri = nil
291
+
292
+ if options.has_key? :account_uri
293
+ account_uri = options[:account_uri]
294
+ end
295
+
296
+ if account_uri == nil
297
+ post[:email_address] = options[:email]
298
+
299
+ # create an account
300
+ response = http_request(:post, @accounts_uri, post)
301
+
302
+ if response.has_key? 'uri'
303
+ account_uri = response['uri']
304
+ elsif error?(response)
305
+ # lookup account from Balanced, account_uri should be in the
306
+ # exception in a dictionary called extras
307
+ account_uri = response['extras']['account_uri']
308
+ end
309
+ end
310
+
311
+ post[:account_uri] = account_uri
312
+
313
+ account_uri
314
+ end
315
+
316
+ def add_address(credit_card, options)
317
+ return unless credit_card.kind_of?(Hash)
318
+ if address = options[:billing_address] || options[:address]
319
+ credit_card[:street_address] = address[:address1] if address[:address1]
320
+ credit_card[:street_address] += ' ' + address[:address2] if address[:address2]
321
+ credit_card[:postal_code] = address[:zip] if address[:zip]
322
+ credit_card[:country] = address[:country] if address[:country]
323
+ end
324
+ end
325
+
326
+ def add_credit_card(post, credit_card, options)
327
+ if credit_card.respond_to? :number
328
+ card = {}
329
+ card[:card_number] = credit_card.number
330
+ card[:expiration_month] = credit_card.month
331
+ card[:expiration_year] = credit_card.year
332
+ card[:security_code] = credit_card.verification_value if credit_card.verification_value?
333
+ card[:name] = credit_card.name if credit_card.name
334
+
335
+ add_address(card, options)
336
+
337
+ response = http_request(:post, @cards_uri, card)
338
+ if error?(response)
339
+ raise CardDeclined, response
340
+ end
341
+ card_uri = response['uri']
342
+
343
+ associate_card_to_account(post[:account_uri], card_uri)
344
+
345
+ post[:card_uri] = card_uri
346
+ elsif credit_card.kind_of?(String)
347
+ post[:card_uri] = credit_card
348
+ end
349
+
350
+ post[:card_uri]
351
+ end
352
+
353
+ def associate_card_to_account(account_uri, card_uri)
354
+ http_request(:put, account_uri, :card_uri => card_uri)
355
+ end
356
+
357
+ def http_request(method, url, parameters={}, meta={})
358
+ begin
359
+ if method == :get
360
+ raw_response = ssl_get(LIVE_URL + url, headers(meta))
361
+ else
362
+ raw_response = ssl_request(method,
363
+ LIVE_URL + url,
364
+ post_data(parameters),
365
+ headers(meta))
366
+ end
367
+ parse(raw_response)
368
+ rescue ResponseError => e
369
+ raw_response = e.response.body
370
+ response_error(raw_response)
371
+ rescue JSON::ParserError
372
+ json_error(raw_response)
373
+ end
374
+ end
375
+
376
+ def create_transaction(method, url, parameters, meta={})
377
+ response = http_request(method, url, parameters, meta)
378
+ success = !error?(response)
379
+
380
+ Response.new(success,
381
+ (success ? "Transaction approved" : response["description"]),
382
+ response,
383
+ :test => (@marketplace_uri.index("TEST") ? true : false),
384
+ :authorization => response["uri"]
385
+ )
386
+ end
387
+
388
+ def failed_response(response)
389
+ is_test = false
390
+ if @marketplace_uri
391
+ is_test = (@marketplace_uri.index("TEST") ? true : false)
392
+ end
393
+
394
+ Response.new(false,
395
+ response["description"],
396
+ response,
397
+ :test => is_test
398
+ )
399
+ end
400
+
401
+ def parse(body)
402
+ JSON.parse(body)
403
+ end
404
+
405
+ def response_error(raw_response)
406
+ begin
407
+ parse(raw_response)
408
+ rescue JSON::ParserError
409
+ json_error(raw_response)
410
+ end
411
+ end
412
+
413
+ def json_error(raw_response)
414
+ msg = 'Invalid response received from the Balanced API. Please contact support@balancedpayments.com if you continue to receive this message.'
415
+ msg += " (The raw response returned by the API was #{raw_response.inspect})"
416
+ {
417
+ "error" => {
418
+ "message" => msg
419
+ }
420
+ }
421
+ end
422
+
423
+ def error?(response)
424
+ response.key?('status_code')
425
+ end
426
+
427
+ def post_data(params)
428
+ return nil unless params
429
+
430
+ params.map do |key, value|
431
+ next if value.blank?
432
+ if value.is_a?(Hash)
433
+ h = {}
434
+ value.each do |k, v|
435
+ h["#{key}[#{k}]"] = v unless v.blank?
436
+ end
437
+ post_data(h)
438
+ else
439
+ "#{key}=#{CGI.escape(value.to_s)}"
440
+ end
441
+ end.compact.join("&")
442
+ end
443
+
444
+ def headers(meta={})
445
+ @@ua ||= JSON.dump({
446
+ :bindings_version => ActiveMerchant::VERSION,
447
+ :lang => 'ruby',
448
+ :lang_version => "#{RUBY_VERSION} p#{RUBY_PATCHLEVEL} (#{RUBY_RELEASE_DATE})",
449
+ :lib_version => BalancedGateway::VERSION,
450
+ :platform => RUBY_PLATFORM,
451
+ :publisher => 'active_merchant'
452
+ })
453
+
454
+ {
455
+ "Authorization" => "Basic " + Base64.encode64(@options[:login].to_s + ":").strip,
456
+ "User-Agent" => "Balanced/v1 ActiveMerchantBindings/#{ActiveMerchant::VERSION}",
457
+ "X-Balanced-User-Agent" => @@ua,
458
+ }
459
+ end
460
+ end
461
+ end
462
+ end