Server IP : 108.163.255.210 / Your IP : 3.140.188.174 Web Server : Apache System : Linux blossom.urlnameserver.com 3.10.0-1160.80.1.el7.x86_64 #1 SMP Tue Nov 8 15:48:59 UTC 2022 x86_64 User : ( 1172) PHP Version : 7.2.34 Disable Function : eval,escapeshellarg,proc_close,proc_get_status,proc_nice,proc_open,symlink,system,pcntl_exec,getrusage,chown,chgp,closelog,openlog,syslog,define_syslog_variables,php_ini_loaded_file,getservbyname,getservbyport,posix_getgid,posix_getgrgid,proc_terminate,pfsockopen,apache_child_terminate,posix_mkfifo,posix_setpgid,posix_setuid,hypot,pg_host,pos,posix_access,posix_getcwd,posix_getservbyname,myshellexec,getpid,posix_getsid,posix_isatty,posix_kill,posix_mknod,posix_setgid,posix_setsid,posix_setuid,posix_times,posix_uname,ps_fill,posix_getpwuid,global,ini_restore,zip_open,zip_read,rar_open,bzopen,bzread,bzwrite,apache_get_modules,apache_get_version,phpversionphpinfo,php_ini_scanned_files,get_current_user,disk_total_space,diskfreespace,leak,imap_list,hypo,filedump,safe_mode,getmygid,apache_getenv,apache_setenv,bzread,bzwrite,bzopen,phpini,higlight_file,dos_conv,get_cwd,er_log,cmd,e_name,vdir,get_dir,only_read,ftok,ftpexec,posix_getpwnam,mysql_list_dbs,disk_free_space,session_save_path,confirm_phpdoc_compiled,zip_entry_rea,php_u,psockopen,crack_opendict,crack_getlastmessage,crack_closedict,crack_check,fpassthru,posix_get_last_error,posix_getlogin,posix_getgroups,posix_strerror,posix_getrlimit,posix_getpgrp,posix_getgrnam,pos,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/unilinki/public_html/indijourneys.com/node_modules/webpack/lib/ |
Upload File : |
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const { RawSource, ReplaceSource } = require("webpack-sources"); // TODO: clean up this file // replace with newer constructs // TODO: remove DependencyVariables and replace them with something better class JavascriptGenerator { generate(module, dependencyTemplates, runtimeTemplate) { const originalSource = module.originalSource(); if (!originalSource) { return new RawSource("throw new Error('No source available');"); } const source = new ReplaceSource(originalSource); this.sourceBlock( module, module, [], dependencyTemplates, source, runtimeTemplate ); return source; } sourceBlock( module, block, availableVars, dependencyTemplates, source, runtimeTemplate ) { for (const dependency of block.dependencies) { this.sourceDependency( dependency, dependencyTemplates, source, runtimeTemplate ); } /** * Get the variables of all blocks that we need to inject. * These will contain the variable name and its expression. * The name will be added as a parameter in a IIFE the expression as its value. */ const vars = block.variables.reduce((result, value) => { const variable = this.sourceVariables( value, availableVars, dependencyTemplates, runtimeTemplate ); if (variable) { result.push(variable); } return result; }, []); /** * if we actually have variables * this is important as how #splitVariablesInUniqueNamedChunks works * it will always return an array in an array which would lead to a IIFE wrapper around * a module if we do this with an empty vars array. */ if (vars.length > 0) { /** * Split all variables up into chunks of unique names. * e.g. imagine you have the following variable names that need to be injected: * [foo, bar, baz, foo, some, more] * we can not inject "foo" twice, therefore we just make two IIFEs like so: * (function(foo, bar, baz){ * (function(foo, some, more){ * … * }(…)); * }(…)); * * "splitVariablesInUniqueNamedChunks" splits the variables shown above up to this: * [[foo, bar, baz], [foo, some, more]] */ const injectionVariableChunks = this.splitVariablesInUniqueNamedChunks( vars ); // create all the beginnings of IIFEs const functionWrapperStarts = injectionVariableChunks.map( variableChunk => { return this.variableInjectionFunctionWrapperStartCode( variableChunk.map(variable => variable.name) ); } ); // and all the ends const functionWrapperEnds = injectionVariableChunks.map(variableChunk => { return this.variableInjectionFunctionWrapperEndCode( module, variableChunk.map(variable => variable.expression), block ); }); // join them to one big string const varStartCode = functionWrapperStarts.join(""); // reverse the ends first before joining them, as the last added must be the inner most const varEndCode = functionWrapperEnds.reverse().join(""); // if we have anything, add it to the source if (varStartCode && varEndCode) { const start = block.range ? block.range[0] : -10; const end = block.range ? block.range[1] : module.originalSource().size() + 1; source.insert(start + 0.5, varStartCode); source.insert(end + 0.5, "\n/* WEBPACK VAR INJECTION */" + varEndCode); } } for (const childBlock of block.blocks) { this.sourceBlock( module, childBlock, availableVars.concat(vars), dependencyTemplates, source, runtimeTemplate ); } } sourceDependency(dependency, dependencyTemplates, source, runtimeTemplate) { const template = dependencyTemplates.get(dependency.constructor); if (!template) { throw new Error( "No template for dependency: " + dependency.constructor.name ); } template.apply(dependency, source, runtimeTemplate, dependencyTemplates); } sourceVariables( variable, availableVars, dependencyTemplates, runtimeTemplate ) { const name = variable.name; const expr = variable.expressionSource( dependencyTemplates, runtimeTemplate ); if ( availableVars.some( v => v.name === name && v.expression.source() === expr.source() ) ) { return; } return { name: name, expression: expr }; } /* * creates the start part of a IIFE around the module to inject a variable name * (function(…){ <- this part * }.call(…)) */ variableInjectionFunctionWrapperStartCode(varNames) { const args = varNames.join(", "); return `/* WEBPACK VAR INJECTION */(function(${args}) {`; } contextArgument(module, block) { if (this === block) { return module.exportsArgument; } return "this"; } /* * creates the end part of a IIFE around the module to inject a variable name * (function(…){ * }.call(…)) <- this part */ variableInjectionFunctionWrapperEndCode(module, varExpressions, block) { const firstParam = this.contextArgument(module, block); const furtherParams = varExpressions.map(e => e.source()).join(", "); return `}.call(${firstParam}, ${furtherParams}))`; } splitVariablesInUniqueNamedChunks(vars) { const startState = [[]]; return vars.reduce((chunks, variable) => { const current = chunks[chunks.length - 1]; // check if variable with same name exists already // if so create a new chunk of variables. const variableNameAlreadyExists = current.some( v => v.name === variable.name ); if (variableNameAlreadyExists) { // start new chunk with current variable chunks.push([variable]); } else { // else add it to current chunk current.push(variable); } return chunks; }, startState); } } module.exports = JavascriptGenerator;