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)
|
|
|
|
*
|
2022-12-17 14:52:21 +01:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-10-05 16:39:01 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
class ProcessSEPA {
|
|
|
|
constructor(key, stripeConnect) {
|
|
|
|
this.key = key;
|
|
|
|
this.errors = document.getElementById('errors');
|
|
|
|
this.stripeConnect = stripeConnect;
|
|
|
|
}
|
|
|
|
|
|
|
|
setupStripe = () => {
|
|
|
|
|
2022-02-23 01:01:33 +01:00
|
|
|
if (this.stripeConnect) {
|
2022-01-22 05:22:59 +01:00
|
|
|
|
2022-02-23 01:01:33 +01:00
|
|
|
this.stripe = Stripe(this.key, {
|
|
|
|
stripeAccount: this.stripeConnect,
|
|
|
|
});
|
2022-01-22 05:22:59 +01:00
|
|
|
|
2022-02-23 01:01:33 +01:00
|
|
|
} else {
|
|
|
|
this.stripe = Stripe(this.key);
|
|
|
|
}
|
2022-01-22 05:22:59 +01:00
|
|
|
|
2021-10-07 15:20:20 +02:00
|
|
|
const elements = this.stripe.elements();
|
|
|
|
var style = {
|
|
|
|
base: {
|
2021-10-13 15:45:33 +02:00
|
|
|
color: '#32325d',
|
2022-02-23 01:01:33 +01:00
|
|
|
fontFamily: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif',
|
2021-10-13 15:45:33 +02:00
|
|
|
fontSmoothing: 'antialiased',
|
|
|
|
fontSize: '16px',
|
|
|
|
'::placeholder': {
|
|
|
|
color: '#aab7c4',
|
|
|
|
},
|
|
|
|
':-webkit-autofill': {
|
|
|
|
color: '#32325d',
|
2021-10-07 15:20:20 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
invalid: {
|
2021-10-13 15:45:33 +02:00
|
|
|
color: '#fa755a',
|
|
|
|
iconColor: '#fa755a',
|
|
|
|
':-webkit-autofill': {
|
|
|
|
color: '#fa755a',
|
|
|
|
},
|
|
|
|
},
|
2021-10-07 15:20:20 +02:00
|
|
|
};
|
|
|
|
var options = {
|
|
|
|
style: style,
|
2021-10-13 15:45:33 +02:00
|
|
|
supportedCountries: ['SEPA'],
|
2021-10-07 15:20:20 +02:00
|
|
|
// 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-13 15:45:33 +02:00
|
|
|
placeholderCountry: document.querySelector('meta[name="country"]')
|
|
|
|
.content,
|
2021-10-07 15:20:20 +02:00
|
|
|
};
|
2021-10-13 15:45:33 +02:00
|
|
|
this.iban = elements.create('iban', options);
|
|
|
|
this.iban.mount('#sepa-iban');
|
2022-02-23 01:01:33 +01:00
|
|
|
|
|
|
|
document.getElementById('sepa-name').value = document.querySelector('meta[name=client_name]').content;
|
|
|
|
document.getElementById('sepa-email-address').value = document.querySelector('meta[name=client_email]').content;
|
|
|
|
|
2021-10-05 16:39:01 +02:00
|
|
|
return this;
|
|
|
|
};
|
|
|
|
|
|
|
|
handle = () => {
|
2021-10-13 15:12:19 +02:00
|
|
|
let errors = document.getElementById('errors');
|
|
|
|
|
2021-10-13 15:45:33 +02:00
|
|
|
Array.from(
|
|
|
|
document.getElementsByClassName('toggle-payment-with-token')
|
|
|
|
).forEach((element) =>
|
|
|
|
element.addEventListener('click', (element) => {
|
|
|
|
document
|
|
|
|
.getElementById('stripe--payment-container')
|
|
|
|
.classList.add('hidden');
|
|
|
|
document.getElementById('save-card--container').style.display =
|
|
|
|
'none';
|
|
|
|
document.querySelector('input[name=token]').value =
|
|
|
|
element.target.dataset.token;
|
|
|
|
})
|
|
|
|
);
|
2021-10-12 18:56:20 +02:00
|
|
|
|
|
|
|
document
|
|
|
|
.getElementById('toggle-payment-with-new-bank-account')
|
|
|
|
.addEventListener('click', (element) => {
|
2021-10-13 15:45:33 +02:00
|
|
|
document
|
|
|
|
.getElementById('stripe--payment-container')
|
|
|
|
.classList.remove('hidden');
|
|
|
|
document.getElementById('save-card--container').style.display =
|
|
|
|
'grid';
|
|
|
|
document.querySelector('input[name=token]').value = '';
|
2021-10-12 18:56:20 +02:00
|
|
|
});
|
|
|
|
|
2021-10-05 16:39:01 +02:00
|
|
|
document.getElementById('pay-now').addEventListener('click', (e) => {
|
2022-02-23 01:01:33 +01:00
|
|
|
|
|
|
|
if (document.querySelector('input[name=token]').value.length !== 0) {
|
2021-10-09 02:38:57 +02:00
|
|
|
|
2021-10-13 15:12:19 +02:00
|
|
|
document.getElementById('pay-now').disabled = true;
|
2022-02-23 01:01:33 +01:00
|
|
|
document.querySelector('#pay-now > svg').classList.remove('hidden');
|
|
|
|
document.querySelector('#pay-now > span').classList.add('hidden');
|
2021-10-13 15:45:33 +02:00
|
|
|
|
|
|
|
this.stripe
|
2022-02-23 01:01:33 +01:00
|
|
|
.confirmSepaDebitPayment(
|
|
|
|
document.querySelector('meta[name=pi-client-secret')
|
|
|
|
.content, {
|
|
|
|
payment_method: document.querySelector('input[name=token]').value
|
2021-10-13 15:45:33 +02:00
|
|
|
}
|
|
|
|
)
|
2021-10-13 15:12:19 +02:00
|
|
|
.then((result) => {
|
|
|
|
if (result.error) {
|
2022-02-23 01:01:33 +01:00
|
|
|
return this.handleFailure(result.error.message);
|
2021-10-13 15:12:19 +02:00
|
|
|
}
|
|
|
|
|
2022-02-23 01:01:33 +01:00
|
|
|
return this.handleSuccess(result);
|
2021-10-13 15:12:19 +02:00
|
|
|
});
|
|
|
|
|
2022-02-23 01:01:33 +01:00
|
|
|
} else {
|
2021-10-09 02:38:57 +02:00
|
|
|
|
2022-02-23 01:01:33 +01:00
|
|
|
if (document.getElementById('sepa-name').value === '') {
|
|
|
|
document.getElementById('sepa-name').focus();
|
|
|
|
errors.textContent = document.querySelector(
|
|
|
|
'meta[name=translation-name-required]'
|
|
|
|
).content;
|
|
|
|
errors.hidden = false;
|
|
|
|
return;
|
|
|
|
}
|
2021-10-09 02:38:57 +02:00
|
|
|
|
2022-02-23 01:01:33 +01:00
|
|
|
if (document.getElementById('sepa-email-address').value === '') {
|
|
|
|
document.getElementById('sepa-email-address').focus();
|
|
|
|
errors.textContent = document.querySelector(
|
|
|
|
'meta[name=translation-email-required]'
|
|
|
|
).content;
|
|
|
|
errors.hidden = false;
|
|
|
|
return;
|
|
|
|
}
|
2021-10-09 02:38:57 +02:00
|
|
|
|
2022-02-23 01:01:33 +01:00
|
|
|
if (!document.getElementById('sepa-mandate-acceptance').checked) {
|
|
|
|
errors.textContent = document.querySelector(
|
|
|
|
'meta[name=translation-terms-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');
|
2021-10-09 02:38:57 +02:00
|
|
|
|
2022-02-23 01:01:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
this.stripe
|
|
|
|
.confirmSepaDebitPayment(
|
|
|
|
document.querySelector('meta[name=pi-client-secret')
|
|
|
|
.content, {
|
|
|
|
payment_method: {
|
|
|
|
sepa_debit: this.iban,
|
|
|
|
billing_details: {
|
|
|
|
name: document.getElementById('sepa-name')
|
|
|
|
.value,
|
|
|
|
email: document.getElementById(
|
|
|
|
'sepa-email-address'
|
|
|
|
).value,
|
|
|
|
},
|
2021-10-13 15:45:33 +02:00
|
|
|
},
|
2022-02-23 01:01:33 +01: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);
|
|
|
|
|
2021-10-13 13:56:28 +02:00
|
|
|
let tokenBillingCheckbox = document.querySelector(
|
|
|
|
'input[name="token-billing-checkbox"]:checked'
|
|
|
|
);
|
|
|
|
|
|
|
|
if (tokenBillingCheckbox) {
|
|
|
|
document.querySelector('input[name="store_card"]').value =
|
|
|
|
tokenBillingCheckbox.value;
|
|
|
|
}
|
|
|
|
|
2022-03-03 02:55:29 +01:00
|
|
|
if(document.querySelector('input[name=token]').value.length > 2){
|
|
|
|
document.querySelector('input[name="store_card"]').value = false;
|
|
|
|
}
|
|
|
|
|
2021-10-09 01:35:45 +02:00
|
|
|
document.getElementById('server-response').submit();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleFailure(message) {
|
|
|
|
let errors = document.getElementById('errors');
|
|
|
|
|
|
|
|
errors.textContent = '';
|
|
|
|
errors.textContent = message;
|
|
|
|
errors.hidden = false;
|
|
|
|
|
2021-10-13 15:45:33 +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
|
|
|
}
|
2022-12-17 14:52:21 +01:00
|
|
|
handleSuccess(result) {
|
|
|
|
document.querySelector(
|
|
|
|
'input[name="gateway_response"]'
|
|
|
|
).value = JSON.stringify(result.paymentIntent);
|
|
|
|
|
|
|
|
let tokenBillingCheckbox = document.querySelector(
|
|
|
|
'input[name="token-billing-checkbox"]:checked'
|
|
|
|
);
|
|
|
|
|
|
|
|
if (tokenBillingCheckbox) {
|
|
|
|
document.querySelector('input[name="store_card"]').value =
|
|
|
|
tokenBillingCheckbox.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
document.getElementById('server-response').submit();
|
|
|
|
}
|
2021-10-05 16:39:01 +02:00
|
|
|
}
|
|
|
|
|
2021-10-13 15:45:33 +02:00
|
|
|
const publishableKey =
|
2022-02-23 01:21:01 +01:00
|
|
|
document.querySelector('meta[name="stripe-publishable-key"]')?.content ??
|
2021-10-13 15:45:33 +02:00
|
|
|
'';
|
2021-10-05 16:39:01 +02:00
|
|
|
|
|
|
|
const stripeConnect =
|
2022-02-23 01:21:01 +01:00
|
|
|
document.querySelector('meta[name="stripe-account-id"]')?.content ?? '';
|
2021-10-05 16:39:01 +02:00
|
|
|
|
|
|
|
new ProcessSEPA(publishableKey, stripeConnect).setupStripe().handle();
|