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,317 @@
|
|
1
|
+
require 'klarna'
|
2
|
+
|
3
|
+
module ActiveMerchant
|
4
|
+
module Billing
|
5
|
+
class KlarnaGateway < Gateway
|
6
|
+
self.supported_countries = %w(AD AT BE BG CA CH CZ DE DK EE ES FI FR GB GR HR HU
|
7
|
+
IE IS IT LI LT LU LV MC MT NL NO PL PT RO SE SI SK US)
|
8
|
+
self.supported_cardtypes = %i[visa master american_express discover jcb diners_club]
|
9
|
+
self.display_name = 'Klarna'
|
10
|
+
self.homepage_url = 'https://www.klarna.com/'
|
11
|
+
|
12
|
+
def initialize(options = {})
|
13
|
+
requires!(options, :login, :password, :zone)
|
14
|
+
@options = options
|
15
|
+
|
16
|
+
super
|
17
|
+
Klarna.configure do |config|
|
18
|
+
config.environment = @options[:test] ? 'test' : 'production'
|
19
|
+
config.api_key = @options[:login]
|
20
|
+
config.api_secret = @options[:password]
|
21
|
+
config.user_agent = "Klarna Gateway/Rails/#{::Rails.version}"
|
22
|
+
config.zone = options[:zone].downcase.to_sym
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
def create_session(options)
|
27
|
+
post = {}
|
28
|
+
prepare_billing_address(post, options)
|
29
|
+
prepare_line_items(post, options)
|
30
|
+
prepare_order_data(post, options)
|
31
|
+
|
32
|
+
response = Klarna.client(:payment).create_session(post)
|
33
|
+
|
34
|
+
if response.success?
|
35
|
+
message = "Session Created #{response.session_id}"
|
36
|
+
generate_success_response(response, message)
|
37
|
+
else
|
38
|
+
generate_failure_response(response)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
def update_session(session_id, options)
|
43
|
+
post = {}
|
44
|
+
prepare_billing_address(post, options)
|
45
|
+
prepare_line_items(post, options)
|
46
|
+
prepare_order_data(post, options)
|
47
|
+
|
48
|
+
response = Klarna.client(:payment).update_session(session_id, post)
|
49
|
+
|
50
|
+
if response.success?
|
51
|
+
message = "Session Updated #{session_id}"
|
52
|
+
generate_success_response(response, message)
|
53
|
+
else
|
54
|
+
generate_failure_response(response)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def purchase(amount, authorize_token, options = {})
|
59
|
+
post = {}
|
60
|
+
prepare_billing_address(post, options)
|
61
|
+
prepare_line_items(post, options)
|
62
|
+
prepare_order_data(post, options)
|
63
|
+
post['order_amount'] = amount.to_f
|
64
|
+
|
65
|
+
customer_order(amount, authorize_token, post)
|
66
|
+
end
|
67
|
+
|
68
|
+
def authorize(amount, authorize_token, options = {})
|
69
|
+
response = Klarna.client(:payment).place_order(authorize_token, options)
|
70
|
+
|
71
|
+
if response.success?
|
72
|
+
message = "Placed order #{response.order_id}"
|
73
|
+
generate_success_response(response, message, response.order_id, response.fraud_status)
|
74
|
+
else
|
75
|
+
generate_failure_response(response)
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
def customer_order(amount, customer_token, options = {})
|
80
|
+
response = Klarna.client(:customer_token).place_order(customer_token, options)
|
81
|
+
|
82
|
+
if response.success?
|
83
|
+
message = "Placed order #{response.order_id}"
|
84
|
+
generate_success_response(response, message, response.order_id, response.fraud_status)
|
85
|
+
else
|
86
|
+
generate_failure_response(response)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
def capture(amount, order_id, options = {})
|
91
|
+
response = Klarna.client.capture(order_id, { captured_amount: amount, shipping_info: options[:shipping_info] })
|
92
|
+
|
93
|
+
if response.success?
|
94
|
+
message = "Captured order with Klarna id: '#{order_id}' Capture id: '#{response['Capture-ID']}'"
|
95
|
+
generate_success_response(response, message, order_id)
|
96
|
+
else
|
97
|
+
generate_failure_response(response)
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
def refund(amount, order_id, options = {})
|
102
|
+
# Get the refunded line items for better customer communications
|
103
|
+
post = {}
|
104
|
+
prepare_line_items(post, options)
|
105
|
+
|
106
|
+
response = Klarna.client(:refund).create(order_id, { refunded_amount: amount })
|
107
|
+
|
108
|
+
if response.success?
|
109
|
+
message = "Refunded order with Klarna id: #{order_id}"
|
110
|
+
generate_success_response(response, message, response['Refund-ID'])
|
111
|
+
else
|
112
|
+
generate_failure_response(response)
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
def store(authorize_token, options = {})
|
117
|
+
post = {}
|
118
|
+
prepare_billing_address(post, options)
|
119
|
+
prepare_customer_data(post, options)
|
120
|
+
|
121
|
+
response = Klarna.client(:payment).customer_token(authorize_token, post)
|
122
|
+
|
123
|
+
if response.success?
|
124
|
+
message = 'Client token Created'
|
125
|
+
generate_success_response(response, message)
|
126
|
+
else
|
127
|
+
generate_failure_response(response)
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
def get_customer_token(authorize_token)
|
132
|
+
response = Klarna.client(:customer_token).get(authorize_token)
|
133
|
+
|
134
|
+
if response.success?
|
135
|
+
message = 'Client token details'
|
136
|
+
generate_success_response(response, message)
|
137
|
+
else
|
138
|
+
generate_failure_response(response)
|
139
|
+
end
|
140
|
+
end
|
141
|
+
|
142
|
+
alias credit refund
|
143
|
+
|
144
|
+
def get(order_id)
|
145
|
+
Klarna.client.get(order_id)
|
146
|
+
end
|
147
|
+
|
148
|
+
def acknowledge(order_id)
|
149
|
+
response = Klarna.client.acknowledge(order_id)
|
150
|
+
|
151
|
+
if response.success?
|
152
|
+
message = "Extended Period for order with Klarna id: #{order_id}"
|
153
|
+
generate_success_response(response, message)
|
154
|
+
else
|
155
|
+
generate_failure_response(response)
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
def extend_period(order_id)
|
160
|
+
response = Klarna.client.extend(order_id)
|
161
|
+
|
162
|
+
if response.success?
|
163
|
+
message = "Extended Period for order with Klarna id: #{order_id}"
|
164
|
+
generate_success_response(response, message)
|
165
|
+
else
|
166
|
+
generate_failure_response(response)
|
167
|
+
end
|
168
|
+
end
|
169
|
+
|
170
|
+
def release(order_id)
|
171
|
+
response = Klarna.client.release(order_id)
|
172
|
+
|
173
|
+
if response.success?
|
174
|
+
message = "Released reamining amount for order with Klarna id: #{order_id}"
|
175
|
+
generate_success_response(response, message, order_id)
|
176
|
+
else
|
177
|
+
generate_failure_response(response)
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
def cancel(order_id)
|
182
|
+
response = Klarna.client.cancel(order_id)
|
183
|
+
|
184
|
+
if response.success?
|
185
|
+
message = "Cancelled order with Klarna id: #{order_id}"
|
186
|
+
generate_success_response(response, message, order_id)
|
187
|
+
else
|
188
|
+
generate_failure_response(response)
|
189
|
+
end
|
190
|
+
end
|
191
|
+
|
192
|
+
def shipping_info(order_id, capture_id, shipping_info)
|
193
|
+
response = Klarna.client(:capture).shipping_info(
|
194
|
+
order_id,
|
195
|
+
capture_id,
|
196
|
+
shipping_info
|
197
|
+
)
|
198
|
+
if response.success?
|
199
|
+
message = "Updated shipment info for order: #{order_id}, capture: #{capture_id}"
|
200
|
+
generate_success_response(response, message)
|
201
|
+
else
|
202
|
+
generate_failure_response(response)
|
203
|
+
end
|
204
|
+
end
|
205
|
+
|
206
|
+
def customer_details(order_id, data)
|
207
|
+
response = Klarna.client.customer_details(
|
208
|
+
order_id,
|
209
|
+
data
|
210
|
+
)
|
211
|
+
if response.success?
|
212
|
+
message = "Updated customer details for order: #{order_id}"
|
213
|
+
generate_success_response(response, message)
|
214
|
+
else
|
215
|
+
generate_failure_response(response)
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
219
|
+
private
|
220
|
+
|
221
|
+
def generate_success_response(response, message, authorization = nil, fraud_status = nil)
|
222
|
+
ActiveMerchant::Billing::Response.new(
|
223
|
+
true,
|
224
|
+
message,
|
225
|
+
response.body || {},
|
226
|
+
{
|
227
|
+
authorization: authorization,
|
228
|
+
fraud_status: fraud_status,
|
229
|
+
response_http_code: response.http_response&.code,
|
230
|
+
request_endpoint: response.request_endpoint,
|
231
|
+
request_method: response.request_method,
|
232
|
+
request_body: response.request_body,
|
233
|
+
response_type: get_response_type(response)
|
234
|
+
}
|
235
|
+
)
|
236
|
+
end
|
237
|
+
|
238
|
+
def generate_failure_response(response)
|
239
|
+
ActiveMerchant::Billing::Response.new(
|
240
|
+
false,
|
241
|
+
response.error_code.to_s,
|
242
|
+
response.body || {},
|
243
|
+
{
|
244
|
+
error_code: response.error_code,
|
245
|
+
response_http_code: response.http_response&.code,
|
246
|
+
request_endpoint: response.request_endpoint,
|
247
|
+
request_method: response.request_method,
|
248
|
+
request_body: response.request_body,
|
249
|
+
response_type: get_response_type(response)
|
250
|
+
}
|
251
|
+
)
|
252
|
+
end
|
253
|
+
|
254
|
+
def get_response_type(response)
|
255
|
+
code = response.code&.to_i
|
256
|
+
if code == (200 || 201)
|
257
|
+
0
|
258
|
+
elsif (500..599).include? code
|
259
|
+
1
|
260
|
+
else
|
261
|
+
2
|
262
|
+
end
|
263
|
+
end
|
264
|
+
|
265
|
+
def prepare_line_items(post, options)
|
266
|
+
return unless options[:order_line_items].present?
|
267
|
+
|
268
|
+
post['order_lines'] = options[:order_line_items].map do |item|
|
269
|
+
final_amount = item['final_amount'] ? item['final_amount'].to_f * 100 : nil
|
270
|
+
unit_price = item['price'] ? item['price'].to_f * 100 : nil
|
271
|
+
|
272
|
+
{
|
273
|
+
'name' => item['name'],
|
274
|
+
'quantity' => item['quantity'],
|
275
|
+
'total_amount' => final_amount,
|
276
|
+
'unit_price' => unit_price
|
277
|
+
}
|
278
|
+
end
|
279
|
+
end
|
280
|
+
|
281
|
+
def prepare_billing_address(post, options)
|
282
|
+
return unless options[:billing_address].present?
|
283
|
+
|
284
|
+
firstname, lastname = split_names(options[:billing_address][:name])
|
285
|
+
|
286
|
+
post['billing_address'] = {}
|
287
|
+
post['billing_address']['given_name'] = firstname
|
288
|
+
post['billing_address']['family_name'] = lastname
|
289
|
+
post['billing_address']['email'] = options[:email]
|
290
|
+
post['billing_address']['street_address'] = options[:billing_address][:address1]
|
291
|
+
post['billing_address']['street_address2'] = options[:billing_address][:address2]
|
292
|
+
post['billing_address']['organization_name'] = options[:billing_address][:company]
|
293
|
+
post['billing_address']['city'] = options[:billing_address][:city]
|
294
|
+
post['billing_address']['region'] = options[:billing_address][:state]
|
295
|
+
post['billing_address']['postal_code'] = options[:billing_address][:zip]
|
296
|
+
post['billing_address']['country'] = options[:billing_address][:country]
|
297
|
+
end
|
298
|
+
|
299
|
+
def prepare_order_data(post, options)
|
300
|
+
post['auto_capture'] = true
|
301
|
+
post['intent'] = 'buy_and_tokenize'
|
302
|
+
post['purchase_country'] = options.dig(:billing_address, :country)
|
303
|
+
post['purchase_currency'] = options[:currency]
|
304
|
+
post['order_amount'] = options[:total]&.to_f
|
305
|
+
post['order_tax_amount'] = options[:tax]&.to_f
|
306
|
+
end
|
307
|
+
|
308
|
+
def prepare_customer_data(post, options)
|
309
|
+
post['purchase_country'] = options.dig(:billing_address, :country)
|
310
|
+
post['purchase_currency'] = options[:currency]
|
311
|
+
post['intended_use'] = 'SUBSCRIPTION'
|
312
|
+
post['description'] = 'For Recurring Payments'
|
313
|
+
post['locale'] = options[:locale]
|
314
|
+
end
|
315
|
+
end
|
316
|
+
end
|
317
|
+
end
|
@@ -0,0 +1,115 @@
|
|
1
|
+
require 'json'
|
2
|
+
|
3
|
+
module ActiveMerchant #:nodoc:
|
4
|
+
module Billing #:nodoc:
|
5
|
+
class KomojuGateway < Gateway
|
6
|
+
self.test_url = 'https://komoju.com/api/v1'
|
7
|
+
self.live_url = 'https://komoju.com/api/v1'
|
8
|
+
self.supported_countries = ['JP']
|
9
|
+
self.default_currency = 'JPY'
|
10
|
+
self.money_format = :cents
|
11
|
+
self.homepage_url = 'https://www.komoju.com/'
|
12
|
+
self.display_name = 'Komoju'
|
13
|
+
self.supported_cardtypes = %i[visa master american_express jcb]
|
14
|
+
|
15
|
+
STANDARD_ERROR_CODE_MAPPING = {
|
16
|
+
'bad_verification_value' => 'incorrect_cvc',
|
17
|
+
'card_expired' => 'expired_card',
|
18
|
+
'card_declined' => 'card_declined',
|
19
|
+
'invalid_number' => 'invalid_number'
|
20
|
+
}
|
21
|
+
|
22
|
+
def initialize(options = {})
|
23
|
+
requires!(options, :login)
|
24
|
+
super
|
25
|
+
end
|
26
|
+
|
27
|
+
def purchase(money, payment, options = {})
|
28
|
+
post = {}
|
29
|
+
post[:amount] = amount(money)
|
30
|
+
post[:description] = options[:description]
|
31
|
+
add_payment_details(post, payment, options)
|
32
|
+
post[:currency] = options[:currency] || default_currency
|
33
|
+
post[:external_order_num] = options[:order_id] if options[:order_id]
|
34
|
+
post[:tax] = options[:tax] if options[:tax]
|
35
|
+
add_fraud_details(post, options)
|
36
|
+
|
37
|
+
commit('/payments', post)
|
38
|
+
end
|
39
|
+
|
40
|
+
def refund(money, identification, options = {})
|
41
|
+
commit("/payments/#{identification}/refund", {})
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
|
46
|
+
def add_payment_details(post, payment, options)
|
47
|
+
details = {}
|
48
|
+
|
49
|
+
details[:type] = 'credit_card'
|
50
|
+
details[:number] = payment.number
|
51
|
+
details[:month] = payment.month
|
52
|
+
details[:year] = payment.year
|
53
|
+
details[:verification_value] = payment.verification_value
|
54
|
+
details[:given_name] = payment.first_name
|
55
|
+
details[:family_name] = payment.last_name
|
56
|
+
details[:email] = options[:email] if options[:email]
|
57
|
+
|
58
|
+
post[:payment_details] = details
|
59
|
+
end
|
60
|
+
|
61
|
+
def add_fraud_details(post, options)
|
62
|
+
details = {}
|
63
|
+
|
64
|
+
details[:customer_ip] = options[:ip] if options[:ip]
|
65
|
+
details[:customer_email] = options[:email] if options[:email]
|
66
|
+
details[:browser_language] = options[:browser_language] if options[:browser_language]
|
67
|
+
details[:browser_user_agent] = options[:browser_user_agent] if options[:browser_user_agent]
|
68
|
+
|
69
|
+
post[:fraud_details] = details unless details.empty?
|
70
|
+
end
|
71
|
+
|
72
|
+
def api_request(path, data)
|
73
|
+
raw_response = nil
|
74
|
+
begin
|
75
|
+
raw_response = ssl_post("#{url}#{path}", data, headers)
|
76
|
+
rescue ResponseError => e
|
77
|
+
raw_response = e.response.body
|
78
|
+
end
|
79
|
+
|
80
|
+
JSON.parse(raw_response)
|
81
|
+
end
|
82
|
+
|
83
|
+
def commit(path, params)
|
84
|
+
response = api_request(path, params.to_json)
|
85
|
+
success = !response.key?('error')
|
86
|
+
message = (success ? 'Transaction succeeded' : response['error']['message'])
|
87
|
+
Response.new(
|
88
|
+
success,
|
89
|
+
message,
|
90
|
+
response,
|
91
|
+
test: test?,
|
92
|
+
error_code: (success ? nil : error_code(response['error']['code'])),
|
93
|
+
authorization: (success ? response['id'] : nil)
|
94
|
+
)
|
95
|
+
end
|
96
|
+
|
97
|
+
def error_code(code)
|
98
|
+
STANDARD_ERROR_CODE_MAPPING[code] || code
|
99
|
+
end
|
100
|
+
|
101
|
+
def url
|
102
|
+
test? ? self.test_url : self.live_url
|
103
|
+
end
|
104
|
+
|
105
|
+
def headers
|
106
|
+
{
|
107
|
+
'Authorization' => 'Basic ' + Base64.encode64(@options[:login].to_s + ':').strip,
|
108
|
+
'Accept' => 'application/json',
|
109
|
+
'Content-Type' => 'application/json',
|
110
|
+
'User-Agent' => "Komoju/v1 ActiveMerchantBindings/#{ActiveMerchant::VERSION}"
|
111
|
+
}
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|