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,238 @@
|
|
1
|
+
require 'active_merchant/billing/gateways/beanstream/beanstream_core'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
# This class implements the Canadian {Beanstream}[http://www.beanstream.com] payment gateway.
|
6
|
+
# It is also named TD Canada Trust Online Mart payment gateway.
|
7
|
+
# To learn more about the specification of Beanstream gateway, please read the OM_Direct_Interface_API.pdf,
|
8
|
+
# which you can get from your Beanstream account or get from me by email.
|
9
|
+
#
|
10
|
+
# == Supported transaction types by Beanstream:
|
11
|
+
# * +P+ - Purchase
|
12
|
+
# * +PA+ - Pre Authorization
|
13
|
+
# * +PAC+ - Pre Authorization Completion
|
14
|
+
#
|
15
|
+
# == Secure Payment Profiles:
|
16
|
+
# BeanStream supports payment profiles (vaults). This allows you to store cc information with BeanStream and process subsequent transactions with a customer id.
|
17
|
+
# Secure Payment Profiles must be enabled on your account (must be done over the phone).
|
18
|
+
# Your API Access Passcode must be set in Administration => account settings => order settings.
|
19
|
+
# To learn more about storing credit cards with the Beanstream gateway, documentation can be found at http://developer.beanstream.com/documentation/classic-apis
|
20
|
+
#
|
21
|
+
# To store a credit card using Beanstream's Legato Javascript Library (http://developer.beanstream.com/documentation/legato) you must pass the singleUseToken in
|
22
|
+
# the store method's option parameter. Example: @gateway.store("gt6-0c78c25b-3637-4ba0-90e2-26105287f198")
|
23
|
+
#
|
24
|
+
# == Notes
|
25
|
+
# * Adding of order products information is not implemented.
|
26
|
+
# * Ensure that country and province data is provided as a code such as "CA", "US", "QC".
|
27
|
+
# * login is the Beanstream merchant ID, username and password should be enabled in your Beanstream account and passed in using the <tt>:user</tt> and <tt>:password</tt> options.
|
28
|
+
# * Test your app with your true merchant id and test credit card information provided in the api pdf document.
|
29
|
+
# * Beanstream does not allow Payment Profiles to be deleted with their API. The accounts are 'closed', but have to be deleted manually.
|
30
|
+
#
|
31
|
+
# Example authorization (Beanstream PA transaction type):
|
32
|
+
#
|
33
|
+
# twenty = 2000
|
34
|
+
# gateway = BeanstreamGateway.new(
|
35
|
+
# :login => '100200000',
|
36
|
+
# :user => 'xiaobozz',
|
37
|
+
# :password => 'password'
|
38
|
+
# )
|
39
|
+
#
|
40
|
+
# credit_card = CreditCard.new(
|
41
|
+
# :number => '4030000010001234',
|
42
|
+
# :month => 8,
|
43
|
+
# :year => 2011,
|
44
|
+
# :first_name => 'xiaobo',
|
45
|
+
# :last_name => 'zzz',
|
46
|
+
# :verification_value => 137
|
47
|
+
# )
|
48
|
+
# response = gateway.authorize(twenty, credit_card,
|
49
|
+
# :order_id => '1234',
|
50
|
+
# :billing_address => {
|
51
|
+
# :name => 'xiaobo zzz',
|
52
|
+
# :phone => '555-555-5555',
|
53
|
+
# :address1 => '1234 Levesque St.',
|
54
|
+
# :address2 => 'Apt B',
|
55
|
+
# :city => 'Montreal',
|
56
|
+
# :state => 'QC',
|
57
|
+
# :country => 'CA',
|
58
|
+
# :zip => 'H2C1X8'
|
59
|
+
# },
|
60
|
+
# :email => 'xiaobozzz@example.com',
|
61
|
+
# :subtotal => 800,
|
62
|
+
# :shipping => 100,
|
63
|
+
# :tax1 => 100,
|
64
|
+
# :tax2 => 100,
|
65
|
+
# :custom => 'reference one'
|
66
|
+
# )
|
67
|
+
class BeanstreamGateway < Gateway
|
68
|
+
include BeanstreamCore
|
69
|
+
|
70
|
+
def authorize(money, source, options = {})
|
71
|
+
post = {}
|
72
|
+
add_amount(post, money)
|
73
|
+
add_invoice(post, options)
|
74
|
+
add_source(post, source)
|
75
|
+
add_address(post, options)
|
76
|
+
add_transaction_type(post, :authorization)
|
77
|
+
add_customer_ip(post, options)
|
78
|
+
add_recurring_payment(post, options)
|
79
|
+
add_three_ds(post, options)
|
80
|
+
commit(post)
|
81
|
+
end
|
82
|
+
|
83
|
+
def purchase(money, source, options = {})
|
84
|
+
post = {}
|
85
|
+
add_amount(post, money)
|
86
|
+
add_invoice(post, options)
|
87
|
+
add_source(post, source)
|
88
|
+
add_address(post, options)
|
89
|
+
add_transaction_type(post, purchase_action(source))
|
90
|
+
add_customer_ip(post, options)
|
91
|
+
add_recurring_payment(post, options)
|
92
|
+
add_three_ds(post, options)
|
93
|
+
commit(post)
|
94
|
+
end
|
95
|
+
|
96
|
+
def void(authorization, options = {})
|
97
|
+
reference, amount, type = split_auth(authorization)
|
98
|
+
if type == TRANSACTIONS[:authorization]
|
99
|
+
capture(0, authorization, options)
|
100
|
+
else
|
101
|
+
post = {}
|
102
|
+
add_reference(post, reference)
|
103
|
+
add_original_amount(post, amount)
|
104
|
+
add_transaction_type(post, void_action(type))
|
105
|
+
commit(post)
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
def verify(source, options = {})
|
110
|
+
MultiResponse.run(:use_first_response) do |r|
|
111
|
+
r.process { authorize(100, source, options) }
|
112
|
+
r.process(:ignore_result) { void(r.authorization, options) }
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
def success?(response)
|
117
|
+
response[:trnApproved] == '1' || response[:responseCode] == '1'
|
118
|
+
end
|
119
|
+
|
120
|
+
def recurring(money, source, options = {})
|
121
|
+
ActiveMerchant.deprecated RECURRING_DEPRECATION_MESSAGE
|
122
|
+
|
123
|
+
post = {}
|
124
|
+
add_amount(post, money)
|
125
|
+
add_invoice(post, options)
|
126
|
+
add_credit_card(post, source)
|
127
|
+
add_address(post, options)
|
128
|
+
add_transaction_type(post, purchase_action(source))
|
129
|
+
add_recurring_type(post, options)
|
130
|
+
commit(post)
|
131
|
+
end
|
132
|
+
|
133
|
+
def update_recurring(amount, source, options = {})
|
134
|
+
ActiveMerchant.deprecated RECURRING_DEPRECATION_MESSAGE
|
135
|
+
|
136
|
+
post = {}
|
137
|
+
add_recurring_amount(post, amount)
|
138
|
+
add_recurring_invoice(post, options)
|
139
|
+
add_credit_card(post, source)
|
140
|
+
add_address(post, options)
|
141
|
+
add_recurring_operation_type(post, :update)
|
142
|
+
add_recurring_service(post, options)
|
143
|
+
recurring_commit(post)
|
144
|
+
end
|
145
|
+
|
146
|
+
def cancel_recurring(options = {})
|
147
|
+
ActiveMerchant.deprecated RECURRING_DEPRECATION_MESSAGE
|
148
|
+
|
149
|
+
post = {}
|
150
|
+
add_recurring_operation_type(post, :cancel)
|
151
|
+
add_recurring_service(post, options)
|
152
|
+
recurring_commit(post)
|
153
|
+
end
|
154
|
+
|
155
|
+
def interac
|
156
|
+
@interac ||= BeanstreamInteracGateway.new(@options)
|
157
|
+
end
|
158
|
+
|
159
|
+
# To match the other stored-value gateways, like TrustCommerce,
|
160
|
+
# store and unstore need to be defined
|
161
|
+
#
|
162
|
+
# When passing a single-use token the :name option is required
|
163
|
+
def store(payment_method, options = {})
|
164
|
+
post = {}
|
165
|
+
add_address(post, options)
|
166
|
+
|
167
|
+
if payment_method.respond_to?(:number)
|
168
|
+
add_credit_card(post, payment_method)
|
169
|
+
else
|
170
|
+
post[:singleUseToken] = payment_method
|
171
|
+
end
|
172
|
+
add_secure_profile_variables(post, options)
|
173
|
+
|
174
|
+
commit(post, true)
|
175
|
+
end
|
176
|
+
|
177
|
+
# can't actually delete a secure profile with the supplicated API. This function sets the status of the profile to closed (C).
|
178
|
+
# Closed profiles will have to removed manually.
|
179
|
+
def delete(vault_id)
|
180
|
+
update(vault_id, false, { status: 'C' })
|
181
|
+
end
|
182
|
+
|
183
|
+
alias unstore delete
|
184
|
+
|
185
|
+
# Update the values (such as CC expiration) stored at
|
186
|
+
# the gateway. The CC number must be supplied in the
|
187
|
+
# CreditCard object.
|
188
|
+
def update(vault_id, payment_method, options = {})
|
189
|
+
post = {}
|
190
|
+
add_address(post, options)
|
191
|
+
if payment_method.respond_to?(:number)
|
192
|
+
add_credit_card(post, payment_method)
|
193
|
+
else
|
194
|
+
post[:singleUseToken] = payment_method
|
195
|
+
end
|
196
|
+
options[:vault_id] = vault_id
|
197
|
+
options[:operation] = secure_profile_action(:modify)
|
198
|
+
add_secure_profile_variables(post, options)
|
199
|
+
commit(post, true)
|
200
|
+
end
|
201
|
+
|
202
|
+
def supports_scrubbing?
|
203
|
+
true
|
204
|
+
end
|
205
|
+
|
206
|
+
def scrub(transcript)
|
207
|
+
transcript.
|
208
|
+
gsub(%r((Authorization: Basic )\w+), '\1[FILTERED]').
|
209
|
+
gsub(/(&?password=)[^&\s]*(&?)/, '\1[FILTERED]\2').
|
210
|
+
gsub(/(&?passcode=)[^&\s]*(&?)/, '\1[FILTERED]\2').
|
211
|
+
gsub(/(&?trnCardCvd=)\d*(&?)/, '\1[FILTERED]\2').
|
212
|
+
gsub(/(&?trnCardNumber=)\d*(&?)/, '\1[FILTERED]\2')
|
213
|
+
end
|
214
|
+
|
215
|
+
private
|
216
|
+
|
217
|
+
def build_response(*args)
|
218
|
+
Response.new(*args)
|
219
|
+
end
|
220
|
+
|
221
|
+
def add_three_ds(post, options)
|
222
|
+
return unless three_d_secure = options[:three_d_secure]
|
223
|
+
|
224
|
+
post[:SecureXID] = (three_d_secure[:ds_transaction_id] || three_d_secure[:xid]) if three_d_secure.slice(:ds_transaction_id, :xid).values.any?
|
225
|
+
post[:SecureECI] = formatted_three_ds_eci(three_d_secure[:eci]) if three_d_secure[:eci].present?
|
226
|
+
post[:SecureCAVV] = three_d_secure[:cavv] if three_d_secure[:cavv].present?
|
227
|
+
end
|
228
|
+
|
229
|
+
def formatted_three_ds_eci(val)
|
230
|
+
case val
|
231
|
+
when '05', '02' then 5
|
232
|
+
when '06', '01' then 6
|
233
|
+
else val.to_i
|
234
|
+
end
|
235
|
+
end
|
236
|
+
end
|
237
|
+
end
|
238
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
require 'active_merchant/billing/gateways/beanstream/beanstream_core'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
class BeanstreamInteracResponse < Response
|
6
|
+
def redirect
|
7
|
+
params['pageContents']
|
8
|
+
end
|
9
|
+
end
|
10
|
+
|
11
|
+
class BeanstreamInteracGateway < Gateway
|
12
|
+
include BeanstreamCore
|
13
|
+
|
14
|
+
# Confirm a transaction posted back from the bank to Beanstream.
|
15
|
+
# Confirming a transaction does not require any credentials,
|
16
|
+
# and in an application with many merchants sharing a funded
|
17
|
+
# URL the application may not yet know which merchant the
|
18
|
+
# post back is for until the response of the confirmation is
|
19
|
+
# received, which contains the order number.
|
20
|
+
def self.confirm(transaction)
|
21
|
+
gateway = new(login: '')
|
22
|
+
gateway.confirm(transaction)
|
23
|
+
end
|
24
|
+
|
25
|
+
def purchase(money, options = {})
|
26
|
+
post = {}
|
27
|
+
add_amount(post, money)
|
28
|
+
add_invoice(post, options)
|
29
|
+
add_address(post, options)
|
30
|
+
add_interac_details(post, options)
|
31
|
+
add_transaction_type(post, :purchase)
|
32
|
+
commit(post)
|
33
|
+
end
|
34
|
+
|
35
|
+
def success?(response)
|
36
|
+
response[:responseType] == 'R' || response[:trnApproved] == '1' || response[:responseCode] == '1'
|
37
|
+
end
|
38
|
+
|
39
|
+
# Confirm a transaction posted back from the bank to Beanstream.
|
40
|
+
def confirm(transaction)
|
41
|
+
post(transaction)
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
|
46
|
+
def add_interac_details(post, options)
|
47
|
+
address = options[:billing_address] || options[:address] || {}
|
48
|
+
post[:trnCardOwner] = address[:name]
|
49
|
+
post[:paymentMethod] = 'IO'
|
50
|
+
end
|
51
|
+
|
52
|
+
def build_response(*args)
|
53
|
+
BeanstreamInteracResponse.new(*args)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|