swiss-crm-activemerchant 1.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG +4033 -0
- data/CONTRIBUTORS +568 -0
- data/MIT-LICENSE +20 -0
- data/README.md +252 -0
- data/lib/active_merchant/billing/apple_pay_payment_token.rb +22 -0
- data/lib/active_merchant/billing/avs_result.rb +95 -0
- data/lib/active_merchant/billing/base.rb +48 -0
- data/lib/active_merchant/billing/check.rb +112 -0
- data/lib/active_merchant/billing/compatibility.rb +118 -0
- data/lib/active_merchant/billing/credit_card.rb +451 -0
- data/lib/active_merchant/billing/credit_card_formatting.rb +24 -0
- data/lib/active_merchant/billing/credit_card_methods.rb +512 -0
- data/lib/active_merchant/billing/cvv_result.rb +37 -0
- data/lib/active_merchant/billing/gateway.rb +332 -0
- data/lib/active_merchant/billing/gateways/adyen.rb +774 -0
- data/lib/active_merchant/billing/gateways/airwallex.rb +370 -0
- data/lib/active_merchant/billing/gateways/alelo.rb +256 -0
- data/lib/active_merchant/billing/gateways/allied_wallet.rb +205 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +1125 -0
- data/lib/active_merchant/billing/gateways/authorize_net_arb.rb +424 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +977 -0
- data/lib/active_merchant/billing/gateways/axcessms.rb +242 -0
- data/lib/active_merchant/billing/gateways/balanced.rb +263 -0
- data/lib/active_merchant/billing/gateways/bambora_apac.rb +222 -0
- data/lib/active_merchant/billing/gateways/bank_frick.rb +225 -0
- data/lib/active_merchant/billing/gateways/banwire.rb +116 -0
- data/lib/active_merchant/billing/gateways/barclaycard_smartpay.rb +397 -0
- data/lib/active_merchant/billing/gateways/barclays_epdq_extra_plus.rb +15 -0
- data/lib/active_merchant/billing/gateways/be2bill.rb +131 -0
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +474 -0
- data/lib/active_merchant/billing/gateways/beanstream.rb +238 -0
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +57 -0
- data/lib/active_merchant/billing/gateways/blue_pay.rb +549 -0
- data/lib/active_merchant/billing/gateways/blue_snap.rb +644 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +190 -0
- data/lib/active_merchant/billing/gateways/borgun.rb +272 -0
- data/lib/active_merchant/billing/gateways/bpoint.rb +277 -0
- data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +28 -0
- data/lib/active_merchant/billing/gateways/braintree/token_nonce.rb +113 -0
- data/lib/active_merchant/billing/gateways/braintree.rb +19 -0
- data/lib/active_merchant/billing/gateways/braintree_blue.rb +952 -0
- data/lib/active_merchant/billing/gateways/braintree_orange.rb +19 -0
- data/lib/active_merchant/billing/gateways/bridge_pay.rb +244 -0
- data/lib/active_merchant/billing/gateways/cams.rb +230 -0
- data/lib/active_merchant/billing/gateways/card_connect.rb +338 -0
- data/lib/active_merchant/billing/gateways/card_save.rb +21 -0
- data/lib/active_merchant/billing/gateways/card_stream.rb +394 -0
- data/lib/active_merchant/billing/gateways/cardknox.rb +327 -0
- data/lib/active_merchant/billing/gateways/cardprocess.rb +256 -0
- data/lib/active_merchant/billing/gateways/cashnet.rb +235 -0
- data/lib/active_merchant/billing/gateways/cc5.rb +198 -0
- data/lib/active_merchant/billing/gateways/cecabank.rb +249 -0
- data/lib/active_merchant/billing/gateways/cenpos.rb +328 -0
- data/lib/active_merchant/billing/gateways/checkout.rb +212 -0
- data/lib/active_merchant/billing/gateways/checkout_v2.rb +587 -0
- data/lib/active_merchant/billing/gateways/citrus_pay.rb +21 -0
- data/lib/active_merchant/billing/gateways/clearhaus.rb +219 -0
- data/lib/active_merchant/billing/gateways/commerce_hub.rb +366 -0
- data/lib/active_merchant/billing/gateways/commercegate.rb +142 -0
- data/lib/active_merchant/billing/gateways/conekta.rb +230 -0
- data/lib/active_merchant/billing/gateways/creditcall.rb +272 -0
- data/lib/active_merchant/billing/gateways/credorax.rb +526 -0
- data/lib/active_merchant/billing/gateways/ct_payment.rb +269 -0
- data/lib/active_merchant/billing/gateways/culqi.rb +279 -0
- data/lib/active_merchant/billing/gateways/cyber_source/cyber_source_common.rb +36 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +1148 -0
- data/lib/active_merchant/billing/gateways/cyber_source_rest.rb +454 -0
- data/lib/active_merchant/billing/gateways/d_local.rb +343 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +302 -0
- data/lib/active_merchant/billing/gateways/decidir.rb +358 -0
- data/lib/active_merchant/billing/gateways/decidir_plus.rb +344 -0
- data/lib/active_merchant/billing/gateways/dibs.rb +199 -0
- data/lib/active_merchant/billing/gateways/digitzs.rb +295 -0
- data/lib/active_merchant/billing/gateways/ebanx.rb +346 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +215 -0
- data/lib/active_merchant/billing/gateways/elavon.rb +475 -0
- data/lib/active_merchant/billing/gateways/element.rb +406 -0
- data/lib/active_merchant/billing/gateways/epay.rb +296 -0
- data/lib/active_merchant/billing/gateways/evo_ca.rb +307 -0
- data/lib/active_merchant/billing/gateways/eway.rb +226 -0
- data/lib/active_merchant/billing/gateways/eway_managed.rb +289 -0
- data/lib/active_merchant/billing/gateways/eway_rapid.rb +578 -0
- data/lib/active_merchant/billing/gateways/exact.rb +219 -0
- data/lib/active_merchant/billing/gateways/ezic.rb +195 -0
- data/lib/active_merchant/billing/gateways/fat_zebra.rb +223 -0
- data/lib/active_merchant/billing/gateways/federated_canada.rb +158 -0
- data/lib/active_merchant/billing/gateways/finansbank.rb +22 -0
- data/lib/active_merchant/billing/gateways/first_giving.rb +143 -0
- data/lib/active_merchant/billing/gateways/first_pay.rb +182 -0
- data/lib/active_merchant/billing/gateways/firstdata_e4.rb +452 -0
- data/lib/active_merchant/billing/gateways/firstdata_e4_v27.rb +505 -0
- data/lib/active_merchant/billing/gateways/flo2cash.rb +215 -0
- data/lib/active_merchant/billing/gateways/flo2cash_simple.rb +20 -0
- data/lib/active_merchant/billing/gateways/fluidpay.rb +275 -0
- data/lib/active_merchant/billing/gateways/forte.rb +286 -0
- data/lib/active_merchant/billing/gateways/garanti.rb +256 -0
- data/lib/active_merchant/billing/gateways/global_collect.rb +580 -0
- data/lib/active_merchant/billing/gateways/global_transport.rb +193 -0
- data/lib/active_merchant/billing/gateways/hdfc.rb +205 -0
- data/lib/active_merchant/billing/gateways/hps.rb +472 -0
- data/lib/active_merchant/billing/gateways/iats_payments.rb +312 -0
- data/lib/active_merchant/billing/gateways/in_context_paypal_express.rb +15 -0
- data/lib/active_merchant/billing/gateways/inspire.rb +213 -0
- data/lib/active_merchant/billing/gateways/instapay.rb +159 -0
- data/lib/active_merchant/billing/gateways/ipg.rb +420 -0
- data/lib/active_merchant/billing/gateways/ipp.rb +176 -0
- data/lib/active_merchant/billing/gateways/iridium.rb +467 -0
- data/lib/active_merchant/billing/gateways/itransact.rb +448 -0
- data/lib/active_merchant/billing/gateways/iveri.rb +290 -0
- data/lib/active_merchant/billing/gateways/ixopay.rb +320 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +395 -0
- data/lib/active_merchant/billing/gateways/jetpay_v2.rb +432 -0
- data/lib/active_merchant/billing/gateways/klarna.rb +317 -0
- data/lib/active_merchant/billing/gateways/komoju.rb +115 -0
- data/lib/active_merchant/billing/gateways/kushki.rb +297 -0
- data/lib/active_merchant/billing/gateways/latitude19.rb +412 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +448 -0
- data/lib/active_merchant/billing/gateways/litle.rb +643 -0
- data/lib/active_merchant/billing/gateways/mastercard.rb +286 -0
- data/lib/active_merchant/billing/gateways/maxipago.rb +220 -0
- data/lib/active_merchant/billing/gateways/mercado_pago.rb +348 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +228 -0
- data/lib/active_merchant/billing/gateways/merchant_one.rb +110 -0
- data/lib/active_merchant/billing/gateways/merchant_partners.rb +245 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +313 -0
- data/lib/active_merchant/billing/gateways/merchant_ware_version_four.rb +284 -0
- data/lib/active_merchant/billing/gateways/merchant_warrior.rb +248 -0
- data/lib/active_merchant/billing/gateways/mercury.rb +352 -0
- data/lib/active_merchant/billing/gateways/metrics_global.rb +293 -0
- data/lib/active_merchant/billing/gateways/micropayment.rb +182 -0
- data/lib/active_merchant/billing/gateways/migs/migs_codes.rb +100 -0
- data/lib/active_merchant/billing/gateways/migs.rb +329 -0
- data/lib/active_merchant/billing/gateways/mit.rb +260 -0
- data/lib/active_merchant/billing/gateways/modern_payments.rb +37 -0
- data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +215 -0
- data/lib/active_merchant/billing/gateways/moka.rb +290 -0
- data/lib/active_merchant/billing/gateways/monei.rb +424 -0
- data/lib/active_merchant/billing/gateways/moneris.rb +488 -0
- data/lib/active_merchant/billing/gateways/money_movers.rb +150 -0
- data/lib/active_merchant/billing/gateways/mundipagg.rb +366 -0
- data/lib/active_merchant/billing/gateways/nab_transact.rb +299 -0
- data/lib/active_merchant/billing/gateways/ncr_secure_pay.rb +163 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +198 -0
- data/lib/active_merchant/billing/gateways/netaxept.rb +180 -0
- data/lib/active_merchant/billing/gateways/netbanx.rb +376 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +229 -0
- data/lib/active_merchant/billing/gateways/netpay.rb +223 -0
- data/lib/active_merchant/billing/gateways/network_merchants.rb +238 -0
- data/lib/active_merchant/billing/gateways/nmi.rb +396 -0
- data/lib/active_merchant/billing/gateways/ogone.rb +509 -0
- data/lib/active_merchant/billing/gateways/omise.rb +323 -0
- data/lib/active_merchant/billing/gateways/openpay.rb +246 -0
- data/lib/active_merchant/billing/gateways/opp.rb +394 -0
- data/lib/active_merchant/billing/gateways/optimal_payment.rb +331 -0
- data/lib/active_merchant/billing/gateways/orbital/orbital_soft_descriptors.rb +45 -0
- data/lib/active_merchant/billing/gateways/orbital.rb +1267 -0
- data/lib/active_merchant/billing/gateways/pac_net_raven.rb +206 -0
- data/lib/active_merchant/billing/gateways/pagarme.rb +239 -0
- data/lib/active_merchant/billing/gateways/pago_facil.rb +120 -0
- data/lib/active_merchant/billing/gateways/pay_arc.rb +392 -0
- data/lib/active_merchant/billing/gateways/pay_conex.rb +245 -0
- data/lib/active_merchant/billing/gateways/pay_gate_xml.rb +277 -0
- data/lib/active_merchant/billing/gateways/pay_hub.rb +213 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +390 -0
- data/lib/active_merchant/billing/gateways/pay_junction_v2.rb +206 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +110 -0
- data/lib/active_merchant/billing/gateways/pay_trace.rb +450 -0
- data/lib/active_merchant/billing/gateways/paybox_direct.rb +224 -0
- data/lib/active_merchant/billing/gateways/payeezy.rb +513 -0
- data/lib/active_merchant/billing/gateways/payex.rb +409 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +235 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +42 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
- data/lib/active_merchant/billing/gateways/payflow.rb +473 -0
- data/lib/active_merchant/billing/gateways/payflow_express.rb +220 -0
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +14 -0
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +20 -0
- data/lib/active_merchant/billing/gateways/payment_express.rb +373 -0
- data/lib/active_merchant/billing/gateways/paymentez.rb +365 -0
- data/lib/active_merchant/billing/gateways/paymill.rb +369 -0
- data/lib/active_merchant/billing/gateways/paynetworx.rb +228 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +718 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +69 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_recurring_api.rb +262 -0
- data/lib/active_merchant/billing/gateways/paypal.rb +136 -0
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
- data/lib/active_merchant/billing/gateways/paypal_digital_goods.rb +44 -0
- data/lib/active_merchant/billing/gateways/paypal_express.rb +272 -0
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +30 -0
- data/lib/active_merchant/billing/gateways/paypal_standard.rb +281 -0
- data/lib/active_merchant/billing/gateways/paysafe.rb +420 -0
- data/lib/active_merchant/billing/gateways/payscout.rb +159 -0
- data/lib/active_merchant/billing/gateways/paystation.rb +204 -0
- data/lib/active_merchant/billing/gateways/payu_in.rb +249 -0
- data/lib/active_merchant/billing/gateways/payu_latam.rb +482 -0
- data/lib/active_merchant/billing/gateways/payway.rb +207 -0
- data/lib/active_merchant/billing/gateways/payway_dot_com.rb +253 -0
- data/lib/active_merchant/billing/gateways/pin.rb +273 -0
- data/lib/active_merchant/billing/gateways/pixxels.rb +263 -0
- data/lib/active_merchant/billing/gateways/plexo.rb +308 -0
- data/lib/active_merchant/billing/gateways/plugnpay.rb +283 -0
- data/lib/active_merchant/billing/gateways/priority.rb +392 -0
- data/lib/active_merchant/billing/gateways/pro_pay.rb +325 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +227 -0
- data/lib/active_merchant/billing/gateways/psl_card.rb +295 -0
- data/lib/active_merchant/billing/gateways/qbms.rb +302 -0
- data/lib/active_merchant/billing/gateways/quantum.rb +274 -0
- data/lib/active_merchant/billing/gateways/quickbooks.rb +377 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_common.rb +184 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v10.rb +297 -0
- data/lib/active_merchant/billing/gateways/quickpay/quickpay_v4to7.rb +226 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +24 -0
- data/lib/active_merchant/billing/gateways/qvalent.rb +305 -0
- data/lib/active_merchant/billing/gateways/rapyd.rb +319 -0
- data/lib/active_merchant/billing/gateways/reach.rb +277 -0
- data/lib/active_merchant/billing/gateways/realex.rb +400 -0
- data/lib/active_merchant/billing/gateways/redsys.rb +723 -0
- data/lib/active_merchant/billing/gateways/s5.rb +247 -0
- data/lib/active_merchant/billing/gateways/safe_charge.rb +298 -0
- data/lib/active_merchant/billing/gateways/sage.rb +446 -0
- data/lib/active_merchant/billing/gateways/sage_pay.rb +434 -0
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +141 -0
- data/lib/active_merchant/billing/gateways/secure_net.rb +260 -0
- data/lib/active_merchant/billing/gateways/secure_pay.rb +191 -0
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +290 -0
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +103 -0
- data/lib/active_merchant/billing/gateways/securion_pay.rb +305 -0
- data/lib/active_merchant/billing/gateways/shift4.rb +345 -0
- data/lib/active_merchant/billing/gateways/simetrik.rb +368 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +450 -0
- data/lib/active_merchant/billing/gateways/smart_ps.rb +274 -0
- data/lib/active_merchant/billing/gateways/so_easy_pay.rb +194 -0
- data/lib/active_merchant/billing/gateways/spreedly_core.rb +354 -0
- data/lib/active_merchant/billing/gateways/stripe.rb +866 -0
- data/lib/active_merchant/billing/gateways/stripe_payment_intents.rb +602 -0
- data/lib/active_merchant/billing/gateways/swipe_checkout.rb +151 -0
- data/lib/active_merchant/billing/gateways/telr.rb +273 -0
- data/lib/active_merchant/billing/gateways/tns.rb +23 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +240 -0
- data/lib/active_merchant/billing/gateways/trans_first_transaction_express.rb +612 -0
- data/lib/active_merchant/billing/gateways/transact_pro.rb +222 -0
- data/lib/active_merchant/billing/gateways/transax.rb +21 -0
- data/lib/active_merchant/billing/gateways/transnational.rb +9 -0
- data/lib/active_merchant/billing/gateways/trexle.rb +221 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +500 -0
- data/lib/active_merchant/billing/gateways/usa_epay.rb +24 -0
- data/lib/active_merchant/billing/gateways/usa_epay_advanced.rb +1612 -0
- data/lib/active_merchant/billing/gateways/usa_epay_transaction.rb +367 -0
- data/lib/active_merchant/billing/gateways/vanco.rb +303 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +224 -0
- data/lib/active_merchant/billing/gateways/viaklix.rb +171 -0
- data/lib/active_merchant/billing/gateways/visanet_peru.rb +250 -0
- data/lib/active_merchant/billing/gateways/vpos.rb +223 -0
- data/lib/active_merchant/billing/gateways/webpay.rb +97 -0
- data/lib/active_merchant/billing/gateways/wepay.rb +235 -0
- data/lib/active_merchant/billing/gateways/wirecard.rb +430 -0
- data/lib/active_merchant/billing/gateways/wompi.rb +197 -0
- data/lib/active_merchant/billing/gateways/world_net.rb +345 -0
- data/lib/active_merchant/billing/gateways/worldpay.rb +1050 -0
- data/lib/active_merchant/billing/gateways/worldpay_online_payments.rb +208 -0
- data/lib/active_merchant/billing/gateways/worldpay_us.rb +221 -0
- data/lib/active_merchant/billing/gateways.rb +14 -0
- data/lib/active_merchant/billing/model.rb +30 -0
- data/lib/active_merchant/billing/network_tokenization_credit_card.rb +39 -0
- data/lib/active_merchant/billing/payment_token.rb +21 -0
- data/lib/active_merchant/billing/rails.rb +3 -0
- data/lib/active_merchant/billing/response.rb +121 -0
- data/lib/active_merchant/billing/three_d_secure_eci_mapper.rb +27 -0
- data/lib/active_merchant/billing.rb +16 -0
- data/lib/active_merchant/connection.rb +194 -0
- data/lib/active_merchant/country.rb +338 -0
- data/lib/active_merchant/empty.rb +20 -0
- data/lib/active_merchant/errors.rb +38 -0
- data/lib/active_merchant/net_http_ssl_connection.rb +11 -0
- data/lib/active_merchant/network_connection_retries.rb +78 -0
- data/lib/active_merchant/post_data.rb +26 -0
- data/lib/active_merchant/posts_data.rb +92 -0
- data/lib/active_merchant/version.rb +3 -0
- data/lib/active_merchant.rb +63 -0
- data/lib/activemerchant.rb +1 -0
- data/lib/certs/cacert.pem +3214 -0
- data/lib/support/gateway_support.rb +69 -0
- data/lib/support/outbound_hosts.rb +28 -0
- data/lib/support/ssl_verify.rb +88 -0
- data/lib/support/ssl_version.rb +86 -0
- metadata +506 -0
@@ -0,0 +1,223 @@
|
|
1
|
+
require 'digest'
|
2
|
+
require 'jwe'
|
3
|
+
|
4
|
+
module ActiveMerchant #:nodoc:
|
5
|
+
module Billing #:nodoc:
|
6
|
+
class VposGateway < Gateway
|
7
|
+
self.test_url = 'https://vpos.infonet.com.py:8888'
|
8
|
+
self.live_url = 'https://vpos.infonet.com.py'
|
9
|
+
|
10
|
+
self.supported_countries = ['PY']
|
11
|
+
self.default_currency = 'PYG'
|
12
|
+
self.supported_cardtypes = %i[visa master]
|
13
|
+
|
14
|
+
self.homepage_url = 'https://comercios.bancard.com.py'
|
15
|
+
self.display_name = 'vPOS'
|
16
|
+
|
17
|
+
self.money_format = :dollars
|
18
|
+
|
19
|
+
ENDPOINTS = {
|
20
|
+
pci_encryption_key: '/vpos/api/0.3/application/encryption-key',
|
21
|
+
pay_pci_buy_encrypted: '/vpos/api/0.3/pci/encrypted',
|
22
|
+
pci_buy_rollback: '/vpos/api/0.3/pci_buy/rollback',
|
23
|
+
refund: '/vpos/api/0.3/refunds'
|
24
|
+
}
|
25
|
+
|
26
|
+
def initialize(options = {})
|
27
|
+
requires!(options, :private_key, :public_key)
|
28
|
+
@private_key = options[:private_key]
|
29
|
+
@public_key = options[:public_key]
|
30
|
+
@encryption_key = OpenSSL::PKey::RSA.new(options[:encryption_key]) if options[:encryption_key]
|
31
|
+
@shop_process_id = options[:shop_process_id] || SecureRandom.random_number(10**15)
|
32
|
+
super
|
33
|
+
end
|
34
|
+
|
35
|
+
def purchase(money, payment, options = {})
|
36
|
+
commerce = options[:commerce] || @options[:commerce]
|
37
|
+
commerce_branch = options[:commerce_branch] || @options[:commerce_branch]
|
38
|
+
shop_process_id = options[:shop_process_id] || @shop_process_id
|
39
|
+
|
40
|
+
token = generate_token(shop_process_id, 'pay_pci', commerce, commerce_branch, amount(money), currency(money))
|
41
|
+
|
42
|
+
post = {}
|
43
|
+
post[:token] = token
|
44
|
+
post[:commerce] = commerce.to_s
|
45
|
+
post[:commerce_branch] = commerce_branch.to_s
|
46
|
+
post[:shop_process_id] = shop_process_id
|
47
|
+
post[:number_of_payments] = options[:number_of_payments] || 1
|
48
|
+
post[:recursive] = options[:recursive] || false
|
49
|
+
|
50
|
+
add_invoice(post, money, options)
|
51
|
+
add_card_data(post, payment)
|
52
|
+
add_customer_data(post, options)
|
53
|
+
|
54
|
+
commit(:pay_pci_buy_encrypted, post)
|
55
|
+
end
|
56
|
+
|
57
|
+
def void(authorization, options = {})
|
58
|
+
_, shop_process_id = authorization.to_s.split('#')
|
59
|
+
token = generate_token(shop_process_id, 'rollback', '0.00')
|
60
|
+
post = {
|
61
|
+
token: token,
|
62
|
+
shop_process_id: shop_process_id
|
63
|
+
}
|
64
|
+
commit(:pci_buy_rollback, post)
|
65
|
+
end
|
66
|
+
|
67
|
+
def credit(money, payment, options = {})
|
68
|
+
# Not permitted for foreign cards.
|
69
|
+
commerce = options[:commerce] || @options[:commerce]
|
70
|
+
commerce_branch = options[:commerce_branch] || @options[:commerce_branch]
|
71
|
+
|
72
|
+
token = generate_token(@shop_process_id, 'refund', commerce, commerce_branch, amount(money), currency(money))
|
73
|
+
post = {}
|
74
|
+
post[:token] = token
|
75
|
+
post[:commerce] = commerce.to_i
|
76
|
+
post[:commerce_branch] = commerce_branch.to_i
|
77
|
+
post[:shop_process_id] = @shop_process_id
|
78
|
+
add_invoice(post, money, options)
|
79
|
+
add_card_data(post, payment)
|
80
|
+
add_customer_data(post, options)
|
81
|
+
post[:origin_shop_process_id] = options[:original_shop_process_id] if options[:original_shop_process_id]
|
82
|
+
commit(:refund, post)
|
83
|
+
end
|
84
|
+
|
85
|
+
def refund(money, authorization, options = {})
|
86
|
+
commerce = options[:commerce] || @options[:commerce]
|
87
|
+
commerce_branch = options[:commerce_branch] || @options[:commerce_branch]
|
88
|
+
shop_process_id = options[:shop_process_id] || @shop_process_id
|
89
|
+
_, original_shop_process_id = authorization.to_s.split('#')
|
90
|
+
|
91
|
+
token = generate_token(shop_process_id, 'refund', commerce, commerce_branch, amount(money), currency(money))
|
92
|
+
post = {}
|
93
|
+
post[:token] = token
|
94
|
+
post[:commerce] = commerce.to_i
|
95
|
+
post[:commerce_branch] = commerce_branch.to_i
|
96
|
+
post[:shop_process_id] = shop_process_id
|
97
|
+
add_invoice(post, money, options)
|
98
|
+
add_customer_data(post, options)
|
99
|
+
post[:origin_shop_process_id] = original_shop_process_id || options[:original_shop_process_id]
|
100
|
+
commit(:refund, post)
|
101
|
+
end
|
102
|
+
|
103
|
+
def supports_scrubbing?
|
104
|
+
true
|
105
|
+
end
|
106
|
+
|
107
|
+
def scrub(transcript)
|
108
|
+
clean_transcript = remove_invalid_utf_8_byte_sequences(transcript)
|
109
|
+
clean_transcript.
|
110
|
+
gsub(/(token\\":\\")[.\-\w]+/, '\1[FILTERED]').
|
111
|
+
gsub(/(card_encrypted_data\\":\\")[.\-\w]+/, '\1[FILTERED]')
|
112
|
+
end
|
113
|
+
|
114
|
+
def remove_invalid_utf_8_byte_sequences(transcript)
|
115
|
+
transcript.encode('UTF-8', 'binary', undef: :replace, replace: '')
|
116
|
+
end
|
117
|
+
|
118
|
+
# Required to encrypt PAN data.
|
119
|
+
def one_time_public_key
|
120
|
+
token = generate_token('get_encription_public_key', @public_key)
|
121
|
+
response = commit(:pci_encryption_key, token: token)
|
122
|
+
response.params['encryption_key']
|
123
|
+
end
|
124
|
+
|
125
|
+
private
|
126
|
+
|
127
|
+
def generate_token(*elements)
|
128
|
+
Digest::MD5.hexdigest(@private_key + elements.join)
|
129
|
+
end
|
130
|
+
|
131
|
+
def add_invoice(post, money, options)
|
132
|
+
post[:amount] = amount(money)
|
133
|
+
post[:currency] = options[:currency] || currency(money)
|
134
|
+
end
|
135
|
+
|
136
|
+
def add_card_data(post, payment)
|
137
|
+
card_number = payment.number
|
138
|
+
cvv = payment.verification_value
|
139
|
+
|
140
|
+
payload = { card_number: card_number, 'cvv': cvv }.to_json
|
141
|
+
|
142
|
+
encryption_key = @encryption_key || OpenSSL::PKey::RSA.new(one_time_public_key)
|
143
|
+
|
144
|
+
post[:card_encrypted_data] = JWE.encrypt(payload, encryption_key)
|
145
|
+
post[:card_month_expiration] = format(payment.month, :two_digits)
|
146
|
+
post[:card_year_expiration] = format(payment.year, :two_digits)
|
147
|
+
end
|
148
|
+
|
149
|
+
def add_customer_data(post, options)
|
150
|
+
post[:additional_data] = options[:additional_data] || '' # must be passed even if empty
|
151
|
+
end
|
152
|
+
|
153
|
+
def parse(body)
|
154
|
+
JSON.parse(body)
|
155
|
+
end
|
156
|
+
|
157
|
+
def commit(action, parameters)
|
158
|
+
url = build_request_url(action)
|
159
|
+
begin
|
160
|
+
response = parse(ssl_post(url, post_data(parameters)))
|
161
|
+
rescue ResponseError => response
|
162
|
+
# Errors are returned with helpful data,
|
163
|
+
# but get filtered out by `ssl_post` because of their HTTP status.
|
164
|
+
response = parse(response.response.body)
|
165
|
+
end
|
166
|
+
|
167
|
+
Response.new(
|
168
|
+
success_from(response),
|
169
|
+
message_from(response),
|
170
|
+
response,
|
171
|
+
authorization: authorization_from(response),
|
172
|
+
avs_result: nil,
|
173
|
+
cvv_result: nil,
|
174
|
+
test: test?,
|
175
|
+
error_code: error_code_from(response)
|
176
|
+
)
|
177
|
+
end
|
178
|
+
|
179
|
+
def success_from(response)
|
180
|
+
if code = response.dig('confirmation', 'response_code')
|
181
|
+
code == '00'
|
182
|
+
else
|
183
|
+
response['status'] == 'success'
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
187
|
+
def message_from(response)
|
188
|
+
%w(confirmation refund).each do |m|
|
189
|
+
message =
|
190
|
+
response.dig(m, 'extended_response_description') ||
|
191
|
+
response.dig(m, 'response_description') ||
|
192
|
+
response.dig(m, 'response_details')
|
193
|
+
return message if message
|
194
|
+
end
|
195
|
+
[response.dig('messages', 0, 'key'), response.dig('messages', 0, 'dsc')].join(':')
|
196
|
+
end
|
197
|
+
|
198
|
+
def authorization_from(response)
|
199
|
+
response_body = response.dig('confirmation') || response.dig('refund')
|
200
|
+
return unless response_body
|
201
|
+
|
202
|
+
authorization_number = response_body.dig('authorization_number') || response_body.dig('authorization_code')
|
203
|
+
shop_process_id = response_body.dig('shop_process_id')
|
204
|
+
|
205
|
+
"#{authorization_number}##{shop_process_id}"
|
206
|
+
end
|
207
|
+
|
208
|
+
def error_code_from(response)
|
209
|
+
response.dig('confirmation', 'response_code') unless success_from(response)
|
210
|
+
end
|
211
|
+
|
212
|
+
def build_request_url(action)
|
213
|
+
base_url = (test? ? test_url : live_url)
|
214
|
+
base_url + ENDPOINTS[action]
|
215
|
+
end
|
216
|
+
|
217
|
+
def post_data(data)
|
218
|
+
{ public_key: @public_key,
|
219
|
+
operation: data }.compact.to_json
|
220
|
+
end
|
221
|
+
end
|
222
|
+
end
|
223
|
+
end
|
@@ -0,0 +1,97 @@
|
|
1
|
+
require 'json'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
class WebpayGateway < StripeGateway
|
6
|
+
self.live_url = 'https://api.webpay.jp/v1/'
|
7
|
+
|
8
|
+
self.supported_countries = ['JP']
|
9
|
+
self.default_currency = 'JPY'
|
10
|
+
self.money_format = :cents
|
11
|
+
self.supported_cardtypes = %i[visa master american_express jcb diners_club]
|
12
|
+
|
13
|
+
self.homepage_url = 'https://webpay.jp/'
|
14
|
+
self.display_name = 'WebPay'
|
15
|
+
|
16
|
+
def capture(money, authorization, options = {})
|
17
|
+
post = {}
|
18
|
+
add_amount(post, money, options)
|
19
|
+
add_application_fee(post, options)
|
20
|
+
commit(:post, "charges/#{CGI.escape(authorization)}/capture", post)
|
21
|
+
end
|
22
|
+
|
23
|
+
def refund(money, identification, options = {})
|
24
|
+
post = {}
|
25
|
+
add_amount(post, money, options)
|
26
|
+
MultiResponse.run do |r|
|
27
|
+
r.process { commit(:post, "charges/#{CGI.escape(identification)}/refund", post, options) }
|
28
|
+
|
29
|
+
return r unless options[:refund_fee_amount]
|
30
|
+
|
31
|
+
r.process { fetch_application_fees(identification, options) }
|
32
|
+
r.process { refund_application_fee(options[:refund_fee_amount], application_fee_from_response(r), options) }
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def refund_fee(identification, options, meta)
|
37
|
+
raise NotImplementedError.new
|
38
|
+
end
|
39
|
+
|
40
|
+
def add_customer(post, creditcard, options)
|
41
|
+
post[:customer] = options[:customer] if options[:customer] && !creditcard.respond_to?(:number)
|
42
|
+
end
|
43
|
+
|
44
|
+
def store(creditcard, options = {})
|
45
|
+
post = {}
|
46
|
+
add_creditcard(post, creditcard, options)
|
47
|
+
post[:description] = options[:description]
|
48
|
+
post[:email] = options[:email]
|
49
|
+
|
50
|
+
if options[:customer]
|
51
|
+
MultiResponse.run(:first) do |r|
|
52
|
+
r.process { commit(:post, "customers/#{CGI.escape(options[:customer])}/", post, options) }
|
53
|
+
|
54
|
+
return r unless options[:set_default] && r.success? && !r.params['id'].blank?
|
55
|
+
|
56
|
+
r.process { update_customer(options[:customer], default_card: r.params['id']) }
|
57
|
+
end
|
58
|
+
else
|
59
|
+
commit(:post, 'customers', post, options)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
def update(customer_id, creditcard, options = {})
|
64
|
+
post = {}
|
65
|
+
add_creditcard(post, creditcard, options)
|
66
|
+
commit(:post, "customers/#{CGI.escape(customer_id)}", post, options)
|
67
|
+
end
|
68
|
+
|
69
|
+
private
|
70
|
+
|
71
|
+
def create_post_for_auth_or_purchase(money, creditcard, options)
|
72
|
+
stripe_post = super
|
73
|
+
stripe_post[:description] ||= stripe_post.delete(:metadata).try(:[], :email)
|
74
|
+
stripe_post
|
75
|
+
end
|
76
|
+
|
77
|
+
def json_error(raw_response)
|
78
|
+
msg = 'Invalid response received from the WebPay API. Please contact support@webpay.jp if you continue to receive this message.'
|
79
|
+
msg += " (The raw response returned by the API was #{raw_response.inspect})"
|
80
|
+
{
|
81
|
+
'error' => {
|
82
|
+
'message' => msg
|
83
|
+
}
|
84
|
+
}
|
85
|
+
end
|
86
|
+
|
87
|
+
def headers(options = {})
|
88
|
+
{
|
89
|
+
'Authorization' => 'Basic ' + Base64.encode64(@api_key.to_s + ':').strip,
|
90
|
+
'User-Agent' => "Webpay/v1 ActiveMerchantBindings/#{ActiveMerchant::VERSION}",
|
91
|
+
'X-Webpay-Client-User-Agent' => user_agent,
|
92
|
+
'X-Webpay-Client-User-Metadata' => { ip: options[:ip] }.to_json
|
93
|
+
}
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
@@ -0,0 +1,235 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class WepayGateway < Gateway
|
4
|
+
self.test_url = 'https://stage.wepayapi.com/v2'
|
5
|
+
self.live_url = 'https://wepayapi.com/v2'
|
6
|
+
|
7
|
+
self.supported_countries = %w[US CA]
|
8
|
+
self.supported_cardtypes = %i[visa master american_express discover]
|
9
|
+
self.homepage_url = 'https://www.wepay.com/'
|
10
|
+
self.default_currency = 'USD'
|
11
|
+
self.display_name = 'WePay'
|
12
|
+
|
13
|
+
def initialize(options = {})
|
14
|
+
requires!(options, :client_id, :account_id, :access_token)
|
15
|
+
super(options)
|
16
|
+
end
|
17
|
+
|
18
|
+
def purchase(money, payment_method, options = {})
|
19
|
+
post = {}
|
20
|
+
if payment_method.is_a?(String)
|
21
|
+
MultiResponse.run do |r|
|
22
|
+
r.process { authorize_with_token(post, money, payment_method, options) }
|
23
|
+
r.process { capture(money, r.authorization, options) }
|
24
|
+
end
|
25
|
+
else
|
26
|
+
MultiResponse.run do |r|
|
27
|
+
r.process { store(payment_method, options) }
|
28
|
+
r.process { authorize_with_token(post, money, r.authorization, options) }
|
29
|
+
r.process { capture(money, r.authorization, options) }
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def authorize(money, payment_method, options = {})
|
35
|
+
post = {}
|
36
|
+
if payment_method.is_a?(String)
|
37
|
+
authorize_with_token(post, money, payment_method, options)
|
38
|
+
else
|
39
|
+
MultiResponse.run do |r|
|
40
|
+
r.process { store(payment_method, options) }
|
41
|
+
r.process { authorize_with_token(post, money, r.authorization, options) }
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def capture(money, identifier, options = {})
|
47
|
+
checkout_id, original_amount = split_authorization(identifier)
|
48
|
+
|
49
|
+
post = {}
|
50
|
+
post[:checkout_id] = checkout_id
|
51
|
+
post[:amount] = amount(money) if money && (original_amount != amount(money))
|
52
|
+
commit('/checkout/capture', post, options)
|
53
|
+
end
|
54
|
+
|
55
|
+
def void(identifier, options = {})
|
56
|
+
post = {}
|
57
|
+
post[:checkout_id] = split_authorization(identifier).first
|
58
|
+
post[:cancel_reason] = (options[:description] || 'Void')
|
59
|
+
commit('/checkout/cancel', post, options)
|
60
|
+
end
|
61
|
+
|
62
|
+
def refund(money, identifier, options = {})
|
63
|
+
checkout_id, original_amount = split_authorization(identifier)
|
64
|
+
|
65
|
+
post = {}
|
66
|
+
post[:checkout_id] = checkout_id
|
67
|
+
post[:amount] = amount(money) if money && (original_amount != amount(money))
|
68
|
+
post[:refund_reason] = (options[:description] || 'Refund')
|
69
|
+
post[:payer_email_message] = options[:payer_email_message] if options[:payer_email_message]
|
70
|
+
post[:payee_email_message] = options[:payee_email_message] if options[:payee_email_message]
|
71
|
+
commit('/checkout/refund', post, options)
|
72
|
+
end
|
73
|
+
|
74
|
+
def store(creditcard, options = {})
|
75
|
+
post = {}
|
76
|
+
post[:client_id] = @options[:client_id]
|
77
|
+
post[:user_name] = "#{creditcard.first_name} #{creditcard.last_name}"
|
78
|
+
post[:email] = options[:email] || 'unspecified@example.com'
|
79
|
+
post[:cc_number] = creditcard.number
|
80
|
+
post[:cvv] = creditcard.verification_value unless options[:recurring]
|
81
|
+
post[:expiration_month] = creditcard.month
|
82
|
+
post[:expiration_year] = creditcard.year
|
83
|
+
|
84
|
+
if (billing_address = (options[:billing_address] || options[:address]))
|
85
|
+
post[:address] = {}
|
86
|
+
post[:address]['address1'] = billing_address[:address1] if billing_address[:address1]
|
87
|
+
post[:address]['city'] = billing_address[:city] if billing_address[:city]
|
88
|
+
post[:address]['country'] = billing_address[:country] if billing_address[:country]
|
89
|
+
post[:address]['region'] = billing_address[:state] if billing_address[:state]
|
90
|
+
post[:address]['postal_code'] = billing_address[:zip]
|
91
|
+
end
|
92
|
+
|
93
|
+
if options[:recurring] == true
|
94
|
+
post[:client_secret] = @options[:client_secret]
|
95
|
+
commit('/credit_card/transfer', post, options)
|
96
|
+
else
|
97
|
+
post[:original_device] = options[:device_fingerprint] if options[:device_fingerprint]
|
98
|
+
post[:original_ip] = options[:ip] if options[:ip]
|
99
|
+
commit('/credit_card/create', post, options)
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
def supports_scrubbing?
|
104
|
+
true
|
105
|
+
end
|
106
|
+
|
107
|
+
def scrub(transcript)
|
108
|
+
transcript.
|
109
|
+
gsub(%r((\\?"cc_number\\?":\\?")[^\\"]+(\\?"))i, '\1[FILTERED]\2').
|
110
|
+
gsub(%r((\\?"cvv\\?":\\?")[^\\"]+(\\?"))i, '\1[FILTERED]\2').
|
111
|
+
gsub(%r((Authorization: Bearer )\w+)i, '\1[FILTERED]\2')
|
112
|
+
end
|
113
|
+
|
114
|
+
private
|
115
|
+
|
116
|
+
def authorize_with_token(post, money, token, options)
|
117
|
+
add_token(post, token)
|
118
|
+
add_product_data(post, money, options)
|
119
|
+
commit('/checkout/create', post, options)
|
120
|
+
end
|
121
|
+
|
122
|
+
def add_product_data(post, money, options)
|
123
|
+
post[:account_id] = @options[:account_id]
|
124
|
+
post[:amount] = amount(money)
|
125
|
+
post[:short_description] = (options[:description] || 'Purchase')
|
126
|
+
post[:type] = (options[:type] || 'goods')
|
127
|
+
post[:currency] = (options[:currency] || currency(money))
|
128
|
+
post[:long_description] = options[:long_description] if options[:long_description]
|
129
|
+
post[:payer_email_message] = options[:payer_email_message] if options[:payer_email_message]
|
130
|
+
post[:payee_email_message] = options[:payee_email_message] if options[:payee_email_message]
|
131
|
+
post[:reference_id] = options[:order_id] if options[:order_id]
|
132
|
+
post[:unique_id] = options[:unique_id] if options[:unique_id]
|
133
|
+
post[:redirect_uri] = options[:redirect_uri] if options[:redirect_uri]
|
134
|
+
post[:callback_uri] = options[:callback_uri] if options[:callback_uri]
|
135
|
+
post[:fallback_uri] = options[:fallback_uri] if options[:fallback_uri]
|
136
|
+
post[:require_shipping] = options[:require_shipping] if options[:require_shipping]
|
137
|
+
post[:shipping_fee] = options[:shipping_fee] if options[:shipping_fee]
|
138
|
+
post[:charge_tax] = options[:charge_tax] if options[:charge_tax]
|
139
|
+
post[:mode] = options[:mode] if options[:mode]
|
140
|
+
post[:preapproval_id] = options[:preapproval_id] if options[:preapproval_id]
|
141
|
+
post[:prefill_info] = options[:prefill_info] if options[:prefill_info]
|
142
|
+
post[:funding_sources] = options[:funding_sources] if options[:funding_sources]
|
143
|
+
post[:payer_rbits] = options[:payer_rbits] if options[:payer_rbits]
|
144
|
+
post[:transaction_rbits] = options[:transaction_rbits] if options[:transaction_rbits]
|
145
|
+
add_fee(post, options)
|
146
|
+
end
|
147
|
+
|
148
|
+
def add_token(post, token)
|
149
|
+
payment_method = {}
|
150
|
+
payment_method[:type] = 'credit_card'
|
151
|
+
payment_method[:credit_card] = {
|
152
|
+
id: token,
|
153
|
+
auto_capture: false
|
154
|
+
}
|
155
|
+
|
156
|
+
post[:payment_method] = payment_method
|
157
|
+
end
|
158
|
+
|
159
|
+
def add_fee(post, options)
|
160
|
+
if options[:application_fee] || options[:fee_payer]
|
161
|
+
post[:fee] = {}
|
162
|
+
post[:fee][:app_fee] = options[:application_fee] if options[:application_fee]
|
163
|
+
post[:fee][:fee_payer] = options[:fee_payer] if options[:fee_payer]
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
167
|
+
def parse(response)
|
168
|
+
JSON.parse(response)
|
169
|
+
end
|
170
|
+
|
171
|
+
def commit(action, params, options = {})
|
172
|
+
begin
|
173
|
+
response = parse(
|
174
|
+
ssl_post(
|
175
|
+
((test? ? test_url : live_url) + action),
|
176
|
+
params.to_json,
|
177
|
+
headers(options)
|
178
|
+
)
|
179
|
+
)
|
180
|
+
rescue ResponseError => e
|
181
|
+
response = parse(e.response.body)
|
182
|
+
end
|
183
|
+
|
184
|
+
return Response.new(
|
185
|
+
success_from(response),
|
186
|
+
message_from(response),
|
187
|
+
response,
|
188
|
+
authorization: authorization_from(response, params),
|
189
|
+
test: test?
|
190
|
+
)
|
191
|
+
rescue JSON::ParserError
|
192
|
+
return unparsable_response(response)
|
193
|
+
end
|
194
|
+
|
195
|
+
def success_from(response)
|
196
|
+
(!response['error'])
|
197
|
+
end
|
198
|
+
|
199
|
+
def message_from(response)
|
200
|
+
(response['error'] ? response['error_description'] : 'Success')
|
201
|
+
end
|
202
|
+
|
203
|
+
def authorization_from(response, params)
|
204
|
+
return response['credit_card_id'].to_s if response['credit_card_id']
|
205
|
+
|
206
|
+
original_amount = response['amount'].nil? ? nil : sprintf('%0.02f', response['amount'])
|
207
|
+
[response['checkout_id'], original_amount].join('|')
|
208
|
+
end
|
209
|
+
|
210
|
+
def split_authorization(authorization)
|
211
|
+
auth, original_amount = authorization.to_s.split('|')
|
212
|
+
[auth, original_amount]
|
213
|
+
end
|
214
|
+
|
215
|
+
def unparsable_response(raw_response)
|
216
|
+
message = 'Invalid JSON response received from WePay. Please contact WePay support if you continue to receive this message.'
|
217
|
+
message += " (The raw response returned by the API was #{raw_response.inspect})"
|
218
|
+
return Response.new(false, message)
|
219
|
+
end
|
220
|
+
|
221
|
+
def headers(options)
|
222
|
+
headers = {
|
223
|
+
'Content-Type' => 'application/json',
|
224
|
+
'User-Agent' => "ActiveMerchantBindings/#{ActiveMerchant::VERSION}",
|
225
|
+
'Authorization' => "Bearer #{@options[:access_token]}"
|
226
|
+
}
|
227
|
+
headers['Api-Version'] = options[:version] if options[:version]
|
228
|
+
headers['Client-IP'] = options[:ip] if options[:ip]
|
229
|
+
headers['WePay-Risk-Token'] = options[:risk_token] if options[:risk_token]
|
230
|
+
|
231
|
+
headers
|
232
|
+
end
|
233
|
+
end
|
234
|
+
end
|
235
|
+
end
|