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,263 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class PixxelsGateway < Gateway
|
4
|
+
include Empty
|
5
|
+
|
6
|
+
SUCCESS_CODE = 0
|
7
|
+
SOFT_DECLINE_CODES = [65536, 65539, 65542, 65543, 65545, 65547, 65553, 65554, 65556, 65564, 65565, 65566, 65567, 65575].freeze
|
8
|
+
|
9
|
+
self.test_url = self.live_url = 'https://qa-transactions.pixxlesportal.com/api/Transactions/payment/direct'
|
10
|
+
self.default_currency = 'GBP'
|
11
|
+
self.money_format = :dollars
|
12
|
+
self.supported_countries = ['GB']
|
13
|
+
self.supported_cardtypes = %i[visa master american_express discover]
|
14
|
+
self.homepage_url = 'https://pixxles.com/'
|
15
|
+
self.display_name = 'Pixxels'
|
16
|
+
|
17
|
+
def initialize(options = {})
|
18
|
+
requires!(options, :merchant_id, :signature_key)
|
19
|
+
super
|
20
|
+
|
21
|
+
@response_http_code = nil
|
22
|
+
end
|
23
|
+
|
24
|
+
def purchase(amount, payment_method, options = {})
|
25
|
+
post = {}
|
26
|
+
add_invoice(post, amount, options)
|
27
|
+
add_device(post, options)
|
28
|
+
add_payment_method(post, payment_method, options)
|
29
|
+
add_customer_data(post, options)
|
30
|
+
add_three_d_url(post, options)
|
31
|
+
add_recurring_type(post)
|
32
|
+
|
33
|
+
commit('SALE', post)
|
34
|
+
end
|
35
|
+
|
36
|
+
def pre_authorize(options)
|
37
|
+
post = {}
|
38
|
+
add_three_ds_fields(post, options)
|
39
|
+
|
40
|
+
commit('SALE', post)
|
41
|
+
end
|
42
|
+
|
43
|
+
def confirm(options)
|
44
|
+
post = {}
|
45
|
+
add_three_ds_level_2_fields(post, options)
|
46
|
+
|
47
|
+
commit('SALE', post)
|
48
|
+
end
|
49
|
+
|
50
|
+
def cancel(authorization, options)
|
51
|
+
post = {}
|
52
|
+
add_reference(post, authorization)
|
53
|
+
|
54
|
+
commit('CANCEL', post)
|
55
|
+
end
|
56
|
+
|
57
|
+
def refund(amount, authorization, options)
|
58
|
+
post = {}
|
59
|
+
add_refund_details(post, amount, options)
|
60
|
+
add_reference(post, authorization)
|
61
|
+
|
62
|
+
commit('REFUND_SALE', post)
|
63
|
+
end
|
64
|
+
|
65
|
+
def recurring(amount, options)
|
66
|
+
post = {}
|
67
|
+
|
68
|
+
add_recurring_type(post)
|
69
|
+
add_recurring_details(post, amount, options)
|
70
|
+
add_reference(post, options[:xref])
|
71
|
+
|
72
|
+
commit('SALE', post)
|
73
|
+
end
|
74
|
+
|
75
|
+
private
|
76
|
+
|
77
|
+
def add_invoice(post, money, options)
|
78
|
+
post[:amount] = money.to_s
|
79
|
+
post[:orderRef] = options[:order_id]
|
80
|
+
post[:currencyCode] = options[:currency] || currency(money)
|
81
|
+
post[:transactionUnique] = generate_random_uuid
|
82
|
+
post[:type] = '1'
|
83
|
+
end
|
84
|
+
|
85
|
+
def add_payment_method(post, payment_method, options)
|
86
|
+
post[:cardNumber] = payment_method.card_number
|
87
|
+
post[:cardCVV] = payment_method.verification_value unless empty?(payment_method.verification_value)
|
88
|
+
post[:cardExpiryMonth] = format(payment_method.month, :two_digits)
|
89
|
+
post[:cardExpiryYear] = format(payment_method.year, :two_digits)
|
90
|
+
end
|
91
|
+
|
92
|
+
def add_customer_data(post, options)
|
93
|
+
post[:customerEmail] = options[:email]
|
94
|
+
post[:remoteAddress] = options[:ip]
|
95
|
+
|
96
|
+
if (billing_address = options[:billing_address])
|
97
|
+
post[:customerName] = billing_address[:name]
|
98
|
+
post[:customerAddress] = billing_address[:address1]
|
99
|
+
post[:customerTown] = billing_address[:city]
|
100
|
+
post[:customerCountryCode] = billing_address[:country]
|
101
|
+
post[:customerPostcode] = billing_address[:zip]
|
102
|
+
post[:customerPhone] = billing_address[:phone] if billing_address[:phone]
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
def add_three_d_url(post, options)
|
107
|
+
redirect_links = options[:redirect_links]
|
108
|
+
return unless redirect_links
|
109
|
+
|
110
|
+
post[:threeDSRedirectURL] = redirect_links[:success_url]
|
111
|
+
end
|
112
|
+
|
113
|
+
def add_three_ds_fields(post, options)
|
114
|
+
if (three_d_secure = options[:pixxel_three_d_secure])
|
115
|
+
post[:threeDSRef] = three_d_secure[:threeDSRef]
|
116
|
+
post['threeDSResponse[threeDSMethodData]'] = three_d_secure[:threeDSMethodData]
|
117
|
+
end
|
118
|
+
end
|
119
|
+
|
120
|
+
def add_three_ds_level_2_fields(post, options)
|
121
|
+
if (three_d_secure = options[:pixxel_three_d_secure])
|
122
|
+
post[:threeDSRef] = three_d_secure[:threeDSRef]
|
123
|
+
post['threeDSResponse[cres]'] = three_d_secure[:cres]
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
def add_device(post, options)
|
128
|
+
if (details = options[:browser_details])
|
129
|
+
post[:deviceAcceptCharset] = details[:accept_charset]
|
130
|
+
post[:deviceAcceptContent] = details[:accept_content]
|
131
|
+
post[:deviceAcceptEncoding] = details[:accept_encoding]
|
132
|
+
post[:deviceAcceptLanguage] = details[:accept_language]
|
133
|
+
post[:deviceCapabilities] = details[:capabilities]
|
134
|
+
post[:deviceChannel] = details[:channel]
|
135
|
+
post[:deviceIdentity] = details[:identity]
|
136
|
+
post[:deviceScreenResolution] = details[:screen_resolution]
|
137
|
+
post[:deviceTimeZone] = details[:time_zone]
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
def add_reference(post, authorization)
|
142
|
+
transaction_id, = split_authorization(authorization)
|
143
|
+
post[:xref] = transaction_id
|
144
|
+
end
|
145
|
+
|
146
|
+
def add_recurring_type(post)
|
147
|
+
post[:rtAgreementType] = 'recurring'
|
148
|
+
end
|
149
|
+
|
150
|
+
def add_recurring_details(post, amount, options)
|
151
|
+
post[:amount] = amount.to_s
|
152
|
+
post[:type] = '9'
|
153
|
+
post[:avscv2CheckRequired] = 'N'
|
154
|
+
end
|
155
|
+
|
156
|
+
def add_refund_details(post, amount, options)
|
157
|
+
post[:amount] = amount&.to_s
|
158
|
+
post[:orderRef] = options[:order_id]
|
159
|
+
end
|
160
|
+
|
161
|
+
def commit(action, params)
|
162
|
+
params[:action] = action
|
163
|
+
params[:merchantID] = @options[:merchant_id]
|
164
|
+
sorted_params = params.transform_keys(&:to_s).sort.to_h
|
165
|
+
|
166
|
+
sorted_params['signature'] = get_signature(sorted_params)
|
167
|
+
raw_response = ssl_post(url, post_data(action, sorted_params), headers)
|
168
|
+
response = parse(raw_response)
|
169
|
+
succeeded = success_from(response)
|
170
|
+
|
171
|
+
Response.new(
|
172
|
+
succeeded,
|
173
|
+
message_from(succeeded, response),
|
174
|
+
response,
|
175
|
+
error_code: succeeded ? nil : error_code_from(response),
|
176
|
+
authorization: authorization_from(response, sorted_params[:payment], action),
|
177
|
+
avs_result: AVSResult.new(code: response[:avsresponse]),
|
178
|
+
cvv_result: CVVResult.new(response[:cvvresponse]),
|
179
|
+
test: test?,
|
180
|
+
response_type: response_type(response[:responseCode]&.to_i),
|
181
|
+
response_http_code: @response_http_code,
|
182
|
+
request_endpoint: url,
|
183
|
+
request_method: :post,
|
184
|
+
request_body: sorted_params
|
185
|
+
)
|
186
|
+
end
|
187
|
+
|
188
|
+
def authorization_from(response, payment_type, action)
|
189
|
+
authorization = response[:xref]
|
190
|
+
[authorization, payment_type].join('#')
|
191
|
+
end
|
192
|
+
|
193
|
+
def split_authorization(authorization)
|
194
|
+
authorization.split('#')
|
195
|
+
end
|
196
|
+
|
197
|
+
def headers
|
198
|
+
headers = { 'Content-Type' => 'application/x-www-form-urlencoded' }
|
199
|
+
headers
|
200
|
+
end
|
201
|
+
|
202
|
+
def post_data(action, params)
|
203
|
+
params.map { |k, v| "#{k}=#{CGI.escape(v.to_s)}" }.join('&')
|
204
|
+
end
|
205
|
+
|
206
|
+
def url
|
207
|
+
test? ? test_url : live_url
|
208
|
+
end
|
209
|
+
|
210
|
+
def parse(body)
|
211
|
+
Hash[CGI.parse(body).map { |k, v| [k.intern, v.first] }]
|
212
|
+
end
|
213
|
+
|
214
|
+
def success_from(response)
|
215
|
+
response[:responseCode] == '0'
|
216
|
+
end
|
217
|
+
|
218
|
+
def message_from(succeeded, response)
|
219
|
+
if succeeded
|
220
|
+
'Succeeded'
|
221
|
+
else
|
222
|
+
response[:responseMessage] == '3DS authentication required' ? '3DS_REQUIRED' : response[:responseMessage]
|
223
|
+
end
|
224
|
+
end
|
225
|
+
|
226
|
+
def error_code_from(response)
|
227
|
+
response[:responseCode]
|
228
|
+
end
|
229
|
+
|
230
|
+
def response_type(code)
|
231
|
+
if code == SUCCESS_CODE
|
232
|
+
0
|
233
|
+
elsif SOFT_DECLINE_CODES.include?(code)
|
234
|
+
1
|
235
|
+
else
|
236
|
+
2
|
237
|
+
end
|
238
|
+
end
|
239
|
+
|
240
|
+
def handle_response(response)
|
241
|
+
@response_http_code = response.code.to_i
|
242
|
+
case @response_http_code
|
243
|
+
when 200...300
|
244
|
+
response.body
|
245
|
+
else
|
246
|
+
raise ResponseError.new(response)
|
247
|
+
end
|
248
|
+
end
|
249
|
+
|
250
|
+
def generate_random_uuid
|
251
|
+
SecureRandom.uuid
|
252
|
+
end
|
253
|
+
|
254
|
+
def get_signature(params)
|
255
|
+
signature = params.map { |k, v| "#{CGI.escape(k.to_s)}=#{CGI.escape(v.to_s)}" }.join('&')
|
256
|
+
signature += @options[:signature_key]
|
257
|
+
signature.gsub!(/(\r\n|\n\r|\r)/, "\n")
|
258
|
+
|
259
|
+
Digest::SHA512.hexdigest(signature)
|
260
|
+
end
|
261
|
+
end
|
262
|
+
end
|
263
|
+
end
|
@@ -0,0 +1,308 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class PlexoGateway < Gateway
|
4
|
+
self.test_url = 'https://api.testing.plexo.com.uy/v1/payments'
|
5
|
+
self.live_url = 'https://api.plexo.com.uy/v1/payments'
|
6
|
+
|
7
|
+
self.supported_countries = ['UY']
|
8
|
+
self.default_currency = 'UYU'
|
9
|
+
self.supported_cardtypes = %i[visa master american_express discover passcard edenred anda tarjeta-d]
|
10
|
+
|
11
|
+
self.homepage_url = 'https://www.plexo.com.uy'
|
12
|
+
self.display_name = 'Plexo'
|
13
|
+
|
14
|
+
APPENDED_URLS = %w(captures refunds cancellations verify)
|
15
|
+
AMOUNT_IN_RESPONSE = %w(authonly purchase /verify)
|
16
|
+
APPROVED_STATUS = %w(approved authorized)
|
17
|
+
|
18
|
+
def initialize(options = {})
|
19
|
+
requires!(options, :client_id, :api_key)
|
20
|
+
@credentials = options
|
21
|
+
super
|
22
|
+
end
|
23
|
+
|
24
|
+
def purchase(money, payment, options = {})
|
25
|
+
post = {}
|
26
|
+
build_auth_purchase_request(money, post, payment, options)
|
27
|
+
|
28
|
+
commit('purchase', post, options)
|
29
|
+
end
|
30
|
+
|
31
|
+
def authorize(money, payment, options = {})
|
32
|
+
post = {}
|
33
|
+
build_auth_purchase_request(money, post, payment, options)
|
34
|
+
add_capture_type(post, options)
|
35
|
+
|
36
|
+
commit('authonly', post, options)
|
37
|
+
end
|
38
|
+
|
39
|
+
def capture(money, authorization, options = {})
|
40
|
+
post = {}
|
41
|
+
post[:ReferenceId] = options[:reference_id] || generate_unique_id
|
42
|
+
post[:Amount] = amount(money)
|
43
|
+
|
44
|
+
commit("/#{authorization}/captures", post, options)
|
45
|
+
end
|
46
|
+
|
47
|
+
def refund(money, authorization, options = {})
|
48
|
+
post = {}
|
49
|
+
post[:ReferenceId] = options[:reference_id] || generate_unique_id
|
50
|
+
post[:Type] = options[:refund_type] || 'refund'
|
51
|
+
post[:Description] = options[:description]
|
52
|
+
post[:Reason] = options[:reason]
|
53
|
+
post[:Amount] = amount(money)
|
54
|
+
|
55
|
+
commit("/#{authorization}/refunds", post, options)
|
56
|
+
end
|
57
|
+
|
58
|
+
def void(authorization, options = {})
|
59
|
+
post = {}
|
60
|
+
post[:ReferenceId] = options[:reference_id] || generate_unique_id
|
61
|
+
post[:Description] = options[:description]
|
62
|
+
post[:Reason] = options[:reason]
|
63
|
+
|
64
|
+
commit("/#{authorization}/cancellations", post, options)
|
65
|
+
end
|
66
|
+
|
67
|
+
def verify(credit_card, options = {})
|
68
|
+
post = {}
|
69
|
+
post[:ReferenceId] = options[:reference_id] || generate_unique_id
|
70
|
+
post[:MerchantId] = options[:merchant_id] || @credentials[:merchant_id]
|
71
|
+
post[:StatementDescriptor] = options[:statement_descriptor] if options[:statement_descriptor]
|
72
|
+
post[:CustomerId] = options[:customer_id] if options[:customer_id]
|
73
|
+
money = options[:verify_amount].to_i || 100
|
74
|
+
|
75
|
+
add_payment_method(post, credit_card, options)
|
76
|
+
add_metadata(post, options[:metadata])
|
77
|
+
add_amount(money, post, options)
|
78
|
+
add_browser_details(post, options)
|
79
|
+
|
80
|
+
commit('/verify', post, options)
|
81
|
+
end
|
82
|
+
|
83
|
+
def supports_scrubbing?
|
84
|
+
true
|
85
|
+
end
|
86
|
+
|
87
|
+
def scrub(transcript)
|
88
|
+
transcript.
|
89
|
+
gsub(%r((Authorization: Basic )\w+), '\1[FILTERED]').
|
90
|
+
gsub(%r(("Number\\?"\s*:\s*\\?")[^"]*)i, '\1[FILTERED]').
|
91
|
+
gsub(%r(("Cvc\\?"\s*:\s*\\?")[^"]*)i, '\1[FILTERED]').
|
92
|
+
gsub(%r(("InvoiceNumber\\?"\s*:\s*\\?")[^"]*)i, '\1[FILTERED]').
|
93
|
+
gsub(%r(("MerchantId\\?"\s*:\s*\\?")[^"]*)i, '\1[FILTERED]')
|
94
|
+
end
|
95
|
+
|
96
|
+
private
|
97
|
+
|
98
|
+
def encoded_credentials
|
99
|
+
Base64.encode64("#{@credentials[:client_id]}:#{@credentials[:api_key]}").delete("\n")
|
100
|
+
end
|
101
|
+
|
102
|
+
def build_auth_purchase_request(money, post, payment, options)
|
103
|
+
post[:ReferenceId] = options[:reference_id] || generate_unique_id
|
104
|
+
post[:MerchantId] = options[:merchant_id] || @credentials[:merchant_id]
|
105
|
+
post[:Installments] = options[:installments] if options[:installments]
|
106
|
+
post[:StatementDescriptor] = options[:statement_descriptor] if options[:statement_descriptor]
|
107
|
+
post[:CustomerId] = options[:customer_id] if options[:customer_id]
|
108
|
+
|
109
|
+
add_payment_method(post, payment, options)
|
110
|
+
add_items(post, options[:items])
|
111
|
+
add_metadata(post, options[:metadata])
|
112
|
+
add_amount(money, post, options)
|
113
|
+
add_browser_details(post, options)
|
114
|
+
end
|
115
|
+
|
116
|
+
def header(parameters = {})
|
117
|
+
{
|
118
|
+
'Content-Type' => 'application/json',
|
119
|
+
'Authorization' => "Basic #{encoded_credentials}"
|
120
|
+
}
|
121
|
+
end
|
122
|
+
|
123
|
+
def add_capture_type(post, options)
|
124
|
+
post[:Capture] = {}
|
125
|
+
post[:Capture][:Method] = options.dig(:capture_type, :method) || 'manual'
|
126
|
+
end
|
127
|
+
|
128
|
+
def add_items(post, items)
|
129
|
+
return unless items&.kind_of?(Array)
|
130
|
+
|
131
|
+
post[:Items] = []
|
132
|
+
|
133
|
+
items.each do |option_item|
|
134
|
+
item = {}
|
135
|
+
item[:ReferenceId] = option_item[:reference_id] || generate_unique_id
|
136
|
+
item[:Name] = option_item[:name] if option_item[:name]
|
137
|
+
item[:Description] = option_item[:description] if option_item[:description]
|
138
|
+
item[:Quantity] = option_item[:quantity] if option_item[:quantity]
|
139
|
+
item[:Price] = option_item[:price] if option_item[:price]
|
140
|
+
item[:Discount] = option_item[:discount] if option_item[:discount]
|
141
|
+
|
142
|
+
post[:Items].append(item)
|
143
|
+
end
|
144
|
+
end
|
145
|
+
|
146
|
+
def add_metadata(post, metadata)
|
147
|
+
return unless metadata&.kind_of?(Hash)
|
148
|
+
|
149
|
+
metadata.transform_keys! { |key| key.to_s.camelize.to_sym }
|
150
|
+
post[:Metadata] = metadata
|
151
|
+
end
|
152
|
+
|
153
|
+
def add_amount(money, post, amount_options)
|
154
|
+
post[:Amount] = {}
|
155
|
+
|
156
|
+
post[:Amount][:Currency] = amount_options[:currency] || self.default_currency
|
157
|
+
post[:Amount][:Total] = amount(money)
|
158
|
+
post[:Amount][:Details] = {}
|
159
|
+
add_amount_details(post[:Amount][:Details], amount_options[:amount_details]) if amount_options[:amount_details]
|
160
|
+
end
|
161
|
+
|
162
|
+
def add_amount_details(amount_details, options)
|
163
|
+
return unless options
|
164
|
+
|
165
|
+
amount_details[:TaxedAmount] = options[:taxed_amount] if options[:taxed_amount]
|
166
|
+
amount_details[:TipAmount] = options[:tip_amount] if options[:tip_amount]
|
167
|
+
amount_details[:DiscountAmount] = options[:discount_amount] if options[:discount_amount]
|
168
|
+
amount_details[:TaxableAmount] = options[:taxable_amount] if options[:taxable_amount]
|
169
|
+
add_tax(amount_details, options[:tax])
|
170
|
+
end
|
171
|
+
|
172
|
+
def add_tax(post, tax)
|
173
|
+
return unless tax
|
174
|
+
|
175
|
+
post[:Tax] = {}
|
176
|
+
post[:Tax][:Type] = tax[:type] if tax[:type]
|
177
|
+
post[:Tax][:Amount] = tax[:amount] if tax[:amount]
|
178
|
+
post[:Tax][:Rate] = tax[:rate] if tax[:rate]
|
179
|
+
end
|
180
|
+
|
181
|
+
def add_browser_details(post, browser_details)
|
182
|
+
return unless browser_details
|
183
|
+
|
184
|
+
post[:BrowserDetails] = {}
|
185
|
+
post[:BrowserDetails][:DeviceFingerprint] = browser_details[:finger_print] if browser_details[:finger_print]
|
186
|
+
post[:BrowserDetails][:IpAddress] = browser_details[:ip] if browser_details[:ip]
|
187
|
+
end
|
188
|
+
|
189
|
+
def add_payment_method(post, payment, options)
|
190
|
+
post[:paymentMethod] = {}
|
191
|
+
|
192
|
+
if payment&.is_a?(CreditCard)
|
193
|
+
post[:paymentMethod][:type] = 'card'
|
194
|
+
post[:paymentMethod][:Card] = {}
|
195
|
+
post[:paymentMethod][:Card][:Number] = payment.number
|
196
|
+
post[:paymentMethod][:Card][:ExpMonth] = format(payment.month, :two_digits) if payment.month
|
197
|
+
post[:paymentMethod][:Card][:ExpYear] = format(payment.year, :two_digits) if payment.year
|
198
|
+
post[:paymentMethod][:Card][:Cvc] = payment.verification_value if payment.verification_value
|
199
|
+
|
200
|
+
add_card_holder(post[:paymentMethod][:Card], payment, options)
|
201
|
+
end
|
202
|
+
end
|
203
|
+
|
204
|
+
def add_card_holder(card, payment, options)
|
205
|
+
requires!(options, :email)
|
206
|
+
|
207
|
+
cardholder = {}
|
208
|
+
cardholder[:FirstName] = payment.first_name if payment.first_name
|
209
|
+
cardholder[:LastName] = payment.last_name if payment.last_name
|
210
|
+
cardholder[:Email] = options[:email]
|
211
|
+
cardholder[:Birthdate] = options[:cardholder_birthdate] if options[:cardholder_birthdate]
|
212
|
+
cardholder[:Identification] = {}
|
213
|
+
cardholder[:Identification][:Type] = options[:identification_type] if options[:identification_type]
|
214
|
+
cardholder[:Identification][:Value] = options[:identification_value] if options[:identification_value]
|
215
|
+
add_billing_address(cardholder, options)
|
216
|
+
|
217
|
+
card[:Cardholder] = cardholder
|
218
|
+
end
|
219
|
+
|
220
|
+
def add_billing_address(cardholder, options)
|
221
|
+
return unless address = options[:billing_address]
|
222
|
+
|
223
|
+
cardholder[:BillingAddress] = {}
|
224
|
+
cardholder[:BillingAddress][:City] = address[:city]
|
225
|
+
cardholder[:BillingAddress][:Country] = address[:country]
|
226
|
+
cardholder[:BillingAddress][:Line1] = address[:address1]
|
227
|
+
cardholder[:BillingAddress][:Line2] = address[:address2]
|
228
|
+
cardholder[:BillingAddress][:PostalCode] = address[:zip]
|
229
|
+
cardholder[:BillingAddress][:State] = address[:state]
|
230
|
+
end
|
231
|
+
|
232
|
+
def parse(body)
|
233
|
+
return {} if body == ''
|
234
|
+
|
235
|
+
JSON.parse(body)
|
236
|
+
end
|
237
|
+
|
238
|
+
def build_url(action, base)
|
239
|
+
url = base
|
240
|
+
url += action if APPENDED_URLS.any? { |key| action.include?(key) }
|
241
|
+
url
|
242
|
+
end
|
243
|
+
|
244
|
+
def get_authorization_from_url(url)
|
245
|
+
url.split('/')[1]
|
246
|
+
end
|
247
|
+
|
248
|
+
def reorder_amount_fields(response)
|
249
|
+
return response unless response['amount']
|
250
|
+
|
251
|
+
amount_obj = response['amount']
|
252
|
+
response['amount'] = amount_obj['total'].to_i if amount_obj['total']
|
253
|
+
response['currency'] = amount_obj['currency'] if amount_obj['currency']
|
254
|
+
response['amount_details'] = amount_obj['details'] if amount_obj['details']
|
255
|
+
response
|
256
|
+
end
|
257
|
+
|
258
|
+
def commit(action, parameters, options = {})
|
259
|
+
base_url = (test? ? test_url : live_url)
|
260
|
+
url = build_url(action, base_url)
|
261
|
+
response = parse(ssl_post(url, parameters.to_json, header(options)))
|
262
|
+
response = reorder_amount_fields(response) if AMOUNT_IN_RESPONSE.include?(action)
|
263
|
+
|
264
|
+
Response.new(
|
265
|
+
success_from(response),
|
266
|
+
message_from(response),
|
267
|
+
response,
|
268
|
+
authorization: authorization_from(response, action),
|
269
|
+
test: test?,
|
270
|
+
error_code: error_code_from(response)
|
271
|
+
)
|
272
|
+
end
|
273
|
+
|
274
|
+
def handle_response(response)
|
275
|
+
case response.code.to_i
|
276
|
+
when 200...300, 400, 401
|
277
|
+
response.body
|
278
|
+
else
|
279
|
+
raise ResponseError.new(response)
|
280
|
+
end
|
281
|
+
end
|
282
|
+
|
283
|
+
def success_from(response)
|
284
|
+
APPROVED_STATUS.include?(response['status'])
|
285
|
+
end
|
286
|
+
|
287
|
+
def message_from(response)
|
288
|
+
response = response['transactions']&.first if response['transactions']&.is_a?(Array)
|
289
|
+
response['resultMessage'] || response['message']
|
290
|
+
end
|
291
|
+
|
292
|
+
def authorization_from(response, action = nil)
|
293
|
+
if action.include?('captures')
|
294
|
+
get_authorization_from_url(action)
|
295
|
+
else
|
296
|
+
response['id']
|
297
|
+
end
|
298
|
+
end
|
299
|
+
|
300
|
+
def error_code_from(response)
|
301
|
+
return if success_from(response)
|
302
|
+
|
303
|
+
response = response['transactions']&.first if response['transactions']&.is_a?(Array)
|
304
|
+
response['resultCode'] || response['status']
|
305
|
+
end
|
306
|
+
end
|
307
|
+
end
|
308
|
+
end
|