active_accountability_merchant 1.97.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (259) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG +2948 -0
  3. data/CONTRIBUTORS +568 -0
  4. data/MIT-LICENSE +20 -0
  5. data/README.md +246 -0
  6. data/lib/active_merchant.rb +63 -0
  7. data/lib/active_merchant/billing.rb +15 -0
  8. data/lib/active_merchant/billing/apple_pay_payment_token.rb +22 -0
  9. data/lib/active_merchant/billing/avs_result.rb +96 -0
  10. data/lib/active_merchant/billing/base.rb +61 -0
  11. data/lib/active_merchant/billing/check.rb +80 -0
  12. data/lib/active_merchant/billing/compatibility.rb +117 -0
  13. data/lib/active_merchant/billing/credit_card.rb +406 -0
  14. data/lib/active_merchant/billing/credit_card_formatting.rb +23 -0
  15. data/lib/active_merchant/billing/credit_card_methods.rb +343 -0
  16. data/lib/active_merchant/billing/cvv_result.rb +38 -0
  17. data/lib/active_merchant/billing/gateway.rb +330 -0
  18. data/lib/active_merchant/billing/gateways.rb +14 -0
  19. data/lib/active_merchant/billing/gateways/adyen.rb +503 -0
  20. data/lib/active_merchant/billing/gateways/allied_wallet.rb +205 -0
  21. data/lib/active_merchant/billing/gateways/authorize_net.rb +1055 -0
  22. data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +417 -0
  23. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +980 -0
  24. data/lib/active_merchant/billing/gateways/axcessms.rb +181 -0
  25. data/lib/active_merchant/billing/gateways/balanced.rb +256 -0
  26. data/lib/active_merchant/billing/gateways/bambora_apac.rb +226 -0
  27. data/lib/active_merchant/billing/gateways/bank_frick.rb +225 -0
  28. data/lib/active_merchant/billing/gateways/banwire.rb +116 -0
  29. data/lib/active_merchant/billing/gateways/barclaycard_smartpay.rb +384 -0
  30. data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +15 -0
  31. data/lib/active_merchant/billing/gateways/be2bill.rb +131 -0
  32. data/lib/active_merchant/billing/gateways/beanstream.rb +217 -0
  33. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +473 -0
  34. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +57 -0
  35. data/lib/active_merchant/billing/gateways/blue_pay.rb +522 -0
  36. data/lib/active_merchant/billing/gateways/blue_snap.rb +522 -0
  37. data/lib/active_merchant/billing/gateways/bogus.rb +186 -0
  38. data/lib/active_merchant/billing/gateways/borgun.rb +220 -0
  39. data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
  40. data/lib/active_merchant/billing/gateways/braintree.rb +19 -0
  41. data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +22 -0
  42. data/lib/active_merchant/billing/gateways/braintree_blue.rb +740 -0
  43. data/lib/active_merchant/billing/gateways/braintree_orange.rb +19 -0
  44. data/lib/active_merchant/billing/gateways/bridge_pay.rb +244 -0
  45. data/lib/active_merchant/billing/gateways/cams.rb +230 -0
  46. data/lib/active_merchant/billing/gateways/card_connect.rb +316 -0
  47. data/lib/active_merchant/billing/gateways/card_save.rb +22 -0
  48. data/lib/active_merchant/billing/gateways/card_stream.rb +367 -0
  49. data/lib/active_merchant/billing/gateways/cardknox.rb +327 -0
  50. data/lib/active_merchant/billing/gateways/cardprocess.rb +254 -0
  51. data/lib/active_merchant/billing/gateways/cashnet.rb +219 -0
  52. data/lib/active_merchant/billing/gateways/cc5.rb +198 -0
  53. data/lib/active_merchant/billing/gateways/cecabank.rb +249 -0
  54. data/lib/active_merchant/billing/gateways/cenpos.rb +327 -0
  55. data/lib/active_merchant/billing/gateways/checkout.rb +214 -0
  56. data/lib/active_merchant/billing/gateways/checkout_v2.rb +270 -0
  57. data/lib/active_merchant/billing/gateways/citrus_pay.rb +22 -0
  58. data/lib/active_merchant/billing/gateways/clearhaus.rb +220 -0
  59. data/lib/active_merchant/billing/gateways/commercegate.rb +142 -0
  60. data/lib/active_merchant/billing/gateways/conekta.rb +228 -0
  61. data/lib/active_merchant/billing/gateways/creditcall.rb +271 -0
  62. data/lib/active_merchant/billing/gateways/credorax.rb +382 -0
  63. data/lib/active_merchant/billing/gateways/ct_payment.rb +268 -0
  64. data/lib/active_merchant/billing/gateways/culqi.rb +277 -0
  65. data/lib/active_merchant/billing/gateways/cyber_source.rb +828 -0
  66. data/lib/active_merchant/billing/gateways/d_local.rb +226 -0
  67. data/lib/active_merchant/billing/gateways/data_cash.rb +305 -0
  68. data/lib/active_merchant/billing/gateways/decidir.rb +233 -0
  69. data/lib/active_merchant/billing/gateways/dibs.rb +199 -0
  70. data/lib/active_merchant/billing/gateways/digitzs.rb +292 -0
  71. data/lib/active_merchant/billing/gateways/ebanx.rb +296 -0
  72. data/lib/active_merchant/billing/gateways/efsnet.rb +215 -0
  73. data/lib/active_merchant/billing/gateways/elavon.rb +320 -0
  74. data/lib/active_merchant/billing/gateways/element.rb +356 -0
  75. data/lib/active_merchant/billing/gateways/epay.rb +285 -0
  76. data/lib/active_merchant/billing/gateways/evo_ca.rb +308 -0
  77. data/lib/active_merchant/billing/gateways/eway.rb +226 -0
  78. data/lib/active_merchant/billing/gateways/eway_managed.rb +290 -0
  79. data/lib/active_merchant/billing/gateways/eway_rapid.rb +563 -0
  80. data/lib/active_merchant/billing/gateways/exact.rb +224 -0
  81. data/lib/active_merchant/billing/gateways/ezic.rb +195 -0
  82. data/lib/active_merchant/billing/gateways/fat_zebra.rb +218 -0
  83. data/lib/active_merchant/billing/gateways/federated_canada.rb +159 -0
  84. data/lib/active_merchant/billing/gateways/finansbank.rb +22 -0
  85. data/lib/active_merchant/billing/gateways/first_giving.rb +142 -0
  86. data/lib/active_merchant/billing/gateways/first_pay.rb +182 -0
  87. data/lib/active_merchant/billing/gateways/firstdata_e4.rb +451 -0
  88. data/lib/active_merchant/billing/gateways/firstdata_e4_v27.rb +485 -0
  89. data/lib/active_merchant/billing/gateways/flo2cash.rb +215 -0
  90. data/lib/active_merchant/billing/gateways/flo2cash_simple.rb +20 -0
  91. data/lib/active_merchant/billing/gateways/forte.rb +270 -0
  92. data/lib/active_merchant/billing/gateways/garanti.rb +259 -0
  93. data/lib/active_merchant/billing/gateways/global_collect.rb +336 -0
  94. data/lib/active_merchant/billing/gateways/global_transport.rb +194 -0
  95. data/lib/active_merchant/billing/gateways/hdfc.rb +206 -0
  96. data/lib/active_merchant/billing/gateways/hps.rb +350 -0
  97. data/lib/active_merchant/billing/gateways/iats_payments.rb +290 -0
  98. data/lib/active_merchant/billing/gateways/in_context_paypal_express.rb +15 -0
  99. data/lib/active_merchant/billing/gateways/inspire.rb +218 -0
  100. data/lib/active_merchant/billing/gateways/instapay.rb +162 -0
  101. data/lib/active_merchant/billing/gateways/ipp.rb +176 -0
  102. data/lib/active_merchant/billing/gateways/iridium.rb +468 -0
  103. data/lib/active_merchant/billing/gateways/itransact.rb +447 -0
  104. data/lib/active_merchant/billing/gateways/iveri.rb +251 -0
  105. data/lib/active_merchant/billing/gateways/jetpay.rb +402 -0
  106. data/lib/active_merchant/billing/gateways/jetpay_v2.rb +437 -0
  107. data/lib/active_merchant/billing/gateways/komoju.rb +115 -0
  108. data/lib/active_merchant/billing/gateways/kushki.rb +219 -0
  109. data/lib/active_merchant/billing/gateways/latitude19.rb +411 -0
  110. data/lib/active_merchant/billing/gateways/linkpoint.rb +449 -0
  111. data/lib/active_merchant/billing/gateways/litle.rb +507 -0
  112. data/lib/active_merchant/billing/gateways/mastercard.rb +267 -0
  113. data/lib/active_merchant/billing/gateways/maxipago.rb +220 -0
  114. data/lib/active_merchant/billing/gateways/mercado_pago.rb +277 -0
  115. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +194 -0
  116. data/lib/active_merchant/billing/gateways/merchant_one.rb +113 -0
  117. data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
  118. data/lib/active_merchant/billing/gateways/merchant_ware.rb +319 -0
  119. data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +286 -0
  120. data/lib/active_merchant/billing/gateways/merchant_warrior.rb +210 -0
  121. data/lib/active_merchant/billing/gateways/mercury.rb +356 -0
  122. data/lib/active_merchant/billing/gateways/metrics_global.rb +303 -0
  123. data/lib/active_merchant/billing/gateways/micropayment.rb +183 -0
  124. data/lib/active_merchant/billing/gateways/migs.rb +332 -0
  125. data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +100 -0
  126. data/lib/active_merchant/billing/gateways/modern_payments.rb +37 -0
  127. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +217 -0
  128. data/lib/active_merchant/billing/gateways/monei.rb +338 -0
  129. data/lib/active_merchant/billing/gateways/moneris.rb +377 -0
  130. data/lib/active_merchant/billing/gateways/moneris_us.rb +352 -0
  131. data/lib/active_merchant/billing/gateways/money_movers.rb +151 -0
  132. data/lib/active_merchant/billing/gateways/mundipagg.rb +293 -0
  133. data/lib/active_merchant/billing/gateways/nab_transact.rb +301 -0
  134. data/lib/active_merchant/billing/gateways/ncr_secure_pay.rb +165 -0
  135. data/lib/active_merchant/billing/gateways/net_registry.rb +199 -0
  136. data/lib/active_merchant/billing/gateways/netaxept.rb +180 -0
  137. data/lib/active_merchant/billing/gateways/netbanx.rb +294 -0
  138. data/lib/active_merchant/billing/gateways/netbilling.rb +232 -0
  139. data/lib/active_merchant/billing/gateways/netpay.rb +222 -0
  140. data/lib/active_merchant/billing/gateways/network_merchants.rb +241 -0
  141. data/lib/active_merchant/billing/gateways/nmi.rb +324 -0
  142. data/lib/active_merchant/billing/gateways/ogone.rb +478 -0
  143. data/lib/active_merchant/billing/gateways/omise.rb +324 -0
  144. data/lib/active_merchant/billing/gateways/openpay.rb +228 -0
  145. data/lib/active_merchant/billing/gateways/opp.rb +388 -0
  146. data/lib/active_merchant/billing/gateways/optimal_payment.rb +332 -0
  147. data/lib/active_merchant/billing/gateways/orbital.rb +1006 -0
  148. data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +47 -0
  149. data/lib/active_merchant/billing/gateways/pac_net_raven.rb +206 -0
  150. data/lib/active_merchant/billing/gateways/pagarme.rb +246 -0
  151. data/lib/active_merchant/billing/gateways/pago_facil.rb +122 -0
  152. data/lib/active_merchant/billing/gateways/pay_conex.rb +245 -0
  153. data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +280 -0
  154. data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
  155. data/lib/active_merchant/billing/gateways/pay_junction.rb +390 -0
  156. data/lib/active_merchant/billing/gateways/pay_junction_v2.rb +188 -0
  157. data/lib/active_merchant/billing/gateways/pay_secure.rb +111 -0
  158. data/lib/active_merchant/billing/gateways/paybox_direct.rb +200 -0
  159. data/lib/active_merchant/billing/gateways/payeezy.rb +410 -0
  160. data/lib/active_merchant/billing/gateways/payex.rb +410 -0
  161. data/lib/active_merchant/billing/gateways/payflow.rb +383 -0
  162. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +235 -0
  163. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +43 -0
  164. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  165. data/lib/active_merchant/billing/gateways/payflow_express.rb +220 -0
  166. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +14 -0
  167. data/lib/active_merchant/billing/gateways/payflow_uk.rb +20 -0
  168. data/lib/active_merchant/billing/gateways/payment_express.rb +369 -0
  169. data/lib/active_merchant/billing/gateways/paymentez.rb +300 -0
  170. data/lib/active_merchant/billing/gateways/paymill.rb +371 -0
  171. data/lib/active_merchant/billing/gateways/paypal.rb +128 -0
  172. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +717 -0
  173. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +65 -0
  174. data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +262 -0
  175. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  176. data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +44 -0
  177. data/lib/active_merchant/billing/gateways/paypal_express.rb +269 -0
  178. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +30 -0
  179. data/lib/active_merchant/billing/gateways/payscout.rb +160 -0
  180. data/lib/active_merchant/billing/gateways/paystation.rb +207 -0
  181. data/lib/active_merchant/billing/gateways/payu_in.rb +248 -0
  182. data/lib/active_merchant/billing/gateways/payu_latam.rb +449 -0
  183. data/lib/active_merchant/billing/gateways/payway.rb +207 -0
  184. data/lib/active_merchant/billing/gateways/pin.rb +234 -0
  185. data/lib/active_merchant/billing/gateways/plugnpay.rb +284 -0
  186. data/lib/active_merchant/billing/gateways/pro_pay.rb +326 -0
  187. data/lib/active_merchant/billing/gateways/psigate.rb +227 -0
  188. data/lib/active_merchant/billing/gateways/psl_card.rb +296 -0
  189. data/lib/active_merchant/billing/gateways/qbms.rb +303 -0
  190. data/lib/active_merchant/billing/gateways/quantum.rb +276 -0
  191. data/lib/active_merchant/billing/gateways/quickbooks.rb +290 -0
  192. data/lib/active_merchant/billing/gateways/quickpay.rb +25 -0
  193. data/lib/active_merchant/billing/gateways/quickpay/quickpay_common.rb +184 -0
  194. data/lib/active_merchant/billing/gateways/quickpay/quickpay_v10.rb +301 -0
  195. data/lib/active_merchant/billing/gateways/quickpay/quickpay_v4to7.rb +226 -0
  196. data/lib/active_merchant/billing/gateways/qvalent.rb +289 -0
  197. data/lib/active_merchant/billing/gateways/realex.rb +374 -0
  198. data/lib/active_merchant/billing/gateways/redsys.rb +534 -0
  199. data/lib/active_merchant/billing/gateways/s5.rb +246 -0
  200. data/lib/active_merchant/billing/gateways/safe_charge.rb +262 -0
  201. data/lib/active_merchant/billing/gateways/sage.rb +448 -0
  202. data/lib/active_merchant/billing/gateways/sage_pay.rb +434 -0
  203. data/lib/active_merchant/billing/gateways/sallie_mae.rb +142 -0
  204. data/lib/active_merchant/billing/gateways/secure_net.rb +267 -0
  205. data/lib/active_merchant/billing/gateways/secure_pay.rb +200 -0
  206. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +292 -0
  207. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +104 -0
  208. data/lib/active_merchant/billing/gateways/securion_pay.rb +264 -0
  209. data/lib/active_merchant/billing/gateways/skip_jack.rb +450 -0
  210. data/lib/active_merchant/billing/gateways/smart_ps.rb +280 -0
  211. data/lib/active_merchant/billing/gateways/so_easy_pay.rb +194 -0
  212. data/lib/active_merchant/billing/gateways/spreedly_core.rb +306 -0
  213. data/lib/active_merchant/billing/gateways/stripe.rb +790 -0
  214. data/lib/active_merchant/billing/gateways/stripe_payment_intents.rb +267 -0
  215. data/lib/active_merchant/billing/gateways/swipe_checkout.rb +152 -0
  216. data/lib/active_merchant/billing/gateways/telr.rb +274 -0
  217. data/lib/active_merchant/billing/gateways/tns.rb +22 -0
  218. data/lib/active_merchant/billing/gateways/trans_first.rb +239 -0
  219. data/lib/active_merchant/billing/gateways/trans_first_transaction_express.rb +608 -0
  220. data/lib/active_merchant/billing/gateways/transact_pro.rb +224 -0
  221. data/lib/active_merchant/billing/gateways/transax.rb +22 -0
  222. data/lib/active_merchant/billing/gateways/transnational.rb +9 -0
  223. data/lib/active_merchant/billing/gateways/trexle.rb +218 -0
  224. data/lib/active_merchant/billing/gateways/trust_commerce.rb +490 -0
  225. data/lib/active_merchant/billing/gateways/usa_epay.rb +25 -0
  226. data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +1620 -0
  227. data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +355 -0
  228. data/lib/active_merchant/billing/gateways/vanco.rb +294 -0
  229. data/lib/active_merchant/billing/gateways/verifi.rb +225 -0
  230. data/lib/active_merchant/billing/gateways/viaklix.rb +176 -0
  231. data/lib/active_merchant/billing/gateways/visanet_peru.rb +245 -0
  232. data/lib/active_merchant/billing/gateways/webpay.rb +97 -0
  233. data/lib/active_merchant/billing/gateways/wepay.rb +237 -0
  234. data/lib/active_merchant/billing/gateways/wirecard.rb +432 -0
  235. data/lib/active_merchant/billing/gateways/world_net.rb +344 -0
  236. data/lib/active_merchant/billing/gateways/worldpay.rb +634 -0
  237. data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +215 -0
  238. data/lib/active_merchant/billing/gateways/worldpay_us.rb +221 -0
  239. data/lib/active_merchant/billing/model.rb +30 -0
  240. data/lib/active_merchant/billing/network_tokenization_credit_card.rb +39 -0
  241. data/lib/active_merchant/billing/payment_token.rb +21 -0
  242. data/lib/active_merchant/billing/rails.rb +3 -0
  243. data/lib/active_merchant/billing/response.rb +92 -0
  244. data/lib/active_merchant/connection.rb +195 -0
  245. data/lib/active_merchant/country.rb +336 -0
  246. data/lib/active_merchant/empty.rb +20 -0
  247. data/lib/active_merchant/errors.rb +35 -0
  248. data/lib/active_merchant/net_http_ssl_connection.rb +10 -0
  249. data/lib/active_merchant/network_connection_retries.rb +80 -0
  250. data/lib/active_merchant/post_data.rb +25 -0
  251. data/lib/active_merchant/posts_data.rb +92 -0
  252. data/lib/active_merchant/version.rb +3 -0
  253. data/lib/activemerchant.rb +1 -0
  254. data/lib/certs/cacert.pem +3988 -0
  255. data/lib/support/gateway_support.rb +69 -0
  256. data/lib/support/outbound_hosts.rb +28 -0
  257. data/lib/support/ssl_verify.rb +92 -0
  258. data/lib/support/ssl_version.rb +87 -0
  259. metadata +435 -0
@@ -0,0 +1,324 @@
1
+ require 'active_merchant/billing/rails'
2
+
3
+ module ActiveMerchant #:nodoc:
4
+ module Billing #:nodoc:
5
+ class OmiseGateway < Gateway
6
+ API_URL = 'https://api.omise.co/'
7
+ VAULT_URL = 'https://vault.omise.co/'
8
+
9
+ STANDARD_ERROR_CODE_MAPPING = {
10
+ 'invalid_security_code' => STANDARD_ERROR_CODE[:invalid_cvc],
11
+ 'failed_capture' => STANDARD_ERROR_CODE[:card_declined]
12
+ }
13
+
14
+ self.live_url = self.test_url = API_URL
15
+
16
+ # Currency supported by Omise
17
+ # * Thai Baht with Satang, 50000 (THB500.00)
18
+ # * Japanese Yen, 500 (JPY500)
19
+ self.default_currency = 'THB'
20
+ self.money_format = :cents
21
+
22
+ # Country supported by Omise
23
+ # * Thailand
24
+ self.supported_countries = %w( TH JP )
25
+
26
+ # Credit cards supported by Omise
27
+ # * VISA
28
+ # * MasterCard
29
+ # * JCB
30
+ self.supported_cardtypes = [:visa, :master, :jcb]
31
+
32
+ # Omise main page
33
+ self.homepage_url = 'https://www.omise.co/'
34
+ self.display_name = 'Omise'
35
+
36
+ # Creates a new OmiseGateway.
37
+ #
38
+ # Omise requires public_key for token creation.
39
+ # And it requires secret_key for other transactions.
40
+ # These keys can be found in https://dashboard.omise.co/test/api-keys
41
+ #
42
+ # ==== Options
43
+ #
44
+ # * <tt>:public_key</tt> -- Omise's public key (REQUIRED).
45
+ # * <tt>:secret_key</tt> -- Omise's secret key (REQUIRED).
46
+ # * <tt>:api_version</tt> -- Omise's API Version (OPTIONAL), default version is '2014-07-27'
47
+ # See version at page https://dashboard.omise.co/api-version/edit
48
+
49
+ def initialize(options={})
50
+ requires!(options, :public_key, :secret_key)
51
+ @public_key = options[:public_key]
52
+ @secret_key = options[:secret_key]
53
+ @api_version = options[:api_version]
54
+ super
55
+ end
56
+
57
+ # Perform a purchase (with auto capture)
58
+ #
59
+ # ==== Parameters
60
+ #
61
+ # * <tt>money</tt> -- The purchasing amount in Thai Baht Satang
62
+ # * <tt>payment_method</tt> -- The CreditCard object
63
+ # * <tt>options</tt> -- An optional parameters, such as token from Omise.js
64
+ #
65
+ # ==== Options
66
+ # * <tt>token_id</tt> -- token id, use Omise.js library to retrieve a token id
67
+ # if this is passed as an option, it will ignore tokenizing via Omisevaultgateway object
68
+ #
69
+ # === Example
70
+ # To create a charge on a card
71
+ #
72
+ # purchase(money, Creditcard_object)
73
+ #
74
+ # To create a charge on a token
75
+ #
76
+ # purchase(money, nil, { :token_id => token_id, ... })
77
+ #
78
+ # To create a charge on a customer
79
+ #
80
+ # purchase(money, nil, { :customer_id => customer_id })
81
+
82
+ def purchase(money, payment_method, options={})
83
+ create_charge(money, payment_method, options)
84
+ end
85
+
86
+ # Authorize a charge.
87
+ #
88
+ # ==== Parameters
89
+ #
90
+ # * <tt>money</tt> -- The purchasing amount in Thai Baht Satang
91
+ # * <tt>payment_method</tt> -- The CreditCard object
92
+ # * <tt>options</tt> -- An optional parameters, such as token or capture
93
+
94
+ def authorize(money, payment_method, options={})
95
+ options[:capture] = 'false'
96
+ create_charge(money, payment_method, options)
97
+ end
98
+
99
+ # Capture an authorized charge.
100
+ #
101
+ # ==== Parameters
102
+ #
103
+ # * <tt>money</tt> -- An amount in Thai Baht Satang
104
+ # * <tt>charge_id</tt> -- The CreditCard object
105
+ # * <tt>options</tt> -- An optional parameters, such as token or capture
106
+
107
+ def capture(money, charge_id, options={})
108
+ post = {}
109
+ add_amount(post, money, options)
110
+ commit(:post, "charges/#{CGI.escape(charge_id)}/capture", post, options)
111
+ end
112
+
113
+ # Refund a charge.
114
+ #
115
+ # ==== Parameters
116
+ #
117
+ # * <tt>money</tt> -- An amount of money to charge in Satang.
118
+ # * <tt>charge_id</tt> -- The CreditCard object
119
+ # * <tt>options</tt> -- An optional parameters, such as token or capture
120
+
121
+ def refund(money, charge_id, options={})
122
+ options[:amount] = money if money
123
+ commit(:post, "charges/#{CGI.escape(charge_id)}/refunds", options)
124
+ end
125
+
126
+ # Store a card details as customer
127
+ #
128
+ # ==== Parameters
129
+ #
130
+ # * <tt>payment_method</tt> -- The CreditCard.
131
+ # * <tt>options</tt> -- Optional Customer information:
132
+ # 'email' (A customer email)
133
+ # 'description' (A customer description)
134
+
135
+ def store(payment_method, options={})
136
+ post, card_params = {}, {}
137
+ add_customer_data(post, options)
138
+ add_token(card_params, payment_method, options)
139
+ commit(:post, 'customers', post.merge(card_params), options)
140
+ end
141
+
142
+ # Delete a customer and all associated credit cards.
143
+ #
144
+ # ==== Parameters
145
+ #
146
+ # * <tt>customer_id</tt> -- The Customer identifier (REQUIRED).
147
+
148
+ def unstore(customer_id, options={})
149
+ commit(:delete, "customers/#{CGI.escape(customer_id)}")
150
+ end
151
+
152
+ # Enable scrubbing sensitive information
153
+ def supports_scrubbing?
154
+ true
155
+ end
156
+
157
+ # Scrub sensitive information out of HTTP transcripts
158
+ #
159
+ # ==== Parameters
160
+ #
161
+ # * <tt>transcript</tt> -- The HTTP transcripts
162
+
163
+ def scrub(transcript)
164
+ transcript.
165
+ gsub(/(Authorization: Basic )\w+/i, '\1[FILTERED]').
166
+ gsub(/(\\"number\\":)\\"\d+\\"/, '\1[FILTERED]').
167
+ gsub(/(\\"security_code\\":)\\"\d+\\"/, '\1[FILTERED]')
168
+ end
169
+
170
+ private
171
+
172
+ def create_charge(money, payment_method, options)
173
+ post = {}
174
+ add_token(post, payment_method, options)
175
+ add_amount(post, money, options)
176
+ add_customer(post, options)
177
+ post[:capture] = options[:capture] if options[:capture]
178
+ commit(:post, 'charges', post, options)
179
+ end
180
+
181
+ def headers(options={})
182
+ key = options[:key] || @secret_key
183
+ {
184
+ 'Content-Type' => 'application/json;utf-8',
185
+ 'Omise-Version' => @api_version || '2014-07-27',
186
+ 'User-Agent' => "ActiveMerchantBindings/#{ActiveMerchant::VERSION} Ruby/#{RUBY_VERSION}",
187
+ 'Authorization' => 'Basic ' + Base64.encode64(key.to_s + ':').strip,
188
+ 'Accept-Encoding' => 'utf-8'
189
+ }
190
+ end
191
+
192
+ def url_for(endpoint)
193
+ (endpoint == 'tokens' ? VAULT_URL : API_URL) + endpoint
194
+ end
195
+
196
+ def post_data(parameters)
197
+ parameters.present? ? parameters.to_json : nil
198
+ end
199
+
200
+ def https_request(method, endpoint, parameters=nil, options={})
201
+ raw_response = response = nil
202
+ begin
203
+ raw_response = ssl_request(method, url_for(endpoint), post_data(parameters), headers(options))
204
+ response = parse(raw_response)
205
+ rescue ResponseError => e
206
+ raw_response = e.response.body
207
+ response = parse(raw_response)
208
+ rescue JSON::ParserError
209
+ response = json_error(raw_response)
210
+ end
211
+ response
212
+ end
213
+
214
+ def parse(body)
215
+ JSON.parse(body)
216
+ end
217
+
218
+ def json_error(raw_response)
219
+ msg = 'Invalid response received from Omise API. Please contact support@omise.co if you continue to receive this message.'
220
+ msg += "The raw response returned by the API was #{raw_response.inspect})"
221
+ { message: msg }
222
+ end
223
+
224
+ def commit(method, endpoint, params=nil, options={})
225
+ response = https_request(method, endpoint, params, options)
226
+ Response.new(
227
+ successful?(response),
228
+ message_from(response),
229
+ response,
230
+ {
231
+ authorization: authorization_from(response),
232
+ test: test?,
233
+ error_code: successful?(response) ? nil : standard_error_code_mapping(response)
234
+ }
235
+ )
236
+ end
237
+
238
+ def standard_error_code_mapping(response)
239
+ STANDARD_ERROR_CODE_MAPPING[error_code_from(response)] || message_to_standard_error_code_from(response)
240
+ end
241
+
242
+ def error_code_from(response)
243
+ error?(response) ? response['code'] : response['failure_code']
244
+ end
245
+
246
+ def message_to_standard_error_code_from(response)
247
+ message = response['message'] if response['code'] == 'invalid_card'
248
+ case message
249
+ when /brand not supported/
250
+ STANDARD_ERROR_CODE[:invalid_number]
251
+ when /number is invalid/
252
+ STANDARD_ERROR_CODE[:incorrect_number]
253
+ when /expiration date cannot be in the past/
254
+ STANDARD_ERROR_CODE[:expired_card]
255
+ when /expiration \w+ is invalid/
256
+ STANDARD_ERROR_CODE[:invalid_expiry_date]
257
+ else
258
+ STANDARD_ERROR_CODE[:processing_error]
259
+ end
260
+ end
261
+
262
+ def message_from(response)
263
+ if successful?(response)
264
+ 'Success'
265
+ else
266
+ response['message'] || response['failure_message']
267
+ end
268
+ end
269
+
270
+ def authorization_from(response)
271
+ response['id'] if successful?(response)
272
+ end
273
+
274
+ def successful?(response)
275
+ !error?(response) && response['failure_code'].nil?
276
+ end
277
+
278
+ def error?(response)
279
+ response.key?('object') && (response['object'] == 'error')
280
+ end
281
+
282
+ def get_token(post, credit_card)
283
+ add_creditcard(post, credit_card) if credit_card
284
+ commit(:post, 'tokens', post, { key: @public_key })
285
+ end
286
+
287
+ def add_token(post, credit_card, options={})
288
+ if options[:token_id].present?
289
+ post[:card] = options[:token_id]
290
+ else
291
+ response = get_token(post, credit_card)
292
+ response.authorization ? (post[:card] = response.authorization) : response
293
+ end
294
+ end
295
+
296
+ def add_creditcard(post, payment_method)
297
+ card = {
298
+ number: payment_method.number,
299
+ name: payment_method.name,
300
+ security_code: payment_method.verification_value,
301
+ expiration_month: payment_method.month,
302
+ expiration_year: payment_method.year
303
+ }
304
+ post[:card] = card
305
+ end
306
+
307
+ def add_customer(post, options={})
308
+ post[:customer] = options[:customer_id] if options[:customer_id]
309
+ end
310
+
311
+ def add_customer_data(post, options={})
312
+ post[:description] = options[:description] if options[:description]
313
+ post[:email] = options[:email] if options[:email]
314
+ end
315
+
316
+ def add_amount(post, money, options)
317
+ post[:amount] = amount(money)
318
+ post[:currency] = (options[:currency] || currency(money))
319
+ post[:description] = options[:description] if options.key?(:description)
320
+ end
321
+
322
+ end
323
+ end
324
+ end
@@ -0,0 +1,228 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class OpenpayGateway < Gateway
4
+ self.live_url = 'https://api.openpay.mx/v1/'
5
+ self.test_url = 'https://sandbox-api.openpay.mx/v1/'
6
+
7
+ self.supported_countries = ['MX']
8
+ self.supported_cardtypes = [:visa, :master, :american_express, :carnet]
9
+ self.homepage_url = 'http://www.openpay.mx/'
10
+ self.display_name = 'Openpay'
11
+ self.default_currency = 'MXN'
12
+
13
+ # Instantiate a instance of OpenpayGateway by passing through your
14
+ # merchant id and private api key.
15
+ #
16
+ # === To obtain your own credentials
17
+ # 1. Visit http://openpay.mx
18
+ # 2. Sign up
19
+ # 3. Activate your account clicking on the email confirmation
20
+ def initialize(options = {})
21
+ requires!(options, :key, :merchant_id)
22
+ @api_key = options[:key]
23
+ @merchant_id = options[:merchant_id]
24
+ super
25
+ end
26
+
27
+ def purchase(money, creditcard, options = {})
28
+ post = create_post_for_auth_or_purchase(money, creditcard, options)
29
+ commit(:post, 'charges', post, options)
30
+ end
31
+
32
+ def authorize(money, creditcard, options = {})
33
+ post = create_post_for_auth_or_purchase(money, creditcard, options)
34
+ post[:capture] = false
35
+ commit(:post, 'charges', post, options)
36
+ end
37
+
38
+ def capture(money, authorization, options = {})
39
+ post = {}
40
+ post[:amount] = amount(money) if money
41
+ post[:payments] = options[:payments] if options[:payments]
42
+ commit(:post, "charges/#{CGI.escape(authorization)}/capture", post, options)
43
+ end
44
+
45
+ def void(identification, options = {})
46
+ commit(:post, "charges/#{CGI.escape(identification)}/refund", nil, options)
47
+ end
48
+
49
+ def refund(money, identification, options = {})
50
+ post = {}
51
+ post[:description] = options[:description]
52
+ post[:amount] = amount(money)
53
+ commit(:post, "charges/#{CGI.escape(identification)}/refund", post, options)
54
+ end
55
+
56
+ def verify(credit_card, options = {})
57
+ MultiResponse.run(:use_first_response) do |r|
58
+ r.process { authorize(100, credit_card, options) }
59
+ r.process(:ignore_result) { void(r.authorization, options) }
60
+ end
61
+ end
62
+
63
+ def store(creditcard, options = {})
64
+ card_params = {}
65
+ add_creditcard(card_params, creditcard, options)
66
+ card = card_params[:card]
67
+
68
+ if options[:customer].present?
69
+ commit(:post, "customers/#{CGI.escape(options[:customer])}/cards", card, options)
70
+ else
71
+ requires!(options, :email, :name)
72
+ post = {}
73
+ post[:name] = options[:name]
74
+ post[:email] = options[:email]
75
+ MultiResponse.run(:first) do |r|
76
+ r.process { commit(:post, 'customers', post, options) }
77
+
78
+ if(r.success? && !r.params['id'].blank?)
79
+ customer_id = r.params['id']
80
+ r.process { commit(:post, "customers/#{customer_id}/cards", card, options) }
81
+ end
82
+ end
83
+ end
84
+ end
85
+
86
+ def unstore(customer_id, card_id = nil, options = {})
87
+ if card_id.nil?
88
+ commit(:delete, "customers/#{CGI.escape(customer_id)}", nil, options)
89
+ else
90
+ commit(:delete, "customers/#{CGI.escape(customer_id)}/cards/#{CGI.escape(card_id)}", nil, options)
91
+ end
92
+ end
93
+
94
+ def supports_scrubbing
95
+ true
96
+ end
97
+
98
+ def scrub(transcript)
99
+ transcript.
100
+ gsub(%r((Authorization: Basic )\w+), '\1[FILTERED]').
101
+ gsub(%r((card_number\\?":\\?")[^"\\]*)i, '\1[FILTERED]').
102
+ gsub(%r((cvv2\\?":\\?")\d+[^"\\]*)i, '\1[FILTERED]').
103
+ gsub(%r((cvv2\\?":)null), '\1[BLANK]').
104
+ gsub(%r((cvv2\\?":\\?")\\?"), '\1[BLANK]"').
105
+ gsub(%r((cvv2\\?":\\?")\s+), '\1[BLANK]')
106
+ end
107
+
108
+ private
109
+
110
+ def create_post_for_auth_or_purchase(money, creditcard, options)
111
+ post = {}
112
+ post[:amount] = amount(money)
113
+ post[:method] = 'card'
114
+ post[:description] = options[:description]
115
+ post[:order_id] = options[:order_id]
116
+ post[:device_session_id] = options[:device_session_id]
117
+ post[:currency] = (options[:currency] || currency(money)).upcase
118
+ post[:use_card_points] = options[:use_card_points] if options[:use_card_points]
119
+ post[:payment_plan] = {payments: options[:payments]} if options[:payments]
120
+ add_creditcard(post, creditcard, options)
121
+ post
122
+ end
123
+
124
+ def add_creditcard(post, creditcard, options)
125
+ if creditcard.kind_of?(String)
126
+ post[:source_id] = creditcard
127
+ elsif creditcard.respond_to?(:number)
128
+ card = {
129
+ card_number: creditcard.number,
130
+ expiration_month: sprintf('%02d', creditcard.month),
131
+ expiration_year: creditcard.year.to_s[-2, 2],
132
+ cvv2: creditcard.verification_value,
133
+ holder_name: creditcard.name
134
+ }
135
+ add_address(card, options)
136
+ add_customer_data(post, creditcard, options)
137
+ post[:card] = card
138
+ end
139
+ end
140
+
141
+ def add_customer_data(post, creditcard, options)
142
+ if options[:email]
143
+ customer = {
144
+ name: creditcard.name || options[:name],
145
+ email: options[:email]
146
+ }
147
+ post[:customer] = customer
148
+ end
149
+ post
150
+ end
151
+
152
+ def add_address(card, options)
153
+ return unless card.kind_of?(Hash)
154
+ if address = (options[:billing_address] || options[:address])
155
+ card[:address] = {
156
+ line1: address[:address1],
157
+ line2: address[:address2],
158
+ line3: address[:company],
159
+ city: address[:city],
160
+ postal_code: address[:zip],
161
+ state: address[:state],
162
+ country_code: address[:country]
163
+ }
164
+ end
165
+ end
166
+
167
+ def headers(options = {})
168
+ {
169
+ 'Content-Type' => 'application/json',
170
+ 'Authorization' => 'Basic ' + Base64.strict_encode64(@api_key.to_s + ':').strip,
171
+ 'User-Agent' => "Openpay/v1 ActiveMerchantBindings/#{ActiveMerchant::VERSION}",
172
+ 'X-Openpay-Client-User-Agent' => user_agent
173
+ }
174
+ end
175
+
176
+ def parse(body)
177
+ return {} unless body
178
+ JSON.parse(body)
179
+ end
180
+
181
+ def commit(method, resource, parameters, options = {})
182
+ response = http_request(method, resource, parameters, options)
183
+ success = !error?(response)
184
+
185
+ Response.new(success,
186
+ (success ? response['error_code'] : response['description']),
187
+ response,
188
+ :test => test?,
189
+ :authorization => response['id']
190
+ )
191
+ end
192
+
193
+ def http_request(method, resource, parameters={}, options={})
194
+ url = (test? ? self.test_url : self.live_url) + @merchant_id + '/' + resource
195
+ raw_response = nil
196
+ begin
197
+ raw_response = ssl_request(method, url, (parameters ? parameters.to_json : nil), headers(options))
198
+ parse(raw_response)
199
+ rescue ResponseError => e
200
+ raw_response = e.response.body
201
+ response_error(raw_response)
202
+ rescue JSON::ParserError
203
+ json_error(raw_response)
204
+ end
205
+ end
206
+
207
+ def error?(response)
208
+ response['error_code'] && !response['error_code'].blank?
209
+ end
210
+
211
+ def response_error(raw_response)
212
+ parse(raw_response)
213
+ rescue JSON::ParserError
214
+ json_error(raw_response)
215
+ end
216
+
217
+ def json_error(raw_response)
218
+ msg = 'Invalid response received from the Openpay API. Please contact soporte@openpay.mx if you continue to receive this message.'
219
+ msg += " (The raw response returned by the API was #{raw_response.inspect})"
220
+ {
221
+ 'category' => 'request',
222
+ 'error_code' => '9999',
223
+ 'description' => msg
224
+ }
225
+ end
226
+ end
227
+ end
228
+ end