Server IP : 150.95.80.236 / Your IP : 18.226.93.104 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/demo15/src/plugins/formvalidation/dist/amd/validators/ |
Upload File : |
define(["require", "exports"], function (require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function file() { return { validate: function (input) { if (input.value === '') { return { valid: true }; } var extension; var extensions = input.options.extension ? input.options.extension.toLowerCase().split(',') : null; var types = input.options.type ? input.options.type.toLowerCase().split(',') : null; var html5 = window['File'] && window['FileList'] && window['FileReader']; if (html5) { var files = input.element.files; var total = files.length; var allSize = 0; if (input.options.maxFiles && total > parseInt("" + input.options.maxFiles, 10)) { return { meta: { error: 'INVALID_MAX_FILES' }, valid: false, }; } if (input.options.minFiles && total < parseInt("" + input.options.minFiles, 10)) { return { meta: { error: 'INVALID_MIN_FILES' }, valid: false, }; } var metaData = {}; for (var i = 0; i < total; i++) { allSize += files[i].size; extension = files[i].name.substr(files[i].name.lastIndexOf('.') + 1); metaData = { ext: extension, file: files[i], size: files[i].size, type: files[i].type, }; if (input.options.minSize && files[i].size < parseInt("" + input.options.minSize, 10)) { return { meta: Object.assign({}, { error: 'INVALID_MIN_SIZE' }, metaData), valid: false, }; } if (input.options.maxSize && files[i].size > parseInt("" + input.options.maxSize, 10)) { return { meta: Object.assign({}, { error: 'INVALID_MAX_SIZE' }, metaData), valid: false, }; } if (extensions && extensions.indexOf(extension.toLowerCase()) === -1) { return { meta: Object.assign({}, { error: 'INVALID_EXTENSION' }, metaData), valid: false, }; } if (files[i].type && types && types.indexOf(files[i].type.toLowerCase()) === -1) { return { meta: Object.assign({}, { error: 'INVALID_TYPE' }, metaData), valid: false, }; } } if (input.options.maxTotalSize && allSize > parseInt("" + input.options.maxTotalSize, 10)) { return { meta: Object.assign({}, { error: 'INVALID_MAX_TOTAL_SIZE', totalSize: allSize, }, metaData), valid: false, }; } if (input.options.minTotalSize && allSize < parseInt("" + input.options.minTotalSize, 10)) { return { meta: Object.assign({}, { error: 'INVALID_MIN_TOTAL_SIZE', totalSize: allSize, }, metaData), valid: false, }; } } else { extension = input.value.substr(input.value.lastIndexOf('.') + 1); if (extensions && extensions.indexOf(extension.toLowerCase()) === -1) { return { meta: { error: 'INVALID_EXTENSION', ext: extension, }, valid: false, }; } } return { valid: true }; }, }; } exports.default = file; });