2019-12-08 00:32:00 +05:30
|
|
|
import { loadScript } from 'app/functions';
|
|
|
|
import options from 'app/services/api/options';
|
2016-07-31 19:23:16 +05:30
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
let readyPromise: Promise<void>;
|
2016-07-31 19:23:16 +05:30
|
|
|
let lang = 'en';
|
|
|
|
let sitekey;
|
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
export type CaptchaID = string;
|
2018-04-19 01:19:10 +05:30
|
|
|
|
2016-07-31 19:23:16 +05:30
|
|
|
export default {
|
2019-11-27 14:33:32 +05:30
|
|
|
/**
|
|
|
|
* @param {DOMNode|string} el - dom node or id of element where to render captcha
|
|
|
|
* @param {string} options.skin - skin color (dark|light)
|
|
|
|
* @param {Function} options.onSetCode - the callback, that will be called with
|
|
|
|
* captcha verification code, after user successfully solves captcha
|
|
|
|
*
|
|
|
|
* @returns {Promise} - resolves to captchaId
|
|
|
|
*/
|
|
|
|
render(
|
|
|
|
el: HTMLElement,
|
|
|
|
{
|
|
|
|
skin: theme,
|
|
|
|
onSetCode: callback,
|
|
|
|
}: {
|
2019-12-07 16:58:52 +05:30
|
|
|
skin: 'dark' | 'light';
|
|
|
|
onSetCode: (code: string) => void;
|
2016-07-31 19:23:16 +05:30
|
|
|
},
|
2019-11-27 14:33:32 +05:30
|
|
|
): Promise<CaptchaID> {
|
|
|
|
return this.loadApi().then(() =>
|
2019-12-07 16:58:52 +05:30
|
|
|
(window as any).grecaptcha.render(el, {
|
2019-11-27 14:33:32 +05:30
|
|
|
sitekey,
|
|
|
|
theme,
|
|
|
|
callback,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
},
|
2016-07-31 19:23:16 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
/**
|
|
|
|
* @param {string} captchaId - captcha id, returned from render promise
|
|
|
|
*/
|
|
|
|
reset(captchaId: CaptchaID) {
|
2019-12-07 16:58:52 +05:30
|
|
|
this.loadApi().then(() => (window as any).grecaptcha.reset(captchaId));
|
2019-11-27 14:33:32 +05:30
|
|
|
},
|
2016-08-14 15:40:59 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
/**
|
|
|
|
* @param {stirng} newLang
|
|
|
|
*
|
|
|
|
* @see https://developers.google.com/recaptcha/docs/language
|
|
|
|
*/
|
|
|
|
setLang(newLang: string) {
|
|
|
|
lang = newLang;
|
|
|
|
},
|
2016-07-31 19:23:16 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
/**
|
|
|
|
* @param {string} apiKey
|
|
|
|
*
|
|
|
|
* @see http://www.google.com/recaptcha/admin
|
|
|
|
*/
|
|
|
|
setApiKey(apiKey: string) {
|
|
|
|
sitekey = apiKey;
|
|
|
|
},
|
2016-08-05 11:11:33 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
/**
|
|
|
|
* @api private
|
|
|
|
*
|
|
|
|
* @returns {Promise}
|
|
|
|
*/
|
|
|
|
loadApi(): Promise<void> {
|
|
|
|
if (!readyPromise) {
|
|
|
|
readyPromise = Promise.all([
|
|
|
|
new Promise(resolve => {
|
2019-12-07 16:58:52 +05:30
|
|
|
(window as any).onReCaptchaReady = resolve;
|
2019-11-27 14:33:32 +05:30
|
|
|
}),
|
|
|
|
options.get().then(resp => this.setApiKey(resp.reCaptchaPublicKey)),
|
|
|
|
]).then(() => {});
|
2016-07-31 19:23:16 +05:30
|
|
|
|
2019-11-27 14:33:32 +05:30
|
|
|
loadScript(
|
|
|
|
`https://recaptcha.net/recaptcha/api.js?onload=onReCaptchaReady&render=explicit&hl=${lang}`,
|
|
|
|
);
|
2016-07-31 19:23:16 +05:30
|
|
|
}
|
2019-11-27 14:33:32 +05:30
|
|
|
|
|
|
|
return readyPromise;
|
|
|
|
},
|
2016-08-05 11:11:33 +05:30
|
|
|
};
|