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;
|
2021-10-07 15:20:20 +02:00
|
|
|
const elements = this.stripe.elements();
|
|
|
|
var style = {
|
|
|
|
base: {
|
|
|
|
color: "#32325d",
|
|
|
|
fontFamily:
|
|
|
|
'-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif',
|
|
|
|
fontSmoothing: "antialiased",
|
|
|
|
fontSize: "16px",
|
|
|
|
"::placeholder": {
|
|
|
|
color: "#aab7c4"
|
|
|
|
},
|
|
|
|
":-webkit-autofill": {
|
|
|
|
color: "#32325d"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
invalid: {
|
|
|
|
color: "#fa755a",
|
|
|
|
iconColor: "#fa755a",
|
|
|
|
":-webkit-autofill": {
|
|
|
|
color: "#fa755a"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
var options = {
|
|
|
|
style: style,
|
|
|
|
supportedCountries: ["SEPA"],
|
|
|
|
// If you know the country of the customer, you can optionally pass it to
|
|
|
|
// the Element as placeholderCountry. The example IBAN that is being used
|
|
|
|
// as placeholder reflects the IBAN format of that country.
|
2021-10-09 01:35:45 +02:00
|
|
|
placeholderCountry: document.querySelector('meta[name="country"]').content
|
2021-10-07 15:20:20 +02:00
|
|
|
};
|
|
|
|
this.iban = elements.create("iban", options);
|
|
|
|
this.iban.mount("#sepa-iban");
|
2021-10-05 16:39:01 +02:00
|
|
|
return this;
|
|
|
|
};
|
|
|
|
|
|
|
|
handle = () => {
|
|
|
|
document.getElementById('pay-now').addEventListener('click', (e) => {
|
2021-10-09 02:38:57 +02:00
|
|
|
|
|
|
|
let errors = document.getElementById('errors');
|
|
|
|
|
|
|
|
if (document.getElementById('sepa-name').value === "") {
|
|
|
|
document.getElementById('sepa-name').focus();
|
|
|
|
errors.textContent = "Name required.";
|
|
|
|
errors.hidden = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (document.getElementById('sepa-email-address').value === "") {
|
|
|
|
document.getElementById('sepa-email-address').focus();
|
|
|
|
errors.textContent = "Email required.";
|
|
|
|
errors.hidden = false;
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!document.getElementById('sepa-mandate-acceptance').checked) {
|
|
|
|
errors.textContent = "Accept Terms";
|
|
|
|
errors.hidden = false;
|
|
|
|
console.log("Terms");
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
2021-10-05 16:39:01 +02:00
|
|
|
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-07 15:20:20 +02:00
|
|
|
sepa_debit: this.iban,
|
|
|
|
billing_details: {
|
|
|
|
name: document.getElementById("sepa-name").value,
|
|
|
|
email: document.getElementById("sepa-email-address").value,
|
2021-10-05 16:39:01 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2021-10-09 01:35:45 +02:00
|
|
|
).then((result) => {
|
|
|
|
if (result.error) {
|
|
|
|
return this.handleFailure(result.error.message);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.handleSuccess(result);
|
|
|
|
});
|
2021-10-05 16:39:01 +02:00
|
|
|
});
|
|
|
|
};
|
2021-10-09 01:35:45 +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;
|
|
|
|
|
2021-10-09 02:38:57 +02:00
|
|
|
document.getElementById('pay-now').disabled = false;
|
|
|
|
document.querySelector('#pay-now > svg').classList.add('hidden');
|
|
|
|
document.querySelector('#pay-now > span').classList.remove('hidden');
|
2021-10-09 01:35:45 +02:00
|
|
|
}
|
2021-10-05 16:39:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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();
|