1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/resources/js/clients/payments/stripe-bacs.js

100 lines
3.4 KiB
JavaScript
Raw Normal View History

2022-12-16 12:05:10 +01:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
class ProcessBACS {
constructor(key, stripeConnect) {
this.key = key;
this.errors = document.getElementById('errors');
this.stripeConnect = stripeConnect;
2022-12-17 07:05:19 +01:00
this.onlyAuthorization = onlyAuthorization;
2022-12-16 12:05:10 +01:00
}
setupStripe = () => {
if (this.stripeConnect){
2022-12-16 15:03:24 +01:00
// this.stripe.stripeAccount = this.stripeConnect;
2022-12-16 12:05:10 +01:00
2022-12-16 15:03:24 +01:00
this.stripe = Stripe(this.key, {
stripeAccount: this.stripeConnect,
2022-12-16 12:05:10 +01:00
});
}
else {
this.stripe = Stripe(this.key);
}
return this;
};
handle = () => {
2022-12-17 06:19:52 +01:00
if (this.onlyAuthorization) {
document.getElementById('authorize-bacs').addEventListener('click', (e) => {
document.getElementById('authorize-bacs').disabled = true;
document.querySelector('#authorize-bacs > svg').classList.remove('hidden');
document.querySelector('#authorize-bacs > span').classList.add('hidden');
2022-12-17 14:59:20 +01:00
location.href=document.querySelector('meta[name=stripe-redirect-url]').content;
2022-12-17 06:19:52 +01:00
});}
else{
2022-12-17 06:47:43 +01:00
document.getElementById('pay-now').addEventListener('click', (e) => {
let payNowButton = document.getElementById('pay-now');
this.payNowButton = payNowButton;
this.payNowButton.disabled = true;
this.payNowButton.querySelector('svg').classList.remove('hidden');
this.payNowButton.querySelector('span').classList.add('hidden');
2022-12-17 15:04:06 +01:00
this.stripe
.confirmBacsDebitPayment(
document.querySelector('meta[name=pi-client-secret')
.content, {
payment_method: document.querySelector('input[name=token]').value
}
)
.then((result) => {
if (result.error) {
return this.handleFailure(result.error.message);
}
2022-12-17 14:52:21 +01:00
2022-12-17 15:04:06 +01:00
return this.handleSuccess(result);
});
2022-12-17 06:39:16 +01:00
});
2022-12-17 06:19:52 +01:00
}
2022-12-16 12:05:10 +01:00
};
2022-12-17 14:52:21 +01:00
handleFailure(message) {
let errors = document.getElementById('errors');
errors.textContent = '';
errors.textContent = message;
errors.hidden = false;
document.getElementById('pay-now').disabled = false;
document.querySelector('#pay-now > svg').classList.add('hidden');
document.querySelector('#pay-now > span').classList.remove('hidden');
}
handleSuccess(result) {
document.querySelector(
'input[name="gateway_response"]'
).value = JSON.stringify(result.paymentIntent);
document.getElementById('server-response').submit();
}
2022-12-16 12:05:10 +01:00
}
const publishableKey = document.querySelector(
'meta[name="stripe-publishable-key"]'
)?.content ?? '';
const stripeConnect =
document.querySelector('meta[name="stripe-account-id"]')?.content ?? '';
2022-12-17 06:19:52 +01:00
const onlyAuthorization =
document.querySelector('meta[name="only-authorization"]')?.content ?? '';
2022-12-16 12:05:10 +01:00
new ProcessBACS(publishableKey, stripeConnect).setupStripe().handle();