2021-10-12 16:56:31 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
2022-06-08 06:25:44 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-10-12 16:56:31 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
class ProcessACSS {
|
|
|
|
constructor(key, stripeConnect) {
|
|
|
|
this.key = key;
|
|
|
|
this.errors = document.getElementById('errors');
|
|
|
|
this.stripeConnect = stripeConnect;
|
|
|
|
}
|
|
|
|
|
|
|
|
setupStripe = () => {
|
|
|
|
|
2022-01-22 05:22:59 +01:00
|
|
|
if (this.stripeConnect){
|
|
|
|
// this.stripe.stripeAccount = this.stripeConnect;
|
|
|
|
|
|
|
|
this.stripe = Stripe(this.key, {
|
|
|
|
stripeAccount: this.stripeConnect,
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this.stripe = Stripe(this.key);
|
|
|
|
}
|
|
|
|
|
2021-10-12 16:56:31 +02:00
|
|
|
return this;
|
|
|
|
};
|
|
|
|
|
|
|
|
handle = () => {
|
|
|
|
|
2023-12-18 05:25:16 +01:00
|
|
|
Array
|
|
|
|
.from(document.getElementsByClassName('toggle-payment-with-token'))
|
|
|
|
.forEach((element) => element.addEventListener('click', (element) => {
|
|
|
|
document.querySelector('input[name=token]').value = element.target.dataset.token;
|
|
|
|
console.log(element.target.dataset.token);
|
|
|
|
}));
|
|
|
|
|
|
|
|
if(document.getElementById('toggle-payment-with-new-account'))
|
|
|
|
{
|
|
|
|
document
|
|
|
|
.getElementById('toggle-payment-with-new-account')
|
|
|
|
.addEventListener('click', (element) => {
|
|
|
|
document.getElementById('save-card--container').style.display = 'grid';
|
|
|
|
document.querySelector('input[name=token]').value = "";
|
|
|
|
});
|
2021-10-12 16:56:31 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-12-18 05:25:16 +01:00
|
|
|
if (document.getElementById('pay-now-with-token'))
|
|
|
|
{
|
|
|
|
document.getElementById('pay-now-with-token').addEventListener('click', (e) => {
|
|
|
|
|
|
|
|
const token = document
|
|
|
|
.querySelector('input[name=token]')
|
|
|
|
.value;
|
|
|
|
|
|
|
|
document.getElementById('pay-now-with-token').disabled = true;
|
|
|
|
document.querySelector('#pay-now-with-token > svg').classList.remove('hidden');
|
|
|
|
document.querySelector('#pay-now-with-token > span').classList.add('hidden');
|
|
|
|
document.getElementById('server-response').submit();
|
|
|
|
|
|
|
|
});
|
2021-10-12 16:56:31 +02:00
|
|
|
}
|
2023-12-18 05:25:16 +01:00
|
|
|
else {
|
2021-10-12 16:56:31 +02:00
|
|
|
|
2023-12-18 05:25:16 +01:00
|
|
|
document.getElementById('pay-now').addEventListener('click', (e) => {
|
|
|
|
|
|
|
|
let tokenBillingCheckbox = document.querySelector(
|
|
|
|
'input[name="token-billing-checkbox"]:checked'
|
|
|
|
);
|
|
|
|
|
|
|
|
if (tokenBillingCheckbox) {
|
|
|
|
document.querySelector('input[name="store_card"]').value =
|
|
|
|
tokenBillingCheckbox.value;
|
2021-10-12 16:56:31 +02:00
|
|
|
}
|
|
|
|
|
2023-12-18 05:25:16 +01:00
|
|
|
let errors = document.getElementById('errors');
|
|
|
|
errors.textContent = '';
|
|
|
|
errors.hidden = true;
|
|
|
|
|
|
|
|
if (document.getElementById('acss-name').value === "") {
|
|
|
|
document.getElementById('acss-name').focus();
|
|
|
|
errors.textContent = document.querySelector('meta[name=translation-name-required]').content;
|
|
|
|
errors.hidden = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (document.getElementById('acss-email-address').value === "") {
|
|
|
|
document.getElementById('acss-email-address').focus();
|
|
|
|
errors.textContent = document.querySelector('meta[name=translation-email-required]').content;
|
|
|
|
errors.hidden = false;
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
document.getElementById('pay-now').disabled = true;
|
|
|
|
document.querySelector('#pay-now > svg').classList.remove('hidden');
|
|
|
|
document.querySelector('#pay-now > span').classList.add('hidden');
|
|
|
|
|
|
|
|
this.stripe.confirmAcssDebitPayment(
|
|
|
|
document.querySelector('meta[name=pi-client-secret').content,
|
|
|
|
{
|
|
|
|
payment_method: {
|
|
|
|
billing_details: {
|
|
|
|
name: document.getElementById("acss-name").value,
|
|
|
|
email: document.getElementById("acss-email-address").value,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
).then((result) => {
|
|
|
|
if (result.error) {
|
|
|
|
return this.handleFailure(result.error.message);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.handleSuccess(result);
|
|
|
|
});
|
2021-10-12 16:56:31 +02:00
|
|
|
});
|
2023-12-18 05:25:16 +01:00
|
|
|
|
|
|
|
}
|
2021-10-12 16:56:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
handleSuccess(result) {
|
|
|
|
document.querySelector(
|
|
|
|
'input[name="gateway_response"]'
|
|
|
|
).value = JSON.stringify(result.paymentIntent);
|
|
|
|
|
|
|
|
document.getElementById('server-response').submit();
|
|
|
|
}
|
|
|
|
|
|
|
|
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');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const publishableKey = document.querySelector(
|
|
|
|
'meta[name="stripe-publishable-key"]'
|
|
|
|
)?.content ?? '';
|
|
|
|
|
|
|
|
const stripeConnect =
|
|
|
|
document.querySelector('meta[name="stripe-account-id"]')?.content ?? '';
|
|
|
|
|
|
|
|
new ProcessACSS(publishableKey, stripeConnect).setupStripe().handle();
|