2021-10-05 16:39:01 +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)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
class ProcessSEPA {
|
|
|
|
constructor(key, stripeConnect) {
|
|
|
|
this.key = key;
|
|
|
|
this.errors = document.getElementById('errors');
|
|
|
|
this.stripeConnect = stripeConnect;
|
|
|
|
}
|
|
|
|
|
|
|
|
setupStripe = () => {
|
|
|
|
this.stripe = Stripe(this.key);
|
|
|
|
|
|
|
|
if(this.stripeConnect)
|
|
|
|
this.stripe.stripeAccount = stripeConnect;
|
|
|
|
|
|
|
|
return this;
|
|
|
|
};
|
|
|
|
|
|
|
|
handle = () => {
|
|
|
|
document.getElementById('pay-now').addEventListener('click', (e) => {
|
|
|
|
document.getElementById('pay-now').disabled = true;
|
|
|
|
document.querySelector('#pay-now > svg').classList.remove('hidden');
|
|
|
|
document.querySelector('#pay-now > span').classList.add('hidden');
|
|
|
|
|
2021-10-06 15:36:14 +02:00
|
|
|
this.stripe.confirmSepaDebitPayment(
|
2021-10-05 16:39:01 +02:00
|
|
|
document.querySelector('meta[name=pi-client-secret').content,
|
|
|
|
{
|
|
|
|
payment_method: {
|
2021-10-06 15:36:14 +02:00
|
|
|
sepa_debit: {
|
|
|
|
sepa_debit: document.getElementById("sepa-iban").value,
|
|
|
|
billing_details: {
|
|
|
|
name: document.getElementById("sepa-email-addres").value,
|
|
|
|
email: document.getElementById("sepa-name").value,
|
|
|
|
},
|
2021-10-05 16:39:01 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
return_url: document.querySelector(
|
|
|
|
'meta[name="return-url"]'
|
|
|
|
).content,
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const publishableKey = document.querySelector(
|
|
|
|
'meta[name="stripe-publishable-key"]'
|
|
|
|
)?.content ?? '';
|
|
|
|
|
|
|
|
const stripeConnect =
|
|
|
|
document.querySelector('meta[name="stripe-account-id"]')?.content ?? '';
|
|
|
|
|
|
|
|
new ProcessSEPA(publishableKey, stripeConnect).setupStripe().handle();
|