2020-06-09 16:56:08 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-13 09:22:36 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-06-09 16:56:08 +02:00
|
|
|
*
|
2022-06-08 06:25:44 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-06-09 16:56:08 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
class ProcessAlipay {
|
2021-04-20 14:17:44 +02:00
|
|
|
constructor(key, stripeConnect) {
|
2020-06-09 16:56:08 +02:00
|
|
|
this.key = key;
|
2021-04-20 14:17:44 +02:00
|
|
|
this.stripeConnect = stripeConnect;
|
|
|
|
|
2020-06-09 16:56:08 +02:00
|
|
|
this.errors = document.getElementById('errors');
|
|
|
|
}
|
|
|
|
|
|
|
|
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-04-20 14:17:44 +02:00
|
|
|
|
2020-06-09 16:56:08 +02:00
|
|
|
return this;
|
|
|
|
};
|
|
|
|
|
2023-02-23 02:47:29 +01:00
|
|
|
async handle() {
|
2020-06-09 16:56:08 +02:00
|
|
|
|
2023-02-23 02:47:29 +01:00
|
|
|
document.getElementById('pay-now').addEventListener('click', async (e) => {
|
2020-11-02 16:20:38 +01:00
|
|
|
document.getElementById('pay-now').disabled = true;
|
|
|
|
document.querySelector('#pay-now > svg').classList.add('hidden');
|
|
|
|
document.querySelector('#pay-now > span').classList.remove('hidden');
|
2020-06-09 16:56:08 +02:00
|
|
|
|
2023-02-23 02:47:29 +01:00
|
|
|
const { error } = await this.stripe.confirmAlipayPayment(document.querySelector('meta[name=ci_intent]').content, {
|
|
|
|
// Return URL where the customer should be redirected after the authorization
|
|
|
|
return_url: `${document.querySelector('meta[name=return_url]').content}`,
|
|
|
|
});
|
2020-06-09 16:56:08 +02:00
|
|
|
|
2020-11-02 16:20:38 +01:00
|
|
|
document.getElementById('pay-now').disabled = false;
|
|
|
|
document.querySelector('#pay-now > svg').classList.remove('hidden');
|
|
|
|
document.querySelector('#pay-now > span').classList.add('hidden');
|
2020-08-24 10:28:55 +02:00
|
|
|
|
2023-02-23 02:47:29 +01:00
|
|
|
if (error) {
|
|
|
|
|
|
|
|
this.errors.textContent = '';
|
|
|
|
this.errors.textContent = result.error.message;
|
|
|
|
this.errors.hidden = false;
|
|
|
|
|
|
|
|
}
|
2020-06-09 16:56:08 +02:00
|
|
|
});
|
2023-02-23 02:47:29 +01:00
|
|
|
|
|
|
|
}
|
2020-06-09 16:56:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const publishableKey = document.querySelector(
|
|
|
|
'meta[name="stripe-publishable-key"]'
|
2021-05-11 15:44:14 +02:00
|
|
|
)?.content ?? '';
|
2020-06-09 16:56:08 +02:00
|
|
|
|
2021-04-20 14:17:44 +02:00
|
|
|
const stripeConnect = document.querySelector(
|
|
|
|
'meta[name="stripe-account-id"]'
|
2021-05-11 15:44:14 +02:00
|
|
|
)?.content ?? '';
|
2021-04-20 14:17:44 +02:00
|
|
|
|
|
|
|
new ProcessAlipay(publishableKey, stripeConnect).setupStripe().handle();
|