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,204 @@
|
|
1
|
+
module ActiveMerchant #:nodoc:
|
2
|
+
module Billing #:nodoc:
|
3
|
+
class PaystationGateway < Gateway
|
4
|
+
self.live_url = self.test_url = 'https://www.paystation.co.nz/direct/paystation.dll'
|
5
|
+
|
6
|
+
# an "error code" of "0" means "No error - transaction successful"
|
7
|
+
SUCCESSFUL_RESPONSE_CODE = '0'
|
8
|
+
|
9
|
+
# an "error code" of "34" means "Future Payment Stored OK"
|
10
|
+
SUCCESSFUL_FUTURE_PAYMENT = '34'
|
11
|
+
|
12
|
+
# TODO: check this with paystation
|
13
|
+
self.supported_countries = ['NZ']
|
14
|
+
|
15
|
+
# TODO: check this with paystation (amex and diners need to be enabled)
|
16
|
+
self.supported_cardtypes = %i[visa master american_express diners_club]
|
17
|
+
|
18
|
+
self.homepage_url = 'http://paystation.co.nz'
|
19
|
+
self.display_name = 'Paystation'
|
20
|
+
|
21
|
+
self.default_currency = 'NZD'
|
22
|
+
self.money_format = :cents
|
23
|
+
|
24
|
+
def initialize(options = {})
|
25
|
+
requires!(options, :paystation_id, :gateway_id)
|
26
|
+
super
|
27
|
+
end
|
28
|
+
|
29
|
+
def authorize(money, credit_card, options = {})
|
30
|
+
post = new_request
|
31
|
+
|
32
|
+
add_invoice(post, options)
|
33
|
+
add_amount(post, money, options)
|
34
|
+
add_credit_card(post, credit_card)
|
35
|
+
add_authorize_flag(post, options)
|
36
|
+
|
37
|
+
commit(post)
|
38
|
+
end
|
39
|
+
|
40
|
+
def capture(money, authorization_token, options = {})
|
41
|
+
post = new_request
|
42
|
+
|
43
|
+
add_invoice(post, options)
|
44
|
+
add_amount(post, money, options)
|
45
|
+
add_authorization_token(post, authorization_token, options[:credit_card_verification])
|
46
|
+
|
47
|
+
commit(post)
|
48
|
+
end
|
49
|
+
|
50
|
+
def purchase(money, payment_source, options = {})
|
51
|
+
post = new_request
|
52
|
+
|
53
|
+
add_invoice(post, options)
|
54
|
+
add_amount(post, money, options)
|
55
|
+
|
56
|
+
if payment_source.is_a?(String)
|
57
|
+
add_token(post, payment_source)
|
58
|
+
else
|
59
|
+
add_credit_card(post, payment_source)
|
60
|
+
end
|
61
|
+
|
62
|
+
add_customer_data(post, options) if options.has_key?(:customer)
|
63
|
+
|
64
|
+
commit(post)
|
65
|
+
end
|
66
|
+
|
67
|
+
def store(credit_card, options = {})
|
68
|
+
post = new_request
|
69
|
+
|
70
|
+
add_invoice(post, options)
|
71
|
+
add_credit_card(post, credit_card)
|
72
|
+
store_credit_card(post, options)
|
73
|
+
|
74
|
+
commit(post)
|
75
|
+
end
|
76
|
+
|
77
|
+
def refund(money, authorization, options = {})
|
78
|
+
post = new_request
|
79
|
+
add_amount(post, money, options)
|
80
|
+
add_invoice(post, options)
|
81
|
+
add_refund_specific_fields(post, authorization)
|
82
|
+
|
83
|
+
commit(post)
|
84
|
+
end
|
85
|
+
|
86
|
+
def verify(credit_card, options = {})
|
87
|
+
authorize(0, credit_card, options)
|
88
|
+
end
|
89
|
+
|
90
|
+
def supports_scrubbing?
|
91
|
+
true
|
92
|
+
end
|
93
|
+
|
94
|
+
def scrub(transcript)
|
95
|
+
transcript.
|
96
|
+
gsub(%r((pstn_cn=)\d*), '\1[FILTERED]').
|
97
|
+
gsub(%r((pstn_cc=)\d*), '\1[FILTERED]')
|
98
|
+
end
|
99
|
+
|
100
|
+
private
|
101
|
+
|
102
|
+
def new_request
|
103
|
+
{
|
104
|
+
:pi => @options[:paystation_id], # paystation account id
|
105
|
+
:gi => @options[:gateway_id], # paystation gateway id
|
106
|
+
'2p' => 't', # two-party transaction type
|
107
|
+
:nr => 't', # -- redirect??
|
108
|
+
:df => 'yymm' # date format: optional sometimes, required others
|
109
|
+
}
|
110
|
+
end
|
111
|
+
|
112
|
+
def add_customer_data(post, options)
|
113
|
+
post[:mc] = options[:customer]
|
114
|
+
end
|
115
|
+
|
116
|
+
def add_invoice(post, options)
|
117
|
+
post[:ms] = generate_unique_id
|
118
|
+
post[:mo] = options[:description]
|
119
|
+
post[:mr] = options[:order_id]
|
120
|
+
end
|
121
|
+
|
122
|
+
def add_credit_card(post, credit_card)
|
123
|
+
post[:cn] = credit_card.number
|
124
|
+
post[:ct] = credit_card.brand
|
125
|
+
post[:ex] = format_date(credit_card.month, credit_card.year)
|
126
|
+
post[:cc] = credit_card.verification_value if credit_card.verification_value?
|
127
|
+
end
|
128
|
+
|
129
|
+
def add_token(post, token)
|
130
|
+
post[:fp] = 't' # turn on "future payments" - what paystation calls Token Billing
|
131
|
+
post[:ft] = token
|
132
|
+
end
|
133
|
+
|
134
|
+
def store_credit_card(post, options)
|
135
|
+
post[:fp] = 't' # turn on "future payments" - what paystation calls Token Billing
|
136
|
+
post[:fs] = 't' # tells paystation to store right now, not bill
|
137
|
+
post[:ft] = options[:token] if options[:token] # specify a token to use that, or let Paystation generate one
|
138
|
+
end
|
139
|
+
|
140
|
+
def add_authorize_flag(post, options)
|
141
|
+
post[:pa] = 't' # tells Paystation that this is a pre-auth authorisation payment (account must be in pre-auth mode)
|
142
|
+
end
|
143
|
+
|
144
|
+
def add_refund_specific_fields(post, authorization)
|
145
|
+
post[:rc] = 't'
|
146
|
+
post[:rt] = authorization
|
147
|
+
end
|
148
|
+
|
149
|
+
def add_authorization_token(post, auth_token, verification_value = nil)
|
150
|
+
post[:cp] = 't' # Capture Payment flag – tells Paystation this transaction should be treated as a capture payment
|
151
|
+
post[:cx] = auth_token
|
152
|
+
post[:cc] = verification_value
|
153
|
+
end
|
154
|
+
|
155
|
+
def add_amount(post, money, options)
|
156
|
+
post[:am] = amount(money)
|
157
|
+
post[:cu] = options[:currency] || currency(money)
|
158
|
+
end
|
159
|
+
|
160
|
+
def parse(xml_response)
|
161
|
+
response = {}
|
162
|
+
|
163
|
+
xml = REXML::Document.new(xml_response)
|
164
|
+
|
165
|
+
xml.elements.each("#{xml.root.name}/*") do |element|
|
166
|
+
response[element.name.underscore.to_sym] = element.text
|
167
|
+
end
|
168
|
+
|
169
|
+
response
|
170
|
+
end
|
171
|
+
|
172
|
+
def commit(post)
|
173
|
+
post[:tm] = 'T' if test?
|
174
|
+
pstn_prefix_params = post.collect { |key, value| "pstn_#{key}=#{CGI.escape(value.to_s)}" }.join('&')
|
175
|
+
|
176
|
+
data = ssl_post(self.live_url, "#{pstn_prefix_params}&paystation=_empty")
|
177
|
+
response = parse(data)
|
178
|
+
message = message_from(response)
|
179
|
+
|
180
|
+
PaystationResponse.new(success?(response), message, response,
|
181
|
+
test: (response[:tm]&.casecmp('t')&.zero?),
|
182
|
+
authorization: response[:paystation_transaction_id])
|
183
|
+
end
|
184
|
+
|
185
|
+
def success?(response)
|
186
|
+
(response[:ec] == SUCCESSFUL_RESPONSE_CODE) || (response[:ec] == SUCCESSFUL_FUTURE_PAYMENT)
|
187
|
+
end
|
188
|
+
|
189
|
+
def message_from(response)
|
190
|
+
response[:em]
|
191
|
+
end
|
192
|
+
|
193
|
+
def format_date(month, year)
|
194
|
+
"#{format(year, :two_digits)}#{format(month, :two_digits)}"
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
class PaystationResponse < Response
|
199
|
+
def token
|
200
|
+
@params['future_payment_token']
|
201
|
+
end
|
202
|
+
end
|
203
|
+
end
|
204
|
+
end
|
@@ -0,0 +1,249 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
class PayuInGateway < Gateway
|
6
|
+
self.test_url = 'https://test.payu.in/_payment'
|
7
|
+
self.live_url = 'https://secure.payu.in/_payment'
|
8
|
+
|
9
|
+
TEST_INFO_URL = 'https://test.payu.in/merchant/postservice.php?form=2'
|
10
|
+
LIVE_INFO_URL = 'https://info.payu.in/merchant/postservice.php?form=2'
|
11
|
+
|
12
|
+
self.supported_countries = ['IN']
|
13
|
+
self.default_currency = 'INR'
|
14
|
+
self.supported_cardtypes = %i[visa master american_express diners_club maestro]
|
15
|
+
|
16
|
+
self.homepage_url = 'https://www.payu.in/'
|
17
|
+
self.display_name = 'PayU India'
|
18
|
+
|
19
|
+
def initialize(options = {})
|
20
|
+
requires!(options, :key, :salt)
|
21
|
+
super
|
22
|
+
end
|
23
|
+
|
24
|
+
def purchase(money, payment, options = {})
|
25
|
+
requires!(options, :order_id)
|
26
|
+
|
27
|
+
post = {}
|
28
|
+
add_invoice(post, money, options)
|
29
|
+
add_payment(post, payment)
|
30
|
+
add_addresses(post, options)
|
31
|
+
add_customer_data(post, options)
|
32
|
+
add_auth(post)
|
33
|
+
|
34
|
+
MultiResponse.run do |r|
|
35
|
+
r.process { commit(url('purchase'), post) }
|
36
|
+
if r.params['enrolled'].to_s == '0'
|
37
|
+
r.process { commit(r.params['post_uri'], r.params['form_post_vars']) }
|
38
|
+
else
|
39
|
+
r.process { handle_3dsecure(r) }
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def refund(money, authorization, options = {})
|
45
|
+
raise ArgumentError, 'Amount is required' unless money
|
46
|
+
|
47
|
+
post = {}
|
48
|
+
|
49
|
+
post[:command] = 'cancel_refund_transaction'
|
50
|
+
post[:var1] = authorization
|
51
|
+
post[:var2] = generate_unique_id
|
52
|
+
post[:var3] = amount(money)
|
53
|
+
|
54
|
+
add_auth(post, :command, :var1)
|
55
|
+
|
56
|
+
commit(url('refund'), post)
|
57
|
+
end
|
58
|
+
|
59
|
+
def supports_scrubbing?
|
60
|
+
true
|
61
|
+
end
|
62
|
+
|
63
|
+
def scrub(transcript)
|
64
|
+
transcript.
|
65
|
+
gsub(/(ccnum=)[^&\n"]*(&|\n|"|$)/, '\1[FILTERED]\2').
|
66
|
+
gsub(/(ccvv=)[^&\n"]*(&|\n|"|$)/, '\1[FILTERED]\2').
|
67
|
+
gsub(/(card_hash=)[^&\n"]*(&|\n|"|$)/, '\1[FILTERED]\2').
|
68
|
+
gsub(/(ccnum":")[^"]*(")/, '\1[FILTERED]\2').
|
69
|
+
gsub(/(ccvv":")[^"]*(")/, '\1[FILTERED]\2')
|
70
|
+
end
|
71
|
+
|
72
|
+
private
|
73
|
+
|
74
|
+
PAYMENT_DIGEST_KEYS = %w(
|
75
|
+
txnid amount productinfo firstname email
|
76
|
+
udf1 udf2 udf3 udf4 udf5
|
77
|
+
bogus bogus bogus bogus bogus
|
78
|
+
)
|
79
|
+
def add_auth(post, *digest_keys)
|
80
|
+
post[:key] = @options[:key]
|
81
|
+
post[:txn_s2s_flow] = 1
|
82
|
+
|
83
|
+
digest_keys = PAYMENT_DIGEST_KEYS if digest_keys.empty?
|
84
|
+
digest = Digest::SHA2.new(512)
|
85
|
+
digest << @options[:key] << '|'
|
86
|
+
digest_keys.each do |key|
|
87
|
+
digest << (post[key.to_sym] || '') << '|'
|
88
|
+
end
|
89
|
+
digest << @options[:salt]
|
90
|
+
post[:hash] = digest.hexdigest
|
91
|
+
end
|
92
|
+
|
93
|
+
def add_customer_data(post, options)
|
94
|
+
post[:email] = clean(options[:email] || 'unknown@example.com', nil, 50)
|
95
|
+
post[:phone] = clean((options[:billing_address] && options[:billing_address][:phone]) || '11111111111', :numeric, 50)
|
96
|
+
end
|
97
|
+
|
98
|
+
def add_addresses(post, options)
|
99
|
+
if options[:billing_address]
|
100
|
+
post[:address1] = clean(options[:billing_address][:address1], :text, 100)
|
101
|
+
post[:address2] = clean(options[:billing_address][:address2], :text, 100)
|
102
|
+
post[:city] = clean(options[:billing_address][:city], :text, 50)
|
103
|
+
post[:state] = clean(options[:billing_address][:state], :text, 50)
|
104
|
+
post[:country] = clean(options[:billing_address][:country], :text, 50)
|
105
|
+
post[:zipcode] = clean(options[:billing_address][:zip], :numeric, 20)
|
106
|
+
end
|
107
|
+
|
108
|
+
if options[:shipping_address]
|
109
|
+
if options[:shipping_address][:name]
|
110
|
+
first, *rest = options[:shipping_address][:name].split(/\s+/)
|
111
|
+
post[:shipping_firstname] = clean(first, :name, 60)
|
112
|
+
post[:shipping_lastname] = clean(rest.join(' '), :name, 20)
|
113
|
+
end
|
114
|
+
post[:shipping_address1] = clean(options[:shipping_address][:address1], :text, 100)
|
115
|
+
post[:shipping_address2] = clean(options[:shipping_address][:address2], :text, 100)
|
116
|
+
post[:shipping_city] = clean(options[:shipping_address][:city], :text, 50)
|
117
|
+
post[:shipping_state] = clean(options[:shipping_address][:state], :text, 50)
|
118
|
+
post[:shipping_country] = clean(options[:shipping_address][:country], :text, 50)
|
119
|
+
post[:shipping_zipcode] = clean(options[:shipping_address][:zip], :numeric, 20)
|
120
|
+
post[:shipping_phone] = clean(options[:shipping_address][:phone], :numeric, 50)
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
def add_invoice(post, money, options)
|
125
|
+
post[:amount] = amount(money)
|
126
|
+
|
127
|
+
post[:txnid] = clean(options[:order_id], :alphanumeric, 30)
|
128
|
+
post[:productinfo] = clean(options[:description] || 'Purchase', nil, 100)
|
129
|
+
|
130
|
+
post[:surl] = 'http://example.com'
|
131
|
+
post[:furl] = 'http://example.com'
|
132
|
+
end
|
133
|
+
|
134
|
+
BRAND_MAP = {
|
135
|
+
visa: 'VISA',
|
136
|
+
master: 'MAST',
|
137
|
+
american_express: 'AMEX',
|
138
|
+
diners_club: 'DINR',
|
139
|
+
maestro: 'MAES'
|
140
|
+
}
|
141
|
+
|
142
|
+
def add_payment(post, payment)
|
143
|
+
post[:pg] = 'CC'
|
144
|
+
post[:firstname] = clean(payment.first_name, :name, 60)
|
145
|
+
post[:lastname] = clean(payment.last_name, :name, 20)
|
146
|
+
|
147
|
+
post[:bankcode] = BRAND_MAP[payment.brand.to_sym]
|
148
|
+
post[:ccnum] = payment.number
|
149
|
+
post[:ccvv] = payment.verification_value
|
150
|
+
post[:ccname] = payment.name
|
151
|
+
post[:ccexpmon] = format(payment.month, :two_digits)
|
152
|
+
post[:ccexpyr] = format(payment.year, :four_digits)
|
153
|
+
end
|
154
|
+
|
155
|
+
def clean(value, format, maxlength)
|
156
|
+
value ||= ''
|
157
|
+
value =
|
158
|
+
case format
|
159
|
+
when :alphanumeric
|
160
|
+
value.gsub(/[^A-Za-z0-9]/, '')
|
161
|
+
when :name
|
162
|
+
value.gsub(/[^A-Za-z ]/, '')
|
163
|
+
when :numeric
|
164
|
+
value.gsub(/[^0-9]/, '')
|
165
|
+
when :text
|
166
|
+
value.gsub(/[^A-Za-z0-9@\-_\/\. ]/, '')
|
167
|
+
when nil
|
168
|
+
value
|
169
|
+
else
|
170
|
+
raise "Unknown format #{format} for #{value}"
|
171
|
+
end
|
172
|
+
value[0...maxlength]
|
173
|
+
end
|
174
|
+
|
175
|
+
def parse(body)
|
176
|
+
top = JSON.parse(body)
|
177
|
+
|
178
|
+
if result = top.delete('result')
|
179
|
+
result.split('&').inject({}) do |hash, string|
|
180
|
+
key, value = string.split('=')
|
181
|
+
hash[CGI.unescape(key).downcase] = CGI.unescape(value || '')
|
182
|
+
hash
|
183
|
+
end.each do |key, value|
|
184
|
+
if top[key]
|
185
|
+
top["result_#{key}"] = value
|
186
|
+
else
|
187
|
+
top[key] = value
|
188
|
+
end
|
189
|
+
end
|
190
|
+
end
|
191
|
+
|
192
|
+
if response = top.delete('response')
|
193
|
+
top.merge!(response)
|
194
|
+
end
|
195
|
+
|
196
|
+
top
|
197
|
+
rescue JSON::ParserError
|
198
|
+
{
|
199
|
+
'error' => "Invalid response received from the PayU API. (The raw response was `#{body}`)."
|
200
|
+
}
|
201
|
+
end
|
202
|
+
|
203
|
+
def commit(url, parameters)
|
204
|
+
response = parse(ssl_post(url, post_data(parameters), 'Accept-Encoding' => 'identity'))
|
205
|
+
|
206
|
+
Response.new(
|
207
|
+
success_from(response),
|
208
|
+
message_from(response),
|
209
|
+
response,
|
210
|
+
authorization: authorization_from(response),
|
211
|
+
test: test?
|
212
|
+
)
|
213
|
+
end
|
214
|
+
|
215
|
+
def url(action)
|
216
|
+
case action
|
217
|
+
when 'purchase'
|
218
|
+
(test? ? test_url : live_url)
|
219
|
+
else
|
220
|
+
(test? ? TEST_INFO_URL : LIVE_INFO_URL)
|
221
|
+
end
|
222
|
+
end
|
223
|
+
|
224
|
+
def success_from(response)
|
225
|
+
if response['result_status']
|
226
|
+
(response['status'] == 'success' && response['result_status'] == 'success')
|
227
|
+
else
|
228
|
+
(response['status'] == 'success' || response['status'].to_s == '1')
|
229
|
+
end
|
230
|
+
end
|
231
|
+
|
232
|
+
def message_from(response)
|
233
|
+
(response['error_message'] || response['error'] || response['msg'])
|
234
|
+
end
|
235
|
+
|
236
|
+
def authorization_from(response)
|
237
|
+
response['mihpayid']
|
238
|
+
end
|
239
|
+
|
240
|
+
def post_data(parameters = {})
|
241
|
+
PostData.new.merge!(parameters).to_post_data
|
242
|
+
end
|
243
|
+
|
244
|
+
def handle_3dsecure(response)
|
245
|
+
Response.new(false, '3D-secure enrolled cards are not supported.')
|
246
|
+
end
|
247
|
+
end
|
248
|
+
end
|
249
|
+
end
|