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,47 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class OrbitalSoftDescriptors < Model
4
+ PHONE_FORMAT_1 = /\A\d{3}-\d{3}-\d{4}\z/
5
+ PHONE_FORMAT_2 = /\A\d{3}-\w{7}\z/
6
+
7
+ # ==== Tampa PNS Soft Descriptors
8
+ # The support for Soft Descriptors via the PNS Host is only for customers processing through Chase
9
+ # Paymentech Canada.
10
+
11
+ # Unlike Salem, the only value that gets passed on the cardholder statement is the Merchant Name field.
12
+ # And for these customers, it is a maximum of 25 bytes of data.
13
+ #
14
+ # All other Soft Descriptor fields can optionally be sent, but will not be submitted to the settlement host
15
+ # and will not display on the cardholder statement.
16
+
17
+ attr_accessor :merchant_name, :product_description, :merchant_city, :merchant_phone, :merchant_url, :merchant_email
18
+
19
+ def initialize(options = {})
20
+ self.merchant_name = options[:merchant_name]
21
+ self.merchant_city = options[:merchant_city]
22
+ self.merchant_phone = options[:merchant_phone]
23
+ self.merchant_url = options[:merchant_url]
24
+ self.merchant_email = options[:merchant_email]
25
+ end
26
+
27
+ def validate
28
+ errors = []
29
+
30
+ errors << [:merchant_name, 'is required'] if self.merchant_name.blank?
31
+ errors << [:merchant_name, 'is required to be 25 bytes or less'] if self.merchant_name.bytesize > 25
32
+
33
+ if(!empty?(self.merchant_phone) && !self.merchant_phone.match(PHONE_FORMAT_1) && !self.merchant_phone.match(PHONE_FORMAT_2))
34
+ errors << [:merchant_phone, 'is required to follow "NNN-NNN-NNNN" or "NNN-AAAAAAA" format']
35
+ end
36
+
37
+ [:merchant_email, :merchant_url].each do |attr|
38
+ unless self.send(attr).blank?
39
+ errors << [attr, 'is required to be 13 bytes or less'] if(self.send(attr).bytesize > 13)
40
+ end
41
+ end
42
+
43
+ errors_hash(errors)
44
+ end
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,206 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class PacNetRavenGateway < Gateway
4
+
5
+ AVS_ADDRESS_CODES = {
6
+ 'avs_address_unavailable' => 'X',
7
+ 'avs_address_not_checked' => 'X',
8
+ 'avs_address_matched' => 'Y',
9
+ 'avs_address_not_matched' => 'N',
10
+ 'avs_address_partial_match' => 'N'
11
+ }
12
+
13
+ AVS_POSTAL_CODES = {
14
+ 'avs_postal_unavailable' => 'X',
15
+ 'avs_postal_not_checked' => 'X',
16
+ 'avs_postal_matched' => 'Y',
17
+ 'avs_postal_not_matched' => 'N',
18
+ 'avs_postal_partial_match' => 'N'
19
+ }
20
+
21
+ CVV2_CODES = {
22
+ 'cvv2_matched' => 'Y',
23
+ 'cvv2_not_matched' => 'N',
24
+ 'cvv2_unavailable' => 'X',
25
+ 'cvv2_not_checked' => 'X'
26
+ }
27
+
28
+ self.live_url = 'https://raven.deepcovelabs.net/realtime/'
29
+ self.test_url = self.live_url
30
+
31
+ self.supported_countries = ['US']
32
+ self.supported_cardtypes = [:visa, :master]
33
+ self.money_format = :cents
34
+ self.default_currency = 'USD'
35
+ self.homepage_url = 'https://www.deepcovelabs.com/raven'
36
+ self.display_name = 'Raven'
37
+
38
+ def initialize(options = {})
39
+ requires!(options, :user, :secret, :prn)
40
+ super
41
+ end
42
+
43
+ def authorize(money, creditcard, options = {})
44
+ post = {}
45
+ add_creditcard(post, creditcard)
46
+ add_currency_code(post, money, options)
47
+ add_address(post, options)
48
+ post['PRN'] = @options[:prn]
49
+
50
+ commit('cc_preauth', money, post)
51
+ end
52
+
53
+ def purchase(money, creditcard, options = {})
54
+ post = {}
55
+ add_currency_code(post, money, options)
56
+ add_creditcard(post, creditcard)
57
+ add_address(post, options)
58
+ post['PRN'] = @options[:prn]
59
+
60
+ commit('cc_debit', money, post)
61
+ end
62
+
63
+ def void(authorization, options = {})
64
+ post = {}
65
+ post['TrackingNumber'] = authorization
66
+ post['PymtType'] = options[:pymt_type]
67
+
68
+ commit('void', nil, post)
69
+ end
70
+
71
+ def capture(money, authorization, options = {})
72
+ post = {}
73
+ post['PreauthNumber'] = authorization
74
+ post['PRN'] = @options[:prn]
75
+ add_currency_code(post, money, options)
76
+
77
+ commit('cc_settle', money, post)
78
+ end
79
+
80
+ def refund(money, template_number, options = {})
81
+ post = {}
82
+ post['PRN'] = @options[:prn]
83
+ post['TemplateNumber'] = template_number
84
+ add_currency_code(post, money, options)
85
+
86
+ commit('cc_refund', money, post)
87
+ end
88
+
89
+ private
90
+
91
+ def add_creditcard(post, creditcard)
92
+ post['CardNumber'] = creditcard.number
93
+ post['Expiry'] = expdate(creditcard)
94
+ post['CVV2'] = creditcard.verification_value if creditcard.verification_value
95
+ end
96
+
97
+ def add_currency_code(post, money, options)
98
+ post['Currency'] = options[:currency] || currency(money)
99
+ end
100
+
101
+ def add_address(post, options)
102
+ if address = options[:billing_address] || options[:address]
103
+ post['BillingStreetAddressLineOne'] = address[:address1].to_s
104
+ post['BillingStreetAddressLineFour'] = address[:address2].to_s
105
+ post['BillingPostalCode'] = address[:zip].to_s
106
+ end
107
+ end
108
+
109
+ def parse(body)
110
+ Hash[body.split('&').map { |x| x.split('=').map { |y| CGI.unescape(y) } }]
111
+ end
112
+
113
+ def commit(action, money, parameters)
114
+ parameters['Amount'] = amount(money) unless action == 'void'
115
+
116
+ data = ssl_post url(action), post_data(action, parameters)
117
+
118
+ response = parse(data)
119
+ response[:action] = action
120
+
121
+ message = message_from(response)
122
+
123
+ test_mode = test? || message =~ /TESTMODE/
124
+
125
+ Response.new(success?(response), message, response,
126
+ :test => test_mode,
127
+ :authorization => response['TrackingNumber'],
128
+ :fraud_review => fraud_review?(response),
129
+ :avs_result => {
130
+ :postal_match => AVS_POSTAL_CODES[response['AVSPostalResponseCode']],
131
+ :street_match => AVS_ADDRESS_CODES[response['AVSAddressResponseCode']]
132
+ },
133
+ :cvv_result => CVV2_CODES[response['CVV2ResponseCode']]
134
+ )
135
+ end
136
+
137
+ def url(action)
138
+ (test? ? self.test_url : self.live_url) + endpoint(action)
139
+ end
140
+
141
+ def endpoint(action)
142
+ return 'void' if action == 'void'
143
+ 'submit'
144
+ end
145
+
146
+ def fraud_review?(response)
147
+ false
148
+ end
149
+
150
+ def success?(response)
151
+ if %w(cc_settle cc_debit cc_preauth cc_refund).include?(response[:action])
152
+ !response['ApprovalCode'].nil? and response['ErrorCode'].nil? and response['Status'] == 'Approved'
153
+ elsif response[:action] = 'void'
154
+ !response['ApprovalCode'].nil? and response['ErrorCode'].nil? and response['Status'] == 'Voided'
155
+ end
156
+ end
157
+
158
+ def message_from(response)
159
+ return response['Message'] if response['Message']
160
+
161
+ if response['Status'] == 'Approved'
162
+ 'This transaction has been approved'
163
+ elsif response['Status'] == 'Declined'
164
+ 'This transaction has been declined'
165
+ elsif response['Status'] == 'Voided'
166
+ 'This transaction has been voided'
167
+ else
168
+ response['Status']
169
+ end
170
+ end
171
+
172
+ def post_data(action, parameters = {})
173
+ post = {}
174
+
175
+ post['PymtType'] = action
176
+ post['RAPIVersion'] = '2'
177
+ post['UserName'] = @options[:user]
178
+ post['Timestamp'] = timestamp
179
+ post['RequestID'] = request_id
180
+ post['Signature'] = signature(action, post, parameters)
181
+
182
+ request = post.merge(parameters).collect { |key, value| "#{key}=#{CGI.escape(value.to_s)}" }.join('&')
183
+ request
184
+ end
185
+
186
+ def timestamp
187
+ Time.now.strftime('%Y-%m-%dT%H:%M:%S.Z')
188
+ end
189
+
190
+ def request_id
191
+ SecureRandom.uuid
192
+ end
193
+
194
+ def signature(action, post, parameters = {})
195
+ string = if %w(cc_settle cc_debit cc_preauth cc_refund).include?(action)
196
+ post['UserName'] + post['Timestamp'] + post['RequestID'] + post['PymtType'] + parameters['Amount'].to_s + parameters['Currency']
197
+ elsif action == 'void'
198
+ post['UserName'] + post['Timestamp'] + post['RequestID'] + parameters['TrackingNumber']
199
+ else
200
+ post['UserName']
201
+ end
202
+ OpenSSL::HMAC.hexdigest(OpenSSL::Digest::SHA1.new(@options[:secret]), @options[:secret], string)
203
+ end
204
+ end
205
+ end
206
+ end
@@ -0,0 +1,246 @@
1
+ module ActiveMerchant #:nodoc:
2
+ module Billing #:nodoc:
3
+ class PagarmeGateway < Gateway
4
+ self.live_url = 'https://api.pagar.me/1/'
5
+
6
+ self.supported_countries = ['BR']
7
+ self.default_currency = 'BRL'
8
+ self.money_format = :cents
9
+ self.supported_cardtypes = [:visa, :master, :american_express, :discover, :diners_club]
10
+
11
+ self.homepage_url = 'https://pagar.me/'
12
+ self.display_name = 'Pagar.me'
13
+
14
+ STANDARD_ERROR_CODE_MAPPING = {
15
+ 'refused' => STANDARD_ERROR_CODE[:card_declined],
16
+ 'processing_error' => STANDARD_ERROR_CODE[:processing_error],
17
+ }
18
+
19
+ def initialize(options={})
20
+ requires!(options, :api_key)
21
+ @api_key = options[:api_key]
22
+
23
+ super
24
+ end
25
+
26
+ def purchase(money, payment_method, options={})
27
+ post = {}
28
+ add_amount(post, money)
29
+ add_payment_method(post, payment_method)
30
+ add_metadata(post, options)
31
+
32
+ commit(:post, 'transactions', post)
33
+ end
34
+
35
+ def authorize(money, payment_method, options={})
36
+ post = {}
37
+ add_amount(post, money)
38
+ add_payment_method(post, payment_method)
39
+ add_metadata(post, options)
40
+
41
+ post[:capture] = false
42
+
43
+ commit(:post, 'transactions', post)
44
+ end
45
+
46
+ def capture(money, authorization, options={})
47
+ if authorization.nil?
48
+ return Response.new(false, 'Não é possível capturar uma transação sem uma prévia autorização.')
49
+ end
50
+
51
+ post = {}
52
+ commit(:post, "transactions/#{authorization}/capture", post)
53
+ end
54
+
55
+ def refund(money, authorization, options={})
56
+ if authorization.nil?
57
+ return Response.new(false, 'Não é possível estornar uma transação sem uma prévia captura.')
58
+ end
59
+
60
+ void(authorization, options)
61
+ end
62
+
63
+ def void(authorization, options={})
64
+ if authorization.nil?
65
+ return Response.new(false, 'Não é possível estornar uma transação autorizada sem uma prévia autorização.')
66
+ end
67
+
68
+ post = {}
69
+ commit(:post, "transactions/#{authorization}/refund", post)
70
+ end
71
+
72
+ def verify(payment_method, options={})
73
+ MultiResponse.run(:use_first_response) do |r|
74
+ r.process { authorize(127, payment_method, options) }
75
+ r.process(:ignore_result) { void(r.authorization, options) }
76
+ end
77
+ end
78
+
79
+ def supports_scrubbing?
80
+ true
81
+ end
82
+
83
+ def scrub(transcript)
84
+ transcript.
85
+ gsub(%r((Authorization: Basic )\w+), '\1[FILTERED]').
86
+ gsub(%r((card_number=)\d+), '\1[FILTERED]').
87
+ gsub(%r((card_cvv=)\d+), '\1[FILTERED]')
88
+ end
89
+
90
+ private
91
+
92
+ def add_amount(post, money)
93
+ post[:amount] = amount(money)
94
+ end
95
+
96
+ def add_payment_method(post, payment_method)
97
+ post[:payment_method] = 'credit_card'
98
+ add_credit_card(post, payment_method)
99
+ end
100
+
101
+ def add_credit_card(post, credit_card)
102
+ post[:card_number] = credit_card.number
103
+ post[:card_holder_name] = credit_card.name
104
+ post[:card_expiration_date] = "#{credit_card.month}/#{credit_card.year}"
105
+ post[:card_cvv] = credit_card.verification_value
106
+ end
107
+
108
+ def add_metadata(post, options={})
109
+ post[:metadata] = {}
110
+ post[:metadata][:order_id] = options[:order_id]
111
+ post[:metadata][:ip] = options[:ip]
112
+ post[:metadata][:customer] = options[:customer]
113
+ post[:metadata][:invoice] = options[:invoice]
114
+ post[:metadata][:merchant] = options[:merchant]
115
+ post[:metadata][:description] = options[:description]
116
+ post[:metadata][:email] = options[:email]
117
+ end
118
+
119
+ def parse(body)
120
+ JSON.parse(body)
121
+ end
122
+
123
+ def post_data(params)
124
+ return nil unless params
125
+
126
+ params.map do |key, value|
127
+ next if value != false && value.blank?
128
+ if value.is_a?(Hash)
129
+ h = {}
130
+ value.each do |k, v|
131
+ h["#{key}[#{k}]"] = v unless v.blank?
132
+ end
133
+ post_data(h)
134
+ elsif value.is_a?(Array)
135
+ value.map { |v| "#{key}[]=#{CGI.escape(v.to_s)}" }.join('&')
136
+ else
137
+ "#{key}=#{CGI.escape(value.to_s)}"
138
+ end
139
+ end.compact.join('&')
140
+ end
141
+
142
+ def headers(options = {})
143
+ {
144
+ 'Authorization' => 'Basic ' + Base64.encode64(@api_key.to_s + ':x').strip,
145
+ 'User-Agent' => "Pagar.me/1 ActiveMerchant/#{ActiveMerchant::VERSION}",
146
+ 'Accept-Encoding' => 'deflate'
147
+ }
148
+ end
149
+
150
+ def api_request(method, endpoint, parameters = nil, options = {})
151
+ raw_response = response = nil
152
+ begin
153
+ raw_response = ssl_request(method, self.live_url + endpoint, post_data(parameters), headers(options))
154
+ response = parse(raw_response)
155
+ rescue ResponseError => e
156
+ raw_response = e.response.body
157
+ response = response_error(raw_response)
158
+ rescue JSON::ParserError
159
+ response = json_error(raw_response)
160
+ end
161
+ response
162
+ end
163
+
164
+ def commit(method, url, parameters, options = {})
165
+ response = api_request(method, url, parameters, options)
166
+
167
+ Response.new(
168
+ success_from(response),
169
+ message_from(response),
170
+ response,
171
+ authorization: authorization_from(response),
172
+ test: test?,
173
+ error_code: error_code_from(response)
174
+ )
175
+ end
176
+
177
+ def response_error(raw_response)
178
+ parse(raw_response)
179
+ rescue JSON::ParserError
180
+ json_error(raw_response)
181
+ end
182
+
183
+ def json_error(raw_response)
184
+ msg = 'Resposta inválida retornada pela API do Pagar.me. Por favor entre em contato com suporte@pagar.me se você continuar recebendo essa mensagem.'
185
+ msg += " (A resposta retornada pela API foi #{raw_response.inspect})"
186
+ {
187
+ 'errors' => [{
188
+ 'message' => msg
189
+ }]
190
+ }
191
+ end
192
+
193
+ def success_from(response)
194
+ success_purchase = response.key?('status') && response['status'] == 'paid'
195
+ success_authorize = response.key?('status') && response['status'] == 'authorized'
196
+ success_refund = response.key?('status') && response['status'] == 'refunded'
197
+
198
+ success_purchase || success_authorize || success_refund
199
+ end
200
+
201
+ def failure_from(response)
202
+ response.key?('status') && response['status'] == 'refused'
203
+ end
204
+
205
+ def message_from(response)
206
+ if success_from(response)
207
+ case response['status']
208
+ when 'paid'
209
+ 'Transação aprovada'
210
+ when 'authorized'
211
+ 'Transação autorizada'
212
+ when 'refunded'
213
+ 'Transação estornada'
214
+ else
215
+ "Transação com status '#{response["status"]}'"
216
+ end
217
+ elsif failure_from(response)
218
+ 'Transação recusada'
219
+ elsif response.key?('errors')
220
+ response['errors'][0]['message']
221
+ else
222
+ msg = json_error(response)
223
+ msg['errors'][0]['message']
224
+ end
225
+ end
226
+
227
+ def authorization_from(response)
228
+ if success_from(response)
229
+ response['id']
230
+ end
231
+ end
232
+
233
+ def test?
234
+ @api_key.start_with?('ak_test')
235
+ end
236
+
237
+ def error_code_from(response)
238
+ if failure_from(response)
239
+ STANDARD_ERROR_CODE_MAPPING['refused']
240
+ elsif response.key?('errors')
241
+ STANDARD_ERROR_CODE_MAPPING['processing_error']
242
+ end
243
+ end
244
+ end
245
+ end
246
+ end