Server IP : 150.95.80.236 / Your IP : 3.145.96.163 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/uat.pcu.in.th/assets/plugins/formvalidation/dist/amd/plugins/ |
Upload File : |
var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); define(["require", "exports", "../core/Plugin"], function (require, exports, Plugin_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Recaptcha3Token = (function (_super) { __extends(Recaptcha3Token, _super); function Recaptcha3Token(opts) { var _this = _super.call(this, opts) || this; _this.opts = Object.assign({}, { action: 'submit', hiddenTokenName: '___hidden-token___', }, opts); _this.onValidHandler = _this.onFormValid.bind(_this); return _this; } Recaptcha3Token.prototype.install = function () { this.core.on('core.form.valid', this.onValidHandler); this.hiddenTokenEle = document.createElement('input'); this.hiddenTokenEle.setAttribute('type', 'hidden'); this.core.getFormElement().appendChild(this.hiddenTokenEle); var loadPrevCaptcha = typeof window[Recaptcha3Token.LOADED_CALLBACK] === 'undefined' ? function () { } : window[Recaptcha3Token.LOADED_CALLBACK]; window[Recaptcha3Token.LOADED_CALLBACK] = function () { loadPrevCaptcha(); }; var src = this.getScript(); if (!document.body.querySelector("script[src=\"" + src + "\"]")) { var script = document.createElement('script'); script.type = 'text/javascript'; script.async = true; script.defer = true; script.src = src; document.body.appendChild(script); } }; Recaptcha3Token.prototype.uninstall = function () { this.core.off('core.form.valid', this.onValidHandler); var src = this.getScript(); var scripts = [].slice.call(document.body.querySelectorAll("script[src=\"" + src + "\"]")); scripts.forEach(function (s) { return s.parentNode.removeChild(s); }); this.core.getFormElement().removeChild(this.hiddenTokenEle); }; Recaptcha3Token.prototype.onFormValid = function () { var _this = this; window['grecaptcha'].execute(this.opts.siteKey, { action: this.opts.action }).then(function (token) { _this.hiddenTokenEle.setAttribute('name', _this.opts.hiddenTokenName); _this.hiddenTokenEle.value = token; var form = _this.core.getFormElement(); if (form instanceof HTMLFormElement) { form.submit(); } }); }; Recaptcha3Token.prototype.getScript = function () { var lang = this.opts.language ? "&hl=" + this.opts.language : ''; return ('https://www.google.com/recaptcha/api.js?' + ("onload=" + Recaptcha3Token.LOADED_CALLBACK + "&render=" + this.opts.siteKey + lang)); }; Recaptcha3Token.LOADED_CALLBACK = '___reCaptcha3Loaded___'; return Recaptcha3Token; }(Plugin_1.default)); exports.default = Recaptcha3Token; });