code
stringlengths
24
2.07M
docstring
stringlengths
25
85.3k
func_name
stringlengths
1
92
language
stringclasses
1 value
repo
stringlengths
5
64
path
stringlengths
4
172
url
stringlengths
44
218
license
stringclasses
7 values
getRegistryByType(key) { switch (key) { case 'china': return 'https://registry.npmmirror.com'; case 'npm': return 'https://registry.npmjs.org'; default: { if (/^https?:/.test(key)) { return key.replace(/\/$/, ''); } // support .npmrc const home = homedir(); let url = process.env.npm_registry || process.env.npm_config_registry || 'https://registry.npmjs.org'; if (fse.existsSync(path.join(home, '.cnpmrc')) || fse.existsSync(path.join(home, '.tnpmrc'))) { url = 'https://registry.npmmirror.com'; } url = url.replace(/\/$/, ''); return url; } } }
get registryUrl by short name @param {String} key - short name, support `china / npm / npmrc`, default to read from .npmrc @return {String} registryUrl
getRegistryByType
javascript
cabloy/cabloy
packages/egg-born-bin/lib/cmd/test-update.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-bin/lib/cmd/test-update.js
MIT
get() { const loginInfo = Vue.prototype.$meta.store.getState('auth/loginInfo'); const loginConfig = loginInfo && loginInfo.config; if (!loginConfig) return config; return Vue.prototype.$utils.extend({}, config, loginConfig); }
front base config @todo welcome to pr @name config @property {object} base @property {string} base.locale='en-us' @property {boolean} base.jwt=false @property {object} nprogress @property {number} nprogress.debounce=500 @property {object} api @property {string} api.baseURL='' @property {boolean} api.debounce=200
get
javascript
cabloy/cabloy
packages/egg-born-front/src/base/mixin/config.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/base/mixin/config.js
MIT
beforeCreate = function (ctx) { Object.defineProperty(ctx, '$config', { get() { const moduleInfo = ctx.$module.info; return Vue.prototype.$meta.config.modules[moduleInfo.relativeName]; }, }); }
front base config @todo welcome to pr @name config @property {object} base @property {string} base.locale='en-us' @property {boolean} base.jwt=false @property {object} nprogress @property {number} nprogress.debounce=500 @property {object} api @property {string} api.baseURL='' @property {boolean} api.debounce=200
beforeCreate
javascript
cabloy/cabloy
packages/egg-born-front/src/base/mixin/config.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/base/mixin/config.js
MIT
beforeCreate = function (ctx) { Object.defineProperty(ctx, '$config', { get() { const moduleInfo = ctx.$module.info; return Vue.prototype.$meta.config.modules[moduleInfo.relativeName]; }, }); }
front base config @todo welcome to pr @name config @property {object} base @property {string} base.locale='en-us' @property {boolean} base.jwt=false @property {object} nprogress @property {number} nprogress.debounce=500 @property {object} api @property {string} api.baseURL='' @property {boolean} api.debounce=200
beforeCreate
javascript
cabloy/cabloy
packages/egg-born-front/src/base/mixin/config.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/base/mixin/config.js
MIT
get() { const moduleInfo = ctx.$module.info; return Vue.prototype.$meta.config.modules[moduleInfo.relativeName]; }
front base config @todo welcome to pr @name config @property {object} base @property {string} base.locale='en-us' @property {boolean} base.jwt=false @property {object} nprogress @property {number} nprogress.debounce=500 @property {object} api @property {string} api.baseURL='' @property {boolean} api.debounce=200
get
javascript
cabloy/cabloy
packages/egg-born-front/src/base/mixin/config.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/base/mixin/config.js
MIT
function each(ary, func) { if (ary) { var i; for (i = 0; i < ary.length; i += 1) { if (ary[i] && func(ary[i], i, ary)) { break; } } } }
Helper function for iterating over an array. If the func returns a true value, it will break out of the loop.
each
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function eachReverse(ary, func) { if (ary) { var i; for (i = ary.length - 1; i > -1; i -= 1) { if (ary[i] && func(ary[i], i, ary)) { break; } } } }
Helper function for iterating over an array backwards. If the func returns a true value, it will break out of the loop.
eachReverse
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function hasProp(obj, prop) { return hasOwn.call(obj, prop); }
Helper function for iterating over an array backwards. If the func returns a true value, it will break out of the loop.
hasProp
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function getOwn(obj, prop) { return hasProp(obj, prop) && obj[prop]; }
Helper function for iterating over an array backwards. If the func returns a true value, it will break out of the loop.
getOwn
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function eachProp(obj, func) { var prop; for (prop in obj) { if (hasProp(obj, prop)) { if (func(obj[prop], prop)) { break; } } } }
Cycles over properties in an object and calls a function for each property value. If the function returns a truthy value, then the iteration is stopped.
eachProp
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function mixin(target, source, force, deepStringMixin) { if (source) { eachProp(source, function (value, prop) { if (force || !hasProp(target, prop)) { if ( deepStringMixin && typeof value === 'object' && value && !isArray(value) && !isFunction(value) && !(value instanceof RegExp) ) { if (!target[prop]) { target[prop] = {}; } mixin(target[prop], value, force, deepStringMixin); } else { target[prop] = value; } } }); } return target; }
Simple function to mix in properties from source into target, but only if target does not already have a property of the same name.
mixin
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function bind(obj, fn) { return function () { return fn.apply(obj, arguments); }; }
Simple function to mix in properties from source into target, but only if target does not already have a property of the same name.
bind
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function scripts() { return document.getElementsByTagName('script'); }
Simple function to mix in properties from source into target, but only if target does not already have a property of the same name.
scripts
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function defaultOnError(err) { throw err; }
Simple function to mix in properties from source into target, but only if target does not already have a property of the same name.
defaultOnError
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function getGlobal(value) { if (!value) { return value; } var g = global; each(value.split('.'), function (part) { g = g[part]; }); return g; }
Simple function to mix in properties from source into target, but only if target does not already have a property of the same name.
getGlobal
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function makeError(id, msg, err, requireModules) { var e = new Error(msg + '\nhttps://requirejs.org/docs/errors.html#' + id); e.requireType = id; e.requireModules = requireModules; if (err) { e.originalError = err; } return e; }
Constructs an error with a pointer to an URL with more information. @param {String} id the error ID that maps to an ID on a web page. @param {String} message human readable error. @param {Error} [err] the original error, if there is one. @returns {Error}
makeError
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function newContext(contextName) { var inCheckLoaded, Module, context, handlers, checkLoadedTimeoutId, config = { //Defaults. Do not set a default for map //config to speed up normalize(), which //will run faster if there is no default. waitSeconds: 7, baseUrl: './', paths: {}, bundles: {}, pkgs: {}, shim: {}, config: {}, }, registry = {}, //registry of just enabled modules, to speed //cycle breaking code when lots of modules //are registered, but not activated. enabledRegistry = {}, undefEvents = {}, defQueue = [], defined = {}, urlFetched = {}, bundlesMap = {}, requireCounter = 1, unnormalizedCounter = 1; /** * Trims the . and .. from an array of path segments. * It will keep a leading path segment if a .. will become * the first path segment, to help with module name lookups, * which act like paths, but can be remapped. But the end result, * all paths that use this function should look normalized. * NOTE: this method MODIFIES the input array. * @param {Array} ary the array of path segments. */ function trimDots(ary) { var i, part; for (i = 0; i < ary.length; i++) { part = ary[i]; if (part === '.') { ary.splice(i, 1); i -= 1; } else if (part === '..') { // If at the start, or previous value is still .., // keep them so that when converted to a path it may // still work when converted to a path, even though // as an ID it is less than ideal. In larger point // releases, may be better to just kick out an error. if (i === 0 || (i === 1 && ary[2] === '..') || ary[i - 1] === '..') { continue; } else if (i > 0) { ary.splice(i - 1, 2); i -= 2; } } } } /** * Given a relative module name, like ./something, normalize it to * a real name that can be mapped to a path. * @param {String} name the relative name * @param {String} baseName a real name that the name arg is relative * to. * @param {Boolean} applyMap apply the map config to the value. Should * only be done if this normalization is for a dependency ID. * @returns {String} normalized name */ function normalize(name, baseName, applyMap) { var pkgMain, mapValue, nameParts, i, j, nameSegment, lastIndex, foundMap, foundI, foundStarMap, starI, normalizedBaseParts, baseParts = baseName && baseName.split('/'), map = config.map, starMap = map && map['*']; //Adjust any relative paths. if (name) { name = name.split('/'); lastIndex = name.length - 1; // If wanting node ID compatibility, strip .js from end // of IDs. Have to do this here, and not in nameToUrl // because node allows either .js or non .js to map // to same file. if (config.nodeIdCompat && jsSuffixRegExp.test(name[lastIndex])) { name[lastIndex] = name[lastIndex].replace(jsSuffixRegExp, ''); } // Starts with a '.' so need the baseName if (name[0].charAt(0) === '.' && baseParts) { //Convert baseName to array, and lop off the last part, //so that . matches that 'directory' and not name of the baseName's //module. For instance, baseName of 'one/two/three', maps to //'one/two/three.js', but we want the directory, 'one/two' for //this normalization. normalizedBaseParts = baseParts.slice(0, baseParts.length - 1); name = normalizedBaseParts.concat(name); } trimDots(name); name = name.join('/'); } //Apply map config if available. if (applyMap && map && (baseParts || starMap)) { nameParts = name.split('/'); outerLoop: for (i = nameParts.length; i > 0; i -= 1) { nameSegment = nameParts.slice(0, i).join('/'); if (baseParts) { //Find the longest baseName segment match in the config. //So, do joins on the biggest to smallest lengths of baseParts. for (j = baseParts.length; j > 0; j -= 1) { mapValue = getOwn(map, baseParts.slice(0, j).join('/')); //baseName segment has config, find if it has one for //this name. if (mapValue) { mapValue = getOwn(mapValue, nameSegment); if (mapValue) { //Match, update name to the new value. foundMap = mapValue; foundI = i; break outerLoop; } } } } //Check for a star map match, but just hold on to it, //if there is a shorter segment match later in a matching //config, then favor over this star map. if (!foundStarMap && starMap && getOwn(starMap, nameSegment)) { foundStarMap = getOwn(starMap, nameSegment); starI = i; } } if (!foundMap && foundStarMap) { foundMap = foundStarMap; foundI = starI; } if (foundMap) { nameParts.splice(0, foundI, foundMap); name = nameParts.join('/'); } } // If the name points to a package's name, use // the package main instead. pkgMain = getOwn(config.pkgs, name); return pkgMain ? pkgMain : name; } function removeScript(name) { if (isBrowser) { each(scripts(), function (scriptNode) { if ( scriptNode.getAttribute('data-requiremodule') === name && scriptNode.getAttribute('data-requirecontext') === context.contextName ) { scriptNode.parentNode.removeChild(scriptNode); return true; } }); } } function hasPathFallback(id) { var pathConfig = getOwn(config.paths, id); if (pathConfig && isArray(pathConfig) && pathConfig.length > 1) { //Pop off the first array value, since it failed, and //retry pathConfig.shift(); context.require.undef(id); //Custom require that does not do map translation, since //ID is "absolute", already mapped/resolved. context.makeRequire(null, { skipMap: true, })([id]); return true; } } //Turns a plugin!resource to [plugin, resource] //with the plugin being undefined if the name //did not have a plugin prefix. function splitPrefix(name) { var prefix, index = name ? name.indexOf('!') : -1; if (index > -1) { prefix = name.substring(0, index); name = name.substring(index + 1, name.length); } return [prefix, name]; } /** * Creates a module mapping that includes plugin prefix, module * name, and path. If parentModuleMap is provided it will * also normalize the name via require.normalize() * * @param {String} name the module name * @param {String} [parentModuleMap] parent module map * for the module name, used to resolve relative names. * @param {Boolean} isNormalized: is the ID already normalized. * This is true if this call is done for a define() module ID. * @param {Boolean} applyMap: apply the map config to the ID. * Should only be true if this map is for a dependency. * * @returns {Object} */ function makeModuleMap(name, parentModuleMap, isNormalized, applyMap) { var url, pluginModule, suffix, nameParts, prefix = null, parentName = parentModuleMap ? parentModuleMap.name : null, originalName = name, isDefine = true, normalizedName = ''; //If no name, then it means it is a require call, generate an //internal name. if (!name) { isDefine = false; name = '_@r' + (requireCounter += 1); } nameParts = splitPrefix(name); prefix = nameParts[0]; name = nameParts[1]; if (prefix) { prefix = normalize(prefix, parentName, applyMap); pluginModule = getOwn(defined, prefix); } //Account for relative paths if there is a base name. if (name) { if (prefix) { if (isNormalized) { normalizedName = name; } else if (pluginModule && pluginModule.normalize) { //Plugin is loaded, use its normalize method. normalizedName = pluginModule.normalize(name, function (name) { return normalize(name, parentName, applyMap); }); } else { // If nested plugin references, then do not try to // normalize, as it will not normalize correctly. This // places a restriction on resourceIds, and the longer // term solution is not to normalize until plugins are // loaded and all normalizations to allow for async // loading of a loader plugin. But for now, fixes the // common uses. Details in #1131 normalizedName = name.indexOf('!') === -1 ? normalize(name, parentName, applyMap) : name; } } else { //A regular module. normalizedName = normalize(name, parentName, applyMap); //Normalized name may be a plugin ID due to map config //application in normalize. The map config values must //already be normalized, so do not need to redo that part. nameParts = splitPrefix(normalizedName); prefix = nameParts[0]; normalizedName = nameParts[1]; isNormalized = true; url = context.nameToUrl(normalizedName); } } //If the id is a plugin id that cannot be determined if it needs //normalization, stamp it with a unique ID so two matching relative //ids that may conflict can be separate. suffix = prefix && !pluginModule && !isNormalized ? '_unnormalized' + (unnormalizedCounter += 1) : ''; return { prefix: prefix, name: normalizedName, parentMap: parentModuleMap, unnormalized: !!suffix, url: url, originalName: originalName, isDefine: isDefine, id: (prefix ? prefix + '!' + normalizedName : normalizedName) + suffix, }; } function getModule(depMap) { var id = depMap.id, mod = getOwn(registry, id); if (!mod) { mod = registry[id] = new context.Module(depMap); } return mod; } function on(depMap, name, fn) { var id = depMap.id, mod = getOwn(registry, id); if (hasProp(defined, id) && (!mod || mod.defineEmitComplete)) { if (name === 'defined') { fn(defined[id]); } } else { mod = getModule(depMap); if (mod.error && name === 'error') { fn(mod.error); } else { mod.on(name, fn); } } } function onError(err, errback) { var ids = err.requireModules, notified = false; if (errback) { errback(err); } else { each(ids, function (id) { var mod = getOwn(registry, id); if (mod) { //Set error on module, so it skips timeout checks. mod.error = err; if (mod.events.error) { notified = true; mod.emit('error', err); } } }); if (!notified) { req.onError(err); } } } /** * Internal method to transfer globalQueue items to this context's * defQueue. */ function takeGlobalQueue() { //Push all the globalDefQueue items into the context's defQueue if (globalDefQueue.length) { each(globalDefQueue, function (queueItem) { var id = queueItem[0]; if (typeof id === 'string') { context.defQueueMap[id] = true; } defQueue.push(queueItem); }); globalDefQueue = []; } } handlers = { require: function (mod) { if (mod.require) { return mod.require; } else { return (mod.require = context.makeRequire(mod.map)); } }, exports: function (mod) { mod.usingExports = true; if (mod.map.isDefine) { if (mod.exports) { return (defined[mod.map.id] = mod.exports); } else { return (mod.exports = defined[mod.map.id] = {}); } } }, module: function (mod) { if (mod.module) { return mod.module; } else { return (mod.module = { id: mod.map.id, uri: mod.map.url, config: function () { return getOwn(config.config, mod.map.id) || {}; }, exports: mod.exports || (mod.exports = {}), }); } }, }; function cleanRegistry(id) { //Clean up machinery used for waiting modules. delete registry[id]; delete enabledRegistry[id]; } function breakCycle(mod, traced, processed) { var id = mod.map.id; if (mod.error) { mod.emit('error', mod.error); } else { traced[id] = true; each(mod.depMaps, function (depMap, i) { var depId = depMap.id, dep = getOwn(registry, depId); //Only force things that have not completed //being defined, so still in the registry, //and only if it has not been matched up //in the module already. if (dep && !mod.depMatched[i] && !processed[depId]) { if (getOwn(traced, depId)) { mod.defineDep(i, defined[depId]); mod.check(); //pass false? } else { breakCycle(dep, traced, processed); } } }); processed[id] = true; } } function checkLoaded() { var err, usingPathFallback, waitInterval = config.waitSeconds * 1000, //It is possible to disable the wait interval by using waitSeconds of 0. expired = waitInterval && context.startTime + waitInterval < new Date().getTime(), noLoads = [], reqCalls = [], stillLoading = false, needCycleCheck = true; //Do not bother if this call was a result of a cycle break. if (inCheckLoaded) { return; } inCheckLoaded = true; //Figure out the state of all the modules. eachProp(enabledRegistry, function (mod) { var map = mod.map, modId = map.id; //Skip things that are not enabled or in error state. if (!mod.enabled) { return; } if (!map.isDefine) { reqCalls.push(mod); } if (!mod.error) { //If the module should be executed, and it has not //been inited and time is up, remember it. if (!mod.inited && expired) { if (hasPathFallback(modId)) { usingPathFallback = true; stillLoading = true; } else { noLoads.push(modId); removeScript(modId); } } else if (!mod.inited && mod.fetched && map.isDefine) { stillLoading = true; if (!map.prefix) { //No reason to keep looking for unfinished //loading. If the only stillLoading is a //plugin resource though, keep going, //because it may be that a plugin resource //is waiting on a non-plugin cycle. return (needCycleCheck = false); } } } }); if (expired && noLoads.length) { //If wait time expired, throw error of unloaded modules. err = makeError('timeout', 'Load timeout for modules: ' + noLoads, null, noLoads); err.contextName = context.contextName; return onError(err); } //Not expired, check for a cycle. if (needCycleCheck) { each(reqCalls, function (mod) { breakCycle(mod, {}, {}); }); } //If still waiting on loads, and the waiting load is something //other than a plugin resource, or there are still outstanding //scripts, then just try back later. if ((!expired || usingPathFallback) && stillLoading) { //Something is still waiting to load. Wait for it, but only //if a timeout is not already in effect. if ((isBrowser || isWebWorker) && !checkLoadedTimeoutId) { checkLoadedTimeoutId = setTimeout(function () { checkLoadedTimeoutId = 0; checkLoaded(); }, 50); } } inCheckLoaded = false; } Module = function (map) { this.events = getOwn(undefEvents, map.id) || {}; this.map = map; this.shim = getOwn(config.shim, map.id); this.depExports = []; this.depMaps = []; this.depMatched = []; this.pluginMaps = {}; this.depCount = 0; /* this.exports this.factory this.depMaps = [], this.enabled, this.fetched */ }; Module.prototype = { init: function (depMaps, factory, errback, options) { options = options || {}; //Do not do more inits if already done. Can happen if there //are multiple define calls for the same module. That is not //a normal, common case, but it is also not unexpected. if (this.inited) { return; } this.factory = factory; if (errback) { //Register for errors on this module. this.on('error', errback); } else if (this.events.error) { //If no errback already, but there are error listeners //on this module, set up an errback to pass to the deps. errback = bind(this, function (err) { this.emit('error', err); }); } //Do a copy of the dependency array, so that //source inputs are not modified. For example //"shim" deps are passed in here directly, and //doing a direct modification of the depMaps array //would affect that config. this.depMaps = depMaps && depMaps.slice(0); this.errback = errback; //Indicate this module has be initialized this.inited = true; this.ignore = options.ignore; //Could have option to init this module in enabled mode, //or could have been previously marked as enabled. However, //the dependencies are not known until init is called. So //if enabled previously, now trigger dependencies as enabled. if (options.enabled || this.enabled) { //Enable this module and dependencies. //Will call this.check() this.enable(); } else { this.check(); } }, defineDep: function (i, depExports) { //Because of cycles, defined callback for a given //export can be called more than once. if (!this.depMatched[i]) { this.depMatched[i] = true; this.depCount -= 1; this.depExports[i] = depExports; } }, fetch: function () { if (this.fetched) { return; } this.fetched = true; context.startTime = new Date().getTime(); var map = this.map; //If the manager is for a plugin managed resource, //ask the plugin to load it now. if (this.shim) { context.makeRequire(this.map, { enableBuildCallback: true, })( this.shim.deps || [], bind(this, function () { return map.prefix ? this.callPlugin() : this.load(); }) ); } else { //Regular dependency. return map.prefix ? this.callPlugin() : this.load(); } }, load: function () { var url = this.map.url; //Regular dependency. if (!urlFetched[url]) { urlFetched[url] = true; context.load(this.map.id, url); } }, /** * Checks if the module is ready to define itself, and if so, * define it. */ check: function () { if (!this.enabled || this.enabling) { return; } var err, cjsModule, id = this.map.id, depExports = this.depExports, exports = this.exports, factory = this.factory; if (!this.inited) { // Only fetch if not already in the defQueue. if (!hasProp(context.defQueueMap, id)) { this.fetch(); } } else if (this.error) { this.emit('error', this.error); } else if (!this.defining) { //The factory could trigger another require call //that would result in checking this module to //define itself again. If already in the process //of doing that, skip this work. this.defining = true; if (this.depCount < 1 && !this.defined) { if (isFunction(factory)) { //If there is an error listener, favor passing //to that instead of throwing an error. However, //only do it for define()'d modules. require //errbacks should not be called for failures in //their callbacks (#699). However if a global //onError is set, use that. if ((this.events.error && this.map.isDefine) || req.onError !== defaultOnError) { try { exports = context.execCb(id, factory, depExports, exports); } catch (e) { err = e; } } else { exports = context.execCb(id, factory, depExports, exports); } // Favor return value over exports. If node/cjs in play, // then will not have a return value anyway. Favor // module.exports assignment over exports object. if (this.map.isDefine && exports === undefined) { cjsModule = this.module; if (cjsModule) { exports = cjsModule.exports; } else if (this.usingExports) { //exports already set the defined value. exports = this.exports; } } if (err) { err.requireMap = this.map; err.requireModules = this.map.isDefine ? [this.map.id] : null; err.requireType = this.map.isDefine ? 'define' : 'require'; return onError((this.error = err)); } } else { //Just a literal value exports = factory; } this.exports = exports; if (this.map.isDefine && !this.ignore) { defined[id] = exports; if (req.onResourceLoad) { var resLoadMaps = []; each(this.depMaps, function (depMap) { resLoadMaps.push(depMap.normalizedMap || depMap); }); req.onResourceLoad(context, this.map, resLoadMaps); } } //Clean up cleanRegistry(id); this.defined = true; } //Finished the define stage. Allow calling check again //to allow define notifications below in the case of a //cycle. this.defining = false; if (this.defined && !this.defineEmitted) { this.defineEmitted = true; this.emit('defined', this.exports); this.defineEmitComplete = true; } } }, callPlugin: function () { var map = this.map, id = map.id, //Map already normalized the prefix. pluginMap = makeModuleMap(map.prefix); //Mark this as a dependency for this plugin, so it //can be traced for cycles. this.depMaps.push(pluginMap); on( pluginMap, 'defined', bind(this, function (plugin) { var load, normalizedMap, normalizedMod, bundleId = getOwn(bundlesMap, this.map.id), name = this.map.name, parentName = this.map.parentMap ? this.map.parentMap.name : null, localRequire = context.makeRequire(map.parentMap, { enableBuildCallback: true, }); //If current map is not normalized, wait for that //normalized name to load instead of continuing. if (this.map.unnormalized) { //Normalize the ID if the plugin allows it. if (plugin.normalize) { name = plugin.normalize(name, function (name) { return normalize(name, parentName, true); }) || ''; } //prefix and name should already be normalized, no need //for applying map config again either. normalizedMap = makeModuleMap(map.prefix + '!' + name, this.map.parentMap, true); on( normalizedMap, 'defined', bind(this, function (value) { this.map.normalizedMap = normalizedMap; this.init( [], function () { return value; }, null, { enabled: true, ignore: true, } ); }) ); normalizedMod = getOwn(registry, normalizedMap.id); if (normalizedMod) { //Mark this as a dependency for this plugin, so it //can be traced for cycles. this.depMaps.push(normalizedMap); if (this.events.error) { normalizedMod.on( 'error', bind(this, function (err) { this.emit('error', err); }) ); } normalizedMod.enable(); } return; } //If a paths config, then just load that file instead to //resolve the plugin, as it is built into that paths layer. if (bundleId) { this.map.url = context.nameToUrl(bundleId); this.load(); return; } load = bind(this, function (value) { this.init( [], function () { return value; }, null, { enabled: true, } ); }); load.error = bind(this, function (err) { this.inited = true; this.error = err; err.requireModules = [id]; //Remove temp unnormalized modules for this module, //since they will never be resolved otherwise now. eachProp(registry, function (mod) { if (mod.map.id.indexOf(id + '_unnormalized') === 0) { cleanRegistry(mod.map.id); } }); onError(err); }); //Allow plugins to load other code without having to know the //context or how to 'complete' the load. load.fromText = bind(this, function (text, textAlt) { /*jslint evil: true */ var moduleName = map.name, moduleMap = makeModuleMap(moduleName), hasInteractive = useInteractive; //As of 2.1.0, support just passing the text, to reinforce //fromText only being called once per resource. Still //support old style of passing moduleName but discard //that moduleName in favor of the internal ref. if (textAlt) { text = textAlt; } //Turn off interactive script matching for IE for any define //calls in the text, then turn it back on at the end. if (hasInteractive) { useInteractive = false; } //Prime the system by creating a module instance for //it. getModule(moduleMap); //Transfer any config to this other module. if (hasProp(config.config, id)) { config.config[moduleName] = config.config[id]; } try { req.exec(text); } catch (e) { return onError(makeError('fromtexteval', 'fromText eval for ' + id + ' failed: ' + e, e, [id])); } if (hasInteractive) { useInteractive = true; } //Mark this as a dependency for the plugin //resource this.depMaps.push(moduleMap); //Support anonymous modules. context.completeLoad(moduleName); //Bind the value of that module to the value for this //resource ID. localRequire([moduleName], load); }); //Use parentName here since the plugin's name is not reliable, //could be some weird string with no path that actually wants to //reference the parentName's path. plugin.load(map.name, localRequire, load, config); }) ); context.enable(pluginMap, this); this.pluginMaps[pluginMap.id] = pluginMap; }, enable: function () { enabledRegistry[this.map.id] = this; this.enabled = true; //Set flag mentioning that the module is enabling, //so that immediate calls to the defined callbacks //for dependencies do not trigger inadvertent load //with the depCount still being zero. this.enabling = true; //Enable each dependency each( this.depMaps, bind(this, function (depMap, i) { var id, mod, handler; if (typeof depMap === 'string') { //Dependency needs to be converted to a depMap //and wired up to this module. depMap = makeModuleMap(depMap, this.map.isDefine ? this.map : this.map.parentMap, false, !this.skipMap); this.depMaps[i] = depMap; handler = getOwn(handlers, depMap.id); if (handler) { this.depExports[i] = handler(this); return; } this.depCount += 1; on( depMap, 'defined', bind(this, function (depExports) { if (this.undefed) { return; } this.defineDep(i, depExports); this.check(); }) ); if (this.errback) { on(depMap, 'error', bind(this, this.errback)); } else if (this.events.error) { // No direct errback on this module, but something // else is listening for errors, so be sure to // propagate the error correctly. on( depMap, 'error', bind(this, function (err) { this.emit('error', err); }) ); } } id = depMap.id; mod = registry[id]; //Skip special modules like 'require', 'exports', 'module' //Also, don't call enable if it is already enabled, //important in circular dependency cases. if (!hasProp(handlers, id) && mod && !mod.enabled) { context.enable(depMap, this); } }) ); //Enable each plugin that is used in //a dependency eachProp( this.pluginMaps, bind(this, function (pluginMap) { var mod = getOwn(registry, pluginMap.id); if (mod && !mod.enabled) { context.enable(pluginMap, this); } }) ); this.enabling = false; this.check(); }, on: function (name, cb) { var cbs = this.events[name]; if (!cbs) { cbs = this.events[name] = []; } cbs.push(cb); }, emit: function (name, evt) { each(this.events[name], function (cb) { cb(evt); }); if (name === 'error') { //Now that the error handler was triggered, remove //the listeners, since this broken Module instance //can stay around for a while in the registry. delete this.events[name]; } }, }; function callGetModule(args) { //Skip modules already defined. if (!hasProp(defined, args[0])) { getModule(makeModuleMap(args[0], null, true)).init(args[1], args[2]); } } function removeListener(node, func, name, ieName) { //Favor detachEvent because of IE9 //issue, see attachEvent/addEventListener comment elsewhere //in this file. if (node.detachEvent && !isOpera) { //Probably IE. If not it will throw an error, which will be //useful to know. if (ieName) { node.detachEvent(ieName, func); } } else { node.removeEventListener(name, func, false); } } /** * Given an event from a script node, get the requirejs info from it, * and then removes the event listeners on the node. * @param {Event} evt * @returns {Object} */ function getScriptData(evt) { //Using currentTarget instead of target for Firefox 2.0's sake. Not //all old browsers will be supported, but this one was easy enough //to support and still makes sense. var node = evt.currentTarget || evt.srcElement; //Remove the listeners once here. removeListener(node, context.onScriptLoad, 'load', 'onreadystatechange'); removeListener(node, context.onScriptError, 'error'); return { node: node, id: node && node.getAttribute('data-requiremodule'), }; } function intakeDefines() { var args; //Any defined modules in the global queue, intake them now. takeGlobalQueue(); //Make sure any remaining defQueue items get properly processed. while (defQueue.length) { args = defQueue.shift(); if (args[0] === null) { return onError(makeError('mismatch', 'Mismatched anonymous define() module: ' + args[args.length - 1])); } else { //args are id, deps, factory. Should be normalized by the //define() function. callGetModule(args); } } context.defQueueMap = {}; } context = { config: config, contextName: contextName, registry: registry, defined: defined, urlFetched: urlFetched, defQueue: defQueue, defQueueMap: {}, Module: Module, makeModuleMap: makeModuleMap, nextTick: req.nextTick, onError: onError, /** * Set a configuration for the context. * @param {Object} cfg config object to integrate. */ configure: function (cfg) { //Make sure the baseUrl ends in a slash. if (cfg.baseUrl) { if (cfg.baseUrl.charAt(cfg.baseUrl.length - 1) !== '/') { cfg.baseUrl += '/'; } } // Convert old style urlArgs string to a function. if (typeof cfg.urlArgs === 'string') { var urlArgs = cfg.urlArgs; cfg.urlArgs = function (id, url) { return (url.indexOf('?') === -1 ? '?' : '&') + urlArgs; }; } //Save off the paths since they require special processing, //they are additive. var shim = config.shim, objs = { paths: true, bundles: true, config: true, map: true, }; eachProp(cfg, function (value, prop) { if (objs[prop]) { if (!config[prop]) { config[prop] = {}; } mixin(config[prop], value, true, true); } else { config[prop] = value; } }); //Reverse map the bundles if (cfg.bundles) { eachProp(cfg.bundles, function (value, prop) { each(value, function (v) { if (v !== prop) { bundlesMap[v] = prop; } }); }); } //Merge shim if (cfg.shim) { eachProp(cfg.shim, function (value, id) { //Normalize the structure if (isArray(value)) { value = { deps: value, }; } if ((value.exports || value.init) && !value.exportsFn) { value.exportsFn = context.makeShimExports(value); } shim[id] = value; }); config.shim = shim; } //Adjust packages if necessary. if (cfg.packages) { each(cfg.packages, function (pkgObj) { var location, name; pkgObj = typeof pkgObj === 'string' ? { name: pkgObj } : pkgObj; name = pkgObj.name; location = pkgObj.location; if (location) { config.paths[name] = pkgObj.location; } //Save pointer to main module ID for pkg name. //Remove leading dot in main, so main paths are normalized, //and remove any trailing .js, since different package //envs have different conventions: some use a module name, //some use a file name. config.pkgs[name] = pkgObj.name + '/' + (pkgObj.main || 'main').replace(currDirRegExp, '').replace(jsSuffixRegExp, ''); }); } //If there are any "waiting to execute" modules in the registry, //update the maps for them, since their info, like URLs to load, //may have changed. eachProp(registry, function (mod, id) { //If module already has init called, since it is too //late to modify them, and ignore unnormalized ones //since they are transient. if (!mod.inited && !mod.map.unnormalized) { mod.map = makeModuleMap(id, null, true); } }); //If a deps array or a config callback is specified, then call //require with those args. This is useful when require is defined as a //config object before require.js is loaded. if (cfg.deps || cfg.callback) { context.require(cfg.deps || [], cfg.callback); } }, makeShimExports: function (value) { function fn() { var ret; if (value.init) { ret = value.init.apply(global, arguments); } return ret || (value.exports && getGlobal(value.exports)); } return fn; }, makeRequire: function (relMap, options) { options = options || {}; function localRequire(deps, callback, errback) { var id, map, requireMod; if (options.enableBuildCallback && callback && isFunction(callback)) { callback.__requireJsBuild = true; } if (typeof deps === 'string') { if (isFunction(callback)) { //Invalid call return onError(makeError('requireargs', 'Invalid require call'), errback); } //If require|exports|module are requested, get the //value for them from the special handlers. Caveat: //this only works while module is being defined. if (relMap && hasProp(handlers, deps)) { return handlers[deps](registry[relMap.id]); } //Synchronous access to one module. If require.get is //available (as in the Node adapter), prefer that. if (req.get) { return req.get(context, deps, relMap, localRequire); } //Normalize module name, if it contains . or .. map = makeModuleMap(deps, relMap, false, true); id = map.id; if (!hasProp(defined, id)) { return onError( makeError( 'notloaded', 'Module name "' + id + '" has not been loaded yet for context: ' + contextName + (relMap ? '' : '. Use require([])') ) ); } return defined[id]; } //Grab defines waiting in the global queue. intakeDefines(); //Mark all the dependencies as needing to be loaded. context.nextTick(function () { //Some defines could have been added since the //require call, collect them. intakeDefines(); requireMod = getModule(makeModuleMap(null, relMap)); //Store if map config should be applied to this require //call for dependencies. requireMod.skipMap = options.skipMap; requireMod.init(deps, callback, errback, { enabled: true, }); checkLoaded(); }); return localRequire; } mixin(localRequire, { isBrowser: isBrowser, /** * Converts a module name + .extension into an URL path. * *Requires* the use of a module name. It does not support using * plain URLs like nameToUrl. */ toUrl: function (moduleNamePlusExt) { var ext, index = moduleNamePlusExt.lastIndexOf('.'), segment = moduleNamePlusExt.split('/')[0], isRelative = segment === '.' || segment === '..'; //Have a file extension alias, and it is not the //dots from a relative path. if (index !== -1 && (!isRelative || index > 1)) { ext = moduleNamePlusExt.substring(index, moduleNamePlusExt.length); moduleNamePlusExt = moduleNamePlusExt.substring(0, index); } return context.nameToUrl(normalize(moduleNamePlusExt, relMap && relMap.id, true), ext, true); }, defined: function (id) { return hasProp(defined, makeModuleMap(id, relMap, false, true).id); }, specified: function (id) { id = makeModuleMap(id, relMap, false, true).id; return hasProp(defined, id) || hasProp(registry, id); }, }); //Only allow undef on top level require calls if (!relMap) { localRequire.undef = function (id) { //Bind any waiting define() calls to this context, //fix for #408 takeGlobalQueue(); var map = makeModuleMap(id, relMap, true), mod = getOwn(registry, id); mod.undefed = true; removeScript(id); delete defined[id]; delete urlFetched[map.url]; delete undefEvents[id]; //Clean queued defines too. Go backwards //in array so that the splices do not //mess up the iteration. eachReverse(defQueue, function (args, i) { if (args[0] === id) { defQueue.splice(i, 1); } }); delete context.defQueueMap[id]; if (mod) { //Hold on to listeners in case the //module will be attempted to be reloaded //using a different config. if (mod.events.defined) { undefEvents[id] = mod.events; } cleanRegistry(id); } }; } return localRequire; }, /** * Called to enable a module if it is still in the registry * awaiting enablement. A second arg, parent, the parent module, * is passed in for context, when this method is overridden by * the optimizer. Not shown here to keep code compact. */ enable: function (depMap) { var mod = getOwn(registry, depMap.id); if (mod) { getModule(depMap).enable(); } }, /** * Internal method used by environment adapters to complete a load event. * A load event could be a script load or just a load pass from a synchronous * load call. * @param {String} moduleName the name of the module to potentially complete. */ completeLoad: function (moduleName) { var found, args, mod, shim = getOwn(config.shim, moduleName) || {}, shExports = shim.exports; takeGlobalQueue(); while (defQueue.length) { args = defQueue.shift(); if (args[0] === null) { args[0] = moduleName; //If already found an anonymous module and bound it //to this name, then this is some other anon module //waiting for its completeLoad to fire. if (found) { break; } found = true; } else if (args[0] === moduleName) { //Found matching define call for this script! found = true; } callGetModule(args); } context.defQueueMap = {}; //Do this after the cycle of callGetModule in case the result //of those calls/init calls changes the registry. mod = getOwn(registry, moduleName); if (!found && !hasProp(defined, moduleName) && mod && !mod.inited) { if (config.enforceDefine && (!shExports || !getGlobal(shExports))) { if (hasPathFallback(moduleName)) { return; } else { return onError(makeError('nodefine', 'No define call for ' + moduleName, null, [moduleName])); } } else { //A script that does not call define(), so just simulate //the call for it. callGetModule([moduleName, shim.deps || [], shim.exportsFn]); } } checkLoaded(); }, /** * Converts a module name to a file path. Supports cases where * moduleName may actually be just an URL. * Note that it **does not** call normalize on the moduleName, * it is assumed to have already been normalized. This is an * internal API, not a public one. Use toUrl for the public API. */ nameToUrl: function (moduleName, ext, skipExt) { var paths, syms, i, parentModule, url, parentPath, bundleId, pkgMain = getOwn(config.pkgs, moduleName); if (pkgMain) { moduleName = pkgMain; } bundleId = getOwn(bundlesMap, moduleName); if (bundleId) { return context.nameToUrl(bundleId, ext, skipExt); } //If a colon is in the URL, it indicates a protocol is used and it is just //an URL to a file, or if it starts with a slash, contains a query arg (i.e. ?) //or ends with .js, then assume the user meant to use an url and not a module id. //The slash is important for protocol-less URLs as well as full paths. if (req.jsExtRegExp.test(moduleName)) { //Just a plain path, not module name lookup, so just return it. //Add extension if it is included. This is a bit wonky, only non-.js things pass //an extension, this method probably needs to be reworked. url = moduleName + (ext || ''); } else { //A module that needs to be converted to a path. paths = config.paths; syms = moduleName.split('/'); //For each module name segment, see if there is a path //registered for it. Start with most specific name //and work up from it. for (i = syms.length; i > 0; i -= 1) { parentModule = syms.slice(0, i).join('/'); parentPath = getOwn(paths, parentModule); if (parentPath) { //If an array, it means there are a few choices, //Choose the one that is desired if (isArray(parentPath)) { parentPath = parentPath[0]; } syms.splice(0, i, parentPath); break; } } //Join the path parts together, then figure out if baseUrl is needed. url = syms.join('/'); url += ext || (/^data\:|^blob\:|\?/.test(url) || skipExt ? '' : '.js'); url = (url.charAt(0) === '/' || url.match(/^[\w\+\.\-]+:/) ? '' : config.baseUrl) + url; } return config.urlArgs && !/^blob\:/.test(url) ? url + config.urlArgs(moduleName, url) : url; }, //Delegates to req.load. Broken out as a separate function to //allow overriding in the optimizer. load: function (id, url) { req.load(context, id, url); }, /** * Executes a module callback function. Broken out as a separate function * solely to allow the build system to sequence the files in the built * layer in the right sequence. * * @private */ execCb: function (name, callback, args, exports) { return callback.apply(exports, args); }, /** * callback for script loads, used to check status of loading. * * @param {Event} evt the event from the browser for the script * that was loaded. */ onScriptLoad: function (evt) { //Using currentTarget instead of target for Firefox 2.0's sake. Not //all old browsers will be supported, but this one was easy enough //to support and still makes sense. if (evt.type === 'load' || readyRegExp.test((evt.currentTarget || evt.srcElement).readyState)) { //Reset interactive script so a script node is not held onto for //to long. interactiveScript = null; //Pull out the name of the module and the context. var data = getScriptData(evt); context.completeLoad(data.id); } }, /** * Callback for script errors. */ onScriptError: function (evt) { var data = getScriptData(evt); if (!hasPathFallback(data.id)) { var parents = []; eachProp(registry, function (value, key) { if (key.indexOf('_@r') !== 0) { each(value.depMaps, function (depMap) { if (depMap.id === data.id) { parents.push(key); return true; } }); } }); return onError( makeError( 'scripterror', 'Script error for "' + data.id + (parents.length ? '", needed by: ' + parents.join(', ') : '"'), evt, [data.id] ) ); } }, }; context.require = context.makeRequire(); return context; }
Constructs an error with a pointer to an URL with more information. @param {String} id the error ID that maps to an ID on a web page. @param {String} message human readable error. @param {Error} [err] the original error, if there is one. @returns {Error}
newContext
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function trimDots(ary) { var i, part; for (i = 0; i < ary.length; i++) { part = ary[i]; if (part === '.') { ary.splice(i, 1); i -= 1; } else if (part === '..') { // If at the start, or previous value is still .., // keep them so that when converted to a path it may // still work when converted to a path, even though // as an ID it is less than ideal. In larger point // releases, may be better to just kick out an error. if (i === 0 || (i === 1 && ary[2] === '..') || ary[i - 1] === '..') { continue; } else if (i > 0) { ary.splice(i - 1, 2); i -= 2; } } } }
Trims the . and .. from an array of path segments. It will keep a leading path segment if a .. will become the first path segment, to help with module name lookups, which act like paths, but can be remapped. But the end result, all paths that use this function should look normalized. NOTE: this method MODIFIES the input array. @param {Array} ary the array of path segments.
trimDots
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function normalize(name, baseName, applyMap) { var pkgMain, mapValue, nameParts, i, j, nameSegment, lastIndex, foundMap, foundI, foundStarMap, starI, normalizedBaseParts, baseParts = baseName && baseName.split('/'), map = config.map, starMap = map && map['*']; //Adjust any relative paths. if (name) { name = name.split('/'); lastIndex = name.length - 1; // If wanting node ID compatibility, strip .js from end // of IDs. Have to do this here, and not in nameToUrl // because node allows either .js or non .js to map // to same file. if (config.nodeIdCompat && jsSuffixRegExp.test(name[lastIndex])) { name[lastIndex] = name[lastIndex].replace(jsSuffixRegExp, ''); } // Starts with a '.' so need the baseName if (name[0].charAt(0) === '.' && baseParts) { //Convert baseName to array, and lop off the last part, //so that . matches that 'directory' and not name of the baseName's //module. For instance, baseName of 'one/two/three', maps to //'one/two/three.js', but we want the directory, 'one/two' for //this normalization. normalizedBaseParts = baseParts.slice(0, baseParts.length - 1); name = normalizedBaseParts.concat(name); } trimDots(name); name = name.join('/'); } //Apply map config if available. if (applyMap && map && (baseParts || starMap)) { nameParts = name.split('/'); outerLoop: for (i = nameParts.length; i > 0; i -= 1) { nameSegment = nameParts.slice(0, i).join('/'); if (baseParts) { //Find the longest baseName segment match in the config. //So, do joins on the biggest to smallest lengths of baseParts. for (j = baseParts.length; j > 0; j -= 1) { mapValue = getOwn(map, baseParts.slice(0, j).join('/')); //baseName segment has config, find if it has one for //this name. if (mapValue) { mapValue = getOwn(mapValue, nameSegment); if (mapValue) { //Match, update name to the new value. foundMap = mapValue; foundI = i; break outerLoop; } } } } //Check for a star map match, but just hold on to it, //if there is a shorter segment match later in a matching //config, then favor over this star map. if (!foundStarMap && starMap && getOwn(starMap, nameSegment)) { foundStarMap = getOwn(starMap, nameSegment); starI = i; } } if (!foundMap && foundStarMap) { foundMap = foundStarMap; foundI = starI; } if (foundMap) { nameParts.splice(0, foundI, foundMap); name = nameParts.join('/'); } } // If the name points to a package's name, use // the package main instead. pkgMain = getOwn(config.pkgs, name); return pkgMain ? pkgMain : name; }
Given a relative module name, like ./something, normalize it to a real name that can be mapped to a path. @param {String} name the relative name @param {String} baseName a real name that the name arg is relative to. @param {Boolean} applyMap apply the map config to the value. Should only be done if this normalization is for a dependency ID. @returns {String} normalized name
normalize
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function removeScript(name) { if (isBrowser) { each(scripts(), function (scriptNode) { if ( scriptNode.getAttribute('data-requiremodule') === name && scriptNode.getAttribute('data-requirecontext') === context.contextName ) { scriptNode.parentNode.removeChild(scriptNode); return true; } }); } }
Given a relative module name, like ./something, normalize it to a real name that can be mapped to a path. @param {String} name the relative name @param {String} baseName a real name that the name arg is relative to. @param {Boolean} applyMap apply the map config to the value. Should only be done if this normalization is for a dependency ID. @returns {String} normalized name
removeScript
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function hasPathFallback(id) { var pathConfig = getOwn(config.paths, id); if (pathConfig && isArray(pathConfig) && pathConfig.length > 1) { //Pop off the first array value, since it failed, and //retry pathConfig.shift(); context.require.undef(id); //Custom require that does not do map translation, since //ID is "absolute", already mapped/resolved. context.makeRequire(null, { skipMap: true, })([id]); return true; } }
Given a relative module name, like ./something, normalize it to a real name that can be mapped to a path. @param {String} name the relative name @param {String} baseName a real name that the name arg is relative to. @param {Boolean} applyMap apply the map config to the value. Should only be done if this normalization is for a dependency ID. @returns {String} normalized name
hasPathFallback
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function splitPrefix(name) { var prefix, index = name ? name.indexOf('!') : -1; if (index > -1) { prefix = name.substring(0, index); name = name.substring(index + 1, name.length); } return [prefix, name]; }
Given a relative module name, like ./something, normalize it to a real name that can be mapped to a path. @param {String} name the relative name @param {String} baseName a real name that the name arg is relative to. @param {Boolean} applyMap apply the map config to the value. Should only be done if this normalization is for a dependency ID. @returns {String} normalized name
splitPrefix
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function makeModuleMap(name, parentModuleMap, isNormalized, applyMap) { var url, pluginModule, suffix, nameParts, prefix = null, parentName = parentModuleMap ? parentModuleMap.name : null, originalName = name, isDefine = true, normalizedName = ''; //If no name, then it means it is a require call, generate an //internal name. if (!name) { isDefine = false; name = '_@r' + (requireCounter += 1); } nameParts = splitPrefix(name); prefix = nameParts[0]; name = nameParts[1]; if (prefix) { prefix = normalize(prefix, parentName, applyMap); pluginModule = getOwn(defined, prefix); } //Account for relative paths if there is a base name. if (name) { if (prefix) { if (isNormalized) { normalizedName = name; } else if (pluginModule && pluginModule.normalize) { //Plugin is loaded, use its normalize method. normalizedName = pluginModule.normalize(name, function (name) { return normalize(name, parentName, applyMap); }); } else { // If nested plugin references, then do not try to // normalize, as it will not normalize correctly. This // places a restriction on resourceIds, and the longer // term solution is not to normalize until plugins are // loaded and all normalizations to allow for async // loading of a loader plugin. But for now, fixes the // common uses. Details in #1131 normalizedName = name.indexOf('!') === -1 ? normalize(name, parentName, applyMap) : name; } } else { //A regular module. normalizedName = normalize(name, parentName, applyMap); //Normalized name may be a plugin ID due to map config //application in normalize. The map config values must //already be normalized, so do not need to redo that part. nameParts = splitPrefix(normalizedName); prefix = nameParts[0]; normalizedName = nameParts[1]; isNormalized = true; url = context.nameToUrl(normalizedName); } } //If the id is a plugin id that cannot be determined if it needs //normalization, stamp it with a unique ID so two matching relative //ids that may conflict can be separate. suffix = prefix && !pluginModule && !isNormalized ? '_unnormalized' + (unnormalizedCounter += 1) : ''; return { prefix: prefix, name: normalizedName, parentMap: parentModuleMap, unnormalized: !!suffix, url: url, originalName: originalName, isDefine: isDefine, id: (prefix ? prefix + '!' + normalizedName : normalizedName) + suffix, }; }
Creates a module mapping that includes plugin prefix, module name, and path. If parentModuleMap is provided it will also normalize the name via require.normalize() @param {String} name the module name @param {String} [parentModuleMap] parent module map for the module name, used to resolve relative names. @param {Boolean} isNormalized: is the ID already normalized. This is true if this call is done for a define() module ID. @param {Boolean} applyMap: apply the map config to the ID. Should only be true if this map is for a dependency. @returns {Object}
makeModuleMap
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function getModule(depMap) { var id = depMap.id, mod = getOwn(registry, id); if (!mod) { mod = registry[id] = new context.Module(depMap); } return mod; }
Creates a module mapping that includes plugin prefix, module name, and path. If parentModuleMap is provided it will also normalize the name via require.normalize() @param {String} name the module name @param {String} [parentModuleMap] parent module map for the module name, used to resolve relative names. @param {Boolean} isNormalized: is the ID already normalized. This is true if this call is done for a define() module ID. @param {Boolean} applyMap: apply the map config to the ID. Should only be true if this map is for a dependency. @returns {Object}
getModule
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function on(depMap, name, fn) { var id = depMap.id, mod = getOwn(registry, id); if (hasProp(defined, id) && (!mod || mod.defineEmitComplete)) { if (name === 'defined') { fn(defined[id]); } } else { mod = getModule(depMap); if (mod.error && name === 'error') { fn(mod.error); } else { mod.on(name, fn); } } }
Creates a module mapping that includes plugin prefix, module name, and path. If parentModuleMap is provided it will also normalize the name via require.normalize() @param {String} name the module name @param {String} [parentModuleMap] parent module map for the module name, used to resolve relative names. @param {Boolean} isNormalized: is the ID already normalized. This is true if this call is done for a define() module ID. @param {Boolean} applyMap: apply the map config to the ID. Should only be true if this map is for a dependency. @returns {Object}
on
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function onError(err, errback) { var ids = err.requireModules, notified = false; if (errback) { errback(err); } else { each(ids, function (id) { var mod = getOwn(registry, id); if (mod) { //Set error on module, so it skips timeout checks. mod.error = err; if (mod.events.error) { notified = true; mod.emit('error', err); } } }); if (!notified) { req.onError(err); } } }
Creates a module mapping that includes plugin prefix, module name, and path. If parentModuleMap is provided it will also normalize the name via require.normalize() @param {String} name the module name @param {String} [parentModuleMap] parent module map for the module name, used to resolve relative names. @param {Boolean} isNormalized: is the ID already normalized. This is true if this call is done for a define() module ID. @param {Boolean} applyMap: apply the map config to the ID. Should only be true if this map is for a dependency. @returns {Object}
onError
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function takeGlobalQueue() { //Push all the globalDefQueue items into the context's defQueue if (globalDefQueue.length) { each(globalDefQueue, function (queueItem) { var id = queueItem[0]; if (typeof id === 'string') { context.defQueueMap[id] = true; } defQueue.push(queueItem); }); globalDefQueue = []; } }
Internal method to transfer globalQueue items to this context's defQueue.
takeGlobalQueue
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function cleanRegistry(id) { //Clean up machinery used for waiting modules. delete registry[id]; delete enabledRegistry[id]; }
Internal method to transfer globalQueue items to this context's defQueue.
cleanRegistry
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function breakCycle(mod, traced, processed) { var id = mod.map.id; if (mod.error) { mod.emit('error', mod.error); } else { traced[id] = true; each(mod.depMaps, function (depMap, i) { var depId = depMap.id, dep = getOwn(registry, depId); //Only force things that have not completed //being defined, so still in the registry, //and only if it has not been matched up //in the module already. if (dep && !mod.depMatched[i] && !processed[depId]) { if (getOwn(traced, depId)) { mod.defineDep(i, defined[depId]); mod.check(); //pass false? } else { breakCycle(dep, traced, processed); } } }); processed[id] = true; } }
Internal method to transfer globalQueue items to this context's defQueue.
breakCycle
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function checkLoaded() { var err, usingPathFallback, waitInterval = config.waitSeconds * 1000, //It is possible to disable the wait interval by using waitSeconds of 0. expired = waitInterval && context.startTime + waitInterval < new Date().getTime(), noLoads = [], reqCalls = [], stillLoading = false, needCycleCheck = true; //Do not bother if this call was a result of a cycle break. if (inCheckLoaded) { return; } inCheckLoaded = true; //Figure out the state of all the modules. eachProp(enabledRegistry, function (mod) { var map = mod.map, modId = map.id; //Skip things that are not enabled or in error state. if (!mod.enabled) { return; } if (!map.isDefine) { reqCalls.push(mod); } if (!mod.error) { //If the module should be executed, and it has not //been inited and time is up, remember it. if (!mod.inited && expired) { if (hasPathFallback(modId)) { usingPathFallback = true; stillLoading = true; } else { noLoads.push(modId); removeScript(modId); } } else if (!mod.inited && mod.fetched && map.isDefine) { stillLoading = true; if (!map.prefix) { //No reason to keep looking for unfinished //loading. If the only stillLoading is a //plugin resource though, keep going, //because it may be that a plugin resource //is waiting on a non-plugin cycle. return (needCycleCheck = false); } } } }); if (expired && noLoads.length) { //If wait time expired, throw error of unloaded modules. err = makeError('timeout', 'Load timeout for modules: ' + noLoads, null, noLoads); err.contextName = context.contextName; return onError(err); } //Not expired, check for a cycle. if (needCycleCheck) { each(reqCalls, function (mod) { breakCycle(mod, {}, {}); }); } //If still waiting on loads, and the waiting load is something //other than a plugin resource, or there are still outstanding //scripts, then just try back later. if ((!expired || usingPathFallback) && stillLoading) { //Something is still waiting to load. Wait for it, but only //if a timeout is not already in effect. if ((isBrowser || isWebWorker) && !checkLoadedTimeoutId) { checkLoadedTimeoutId = setTimeout(function () { checkLoadedTimeoutId = 0; checkLoaded(); }, 50); } } inCheckLoaded = false; }
Internal method to transfer globalQueue items to this context's defQueue.
checkLoaded
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function callGetModule(args) { //Skip modules already defined. if (!hasProp(defined, args[0])) { getModule(makeModuleMap(args[0], null, true)).init(args[1], args[2]); } }
Checks if the module is ready to define itself, and if so, define it.
callGetModule
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function removeListener(node, func, name, ieName) { //Favor detachEvent because of IE9 //issue, see attachEvent/addEventListener comment elsewhere //in this file. if (node.detachEvent && !isOpera) { //Probably IE. If not it will throw an error, which will be //useful to know. if (ieName) { node.detachEvent(ieName, func); } } else { node.removeEventListener(name, func, false); } }
Checks if the module is ready to define itself, and if so, define it.
removeListener
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function getScriptData(evt) { //Using currentTarget instead of target for Firefox 2.0's sake. Not //all old browsers will be supported, but this one was easy enough //to support and still makes sense. var node = evt.currentTarget || evt.srcElement; //Remove the listeners once here. removeListener(node, context.onScriptLoad, 'load', 'onreadystatechange'); removeListener(node, context.onScriptError, 'error'); return { node: node, id: node && node.getAttribute('data-requiremodule'), }; }
Given an event from a script node, get the requirejs info from it, and then removes the event listeners on the node. @param {Event} evt @returns {Object}
getScriptData
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function intakeDefines() { var args; //Any defined modules in the global queue, intake them now. takeGlobalQueue(); //Make sure any remaining defQueue items get properly processed. while (defQueue.length) { args = defQueue.shift(); if (args[0] === null) { return onError(makeError('mismatch', 'Mismatched anonymous define() module: ' + args[args.length - 1])); } else { //args are id, deps, factory. Should be normalized by the //define() function. callGetModule(args); } } context.defQueueMap = {}; }
Given an event from a script node, get the requirejs info from it, and then removes the event listeners on the node. @param {Event} evt @returns {Object}
intakeDefines
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function fn() { var ret; if (value.init) { ret = value.init.apply(global, arguments); } return ret || (value.exports && getGlobal(value.exports)); }
Set a configuration for the context. @param {Object} cfg config object to integrate.
fn
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function localRequire(deps, callback, errback) { var id, map, requireMod; if (options.enableBuildCallback && callback && isFunction(callback)) { callback.__requireJsBuild = true; } if (typeof deps === 'string') { if (isFunction(callback)) { //Invalid call return onError(makeError('requireargs', 'Invalid require call'), errback); } //If require|exports|module are requested, get the //value for them from the special handlers. Caveat: //this only works while module is being defined. if (relMap && hasProp(handlers, deps)) { return handlers[deps](registry[relMap.id]); } //Synchronous access to one module. If require.get is //available (as in the Node adapter), prefer that. if (req.get) { return req.get(context, deps, relMap, localRequire); } //Normalize module name, if it contains . or .. map = makeModuleMap(deps, relMap, false, true); id = map.id; if (!hasProp(defined, id)) { return onError( makeError( 'notloaded', 'Module name "' + id + '" has not been loaded yet for context: ' + contextName + (relMap ? '' : '. Use require([])') ) ); } return defined[id]; } //Grab defines waiting in the global queue. intakeDefines(); //Mark all the dependencies as needing to be loaded. context.nextTick(function () { //Some defines could have been added since the //require call, collect them. intakeDefines(); requireMod = getModule(makeModuleMap(null, relMap)); //Store if map config should be applied to this require //call for dependencies. requireMod.skipMap = options.skipMap; requireMod.init(deps, callback, errback, { enabled: true, }); checkLoaded(); }); return localRequire; }
Set a configuration for the context. @param {Object} cfg config object to integrate.
localRequire
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function getInteractiveScript() { if (interactiveScript && interactiveScript.readyState === 'interactive') { return interactiveScript; } eachReverse(scripts(), function (script) { if (script.readyState === 'interactive') { return (interactiveScript = script); } }); return interactiveScript; }
Does the request to load a module for the browser case. Make this a separate function to allow other environments to override it. @param {Object} context the require context to find state. @param {String} moduleName the name of the module. @param {Object} url the URL to the module.
getInteractiveScript
javascript
cabloy/cabloy
packages/egg-born-front/src/vendors/requirejs/require.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-front/src/vendors/requirejs/require.js
MIT
function tryStringify(arg) { try { return JSON.stringify(arg); } catch (err) { // Populate the circular error message lazily if (!CIRCULAR_ERROR_MESSAGE) { try { const a = {}; a.a = a; JSON.stringify(a); } catch (err) { CIRCULAR_ERROR_MESSAGE = err.message; } } if (err.name === 'TypeError' && err.message === CIRCULAR_ERROR_MESSAGE) { return '[Circular]'; } throw err; } }
based on nodejs util.js https://github.com/koajs/locales/blob/master/index.js
tryStringify
javascript
cabloy/cabloy
packages/egg-born-localeutil/src/main.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-localeutil/src/main.js
MIT
function format(f) { if (arguments.length === 1) return f; let str = ''; let a = 1; let lastPos = 0; for (let i = 0; i < f.length; ) { if (f.charCodeAt(i) === 37 /* '%'*/ && i + 1 < f.length) { if (f.charCodeAt(i + 1) !== 37 /* '%'*/ && a >= arguments.length) { ++i; continue; } switch (f.charCodeAt(i + 1)) { case 100: // 'd' if (lastPos < i) { str += f.slice(lastPos, i); } str += Number(arguments[a++]); break; case 105: // 'i' if (lastPos < i) { str += f.slice(lastPos, i); } str += parseInt(arguments[a++]); break; case 102: // 'f' if (lastPos < i) { str += f.slice(lastPos, i); } str += parseFloat(arguments[a++]); break; case 106: // 'j' if (lastPos < i) { str += f.slice(lastPos, i); } str += tryStringify(arguments[a++]); break; case 115: // 's' if (lastPos < i) { str += f.slice(lastPos, i); } str += String(arguments[a++]); break; case 37: // '%' if (lastPos < i) { str += f.slice(lastPos, i); } str += '%'; break; default: // any other character is not a correct placeholder if (lastPos < i) { str += f.slice(lastPos, i); } str += '%'; lastPos = i = i + 1; continue; } lastPos = i = i + 2; continue; } ++i; } if (lastPos === 0) { str = f; } else if (lastPos < f.length) { str += f.slice(lastPos); } while (a < arguments.length) { const x = arguments[a++]; if (x === null || (typeof x !== 'object' && typeof x !== 'symbol')) { str += ` ${x}`; } else { // str += ` ${inspect(x)}`; } } return str; }
based on nodejs util.js https://github.com/koajs/locales/blob/master/index.js
format
javascript
cabloy/cabloy
packages/egg-born-localeutil/src/main.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-localeutil/src/main.js
MIT
function getText(text, value) { if (arguments.length === 0) return ''; if (!text) return ''; if (arguments.length === 1) { return text; } if (arguments.length === 2) { if (isObject(value)) { return formatWithObject(text, value); } if (Array.isArray(value)) { return formatWithArray(text, value); } return format(text, value); } const args = new Array(arguments.length); args[0] = text; for (let i = 1; i < args.length; i++) { args[i] = arguments[i]; } return format.apply(null, args); }
based on koa-locales https://github.com/koajs/locales/blob/master/index.js
getText
javascript
cabloy/cabloy
packages/egg-born-localeutil/src/main.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-localeutil/src/main.js
MIT
function isObject(obj) { return Object.prototype.toString.call(obj) === '[object Object]'; }
based on koa-locales https://github.com/koajs/locales/blob/master/index.js
isObject
javascript
cabloy/cabloy
packages/egg-born-localeutil/src/main.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-localeutil/src/main.js
MIT
function formatWithArray(text, values) { return text.replace(ARRAY_INDEX_RE, function (orignal, matched) { const index = parseInt(matched); if (index < values.length) { return values[index]; } // not match index, return orignal text return orignal; }); }
based on koa-locales https://github.com/koajs/locales/blob/master/index.js
formatWithArray
javascript
cabloy/cabloy
packages/egg-born-localeutil/src/main.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-localeutil/src/main.js
MIT
function formatWithObject(text, values) { return text.replace(Object_INDEX_RE, function (orignal, matched) { const value = values[matched]; if (value) { return value; } // not match index, return orignal text return orignal; }); }
based on koa-locales https://github.com/koajs/locales/blob/master/index.js
formatWithObject
javascript
cabloy/cabloy
packages/egg-born-localeutil/src/main.js
https://github.com/cabloy/cabloy/blob/master/packages/egg-born-localeutil/src/main.js
MIT
async _renderFile({ fileSrc, fileDest, fileDestAlt, data }) { // site const site = data.site; // language const language = site.language && site.language.current; // src const pathIntermediate = await this.getPathIntermediate(language); const fileName = path.join(pathIntermediate, fileSrc); // dest const pathDist = await this.getPathDist(site, language); const fileWrite = path.join(pathDist, fileDest); // data data._filename = fileName; data._path = fileSrc.replace('.ejs', ''); // env site data.env('site.path', data._path); // destFile for hot load let hotloadFile; if (data.article) { hotloadFile = `atom/${data.article.atomId}`; // update renderAt data.article.renderAt = new Date(this.ctx.bean.util.moment().unix() * 1000); } else { if ((this.app.meta.isTest || this.app.meta.isLocal) && fileDest.indexOf('.html') > -1) { hotloadFile = fileWrite; data.env('site.hotloadFile', hotloadFile); } } // load src let contentSrc = await fse.readFile(fileName); contentSrc = contentSrc ? contentSrc.toString() : ''; // load includes of plugins const pluginIncludes = await this._loadPluginIncludes({ site, language }); contentSrc = `${pluginIncludes}\n${contentSrc}`; // render const options = this.getOptions(); options.filename = fileName; let content = await ejs.render(contentSrc, data, options); content = await this._renderEnvs({ data, content }); content = await this._renderCSSJSes({ data, content }); // write await fse.outputFile(fileWrite, content); // alternative url if (fileDestAlt && fileDestAlt !== fileDest) { const fileWriteAlt = path.join(pathDist, fileDestAlt); await fse.outputFile(fileWriteAlt, content); } // renderAt must be updated after file rendered if (data.article) { // update renderAt await this.ctx.model.query( ` update aCmsArticle set renderAt=? where iid=? and atomId=? `, [data.article.renderAt, this.ctx.instance.id, data.article.atomId] ); } // socketio publish if (hotloadFile) { await this._socketioPublish({ hotloadFile, article: data.article }); } }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_renderFile
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async _socketioPublish({ hotloadFile, article }) { const message = { userIdTo: -1, content: { mtime: new Date(), article, }, }; await this.ctx.bean.io.publish({ path: `/a/cms/hotloadFile/${hotloadFile}`, message, messageClass: { module: 'a-cms', messageClassName: 'hotloadFile', }, }); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_socketioPublish
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
_checkIfPluginEnable({ site, moduleName }) { const config = site.plugins[moduleName]; return !config || !config.disabled; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_checkIfPluginEnable
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async _loadPluginIncludes({ site, language }) { // if exists if (site._pluginIncludes) return site._pluginIncludes; // modulesArray let pluginIncludes = ''; for (const module of this.app.meta.modulesArray) { const plugin = this.ctx.bean.util.getProperty(module, 'package.eggBornModule.cms.plugin'); if (plugin && this._checkIfPluginEnable({ site, moduleName: module.info.relativeName })) { // path intermediate const pathIntermediate = await this.getPathIntermediate(language); let incudeFileName = path.join(pathIntermediate, `plugins/${module.info.relativeName}/include.ejs`); const exists = await fse.pathExists(incudeFileName); if (exists) { incudeFileName = incudeFileName.replace(/\\/g, '\\\\'); pluginIncludes = `${pluginIncludes}<%- await include('${incudeFileName}') %>\n`; } } } // ok site._pluginIncludes = pluginIncludes; return site._pluginIncludes; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_loadPluginIncludes
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async _renderCSSJSes({ data, content }) { data.js('plugins/cms-pluginbase/assets/js/lib/require.min.js'); data.js('plugins/cms-pluginbase/assets/js/lib/regenerator-runtime/runtime.js'); content = await this._renderCSSJS({ data, content, type: 'CSS', items: data._csses }); content = await this._renderCSSJS({ data, content, type: 'JS', items: data._jses }); return content; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_renderCSSJSes
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async _renderCSSJS({ data, content, type, items }) { if (items.length === 0) return content; // site const site = data.site; // cache if (!site._cache) site._cache = {}; if (!site._cache[type]) site._cache[type] = {}; const cacheSha = shajs('sha256').update(items.join(',')).digest('hex'); let urlDest; if (site._cache[type][cacheSha]) { urlDest = site._cache[type][cacheSha]; } else { // combine let result = ''; for (const item of items) { let _content; if (path.extname(item) === '.ejs') { // data data._filename = item; _content = await ejs.renderFile(item, data, this.getOptions()); } else { _content = await fse.readFile(item); _content = _content ? _content.toString() : ''; } // minify if (type === 'CSS') { let _needMinify = false; if (item.indexOf('.less') > -1) { // less const output = await less.render(_content, { filename: item }); _content = output.css; _needMinify = true; } else if (item.indexOf('.min.css') === -1) { // normal _needMinify = true; } if (_needMinify) { // minify const output = new CleanCSS().minify(_content); _content = output.styles; } } else { if (item.indexOf('.min.js') === -1) { _content = babel.transform(_content, { ast: false, babelrc: false, presets: ['@babel/preset-env'], plugins: [], }).code; // not minify for test/dev if (!this.ctx.app.meta.isTest && !this.ctx.app.meta.isLocal) { const output = UglifyJS.minify(_content); if (output.error) throw new Error(`${output.error.name}: ${output.error.message}`); _content = output.code; } } } // append result += _content + '\n'; } // save const sha = shajs('sha256').update(result).digest('hex'); // dest const fileDest = `assets/${type.toLowerCase()}/${sha}.${type.toLowerCase()}`; const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileWrite = path.join(pathDist, fileDest); // write await fse.outputFile(fileWrite, result); // url urlDest = this.getUrl(site, site.language && site.language.current, fileDest); // cache site._cache[type][cacheSha] = urlDest; } // replace const regexp = new RegExp(`__${type}__`); return content.replace(regexp, urlDest); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_renderCSSJS
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async _renderEnvs({ data, content }) { // site const site = data.site; // env const _env = {}; for (const name of Object.keys(data._envs)) { let value; const keys = name.split('.'); for (let index = keys.length - 1; index >= 0; index--) { const key = keys[index]; value = value ? { [key]: value } : { [key]: data._envs[name] }; } this.ctx.bean.util.extend(_env, value); } // combine const env = this.ctx.bean.util.extend(site.front.env, _env); // front.envs if (site.front.envs) { env.envs = site.front.envs; } // article if (data.article) { env.article = this.ctx.bean.util.extend({}, data.article); // delete env.article.summary = undefined; env.article.content = undefined; env.article.html = undefined; } // replace const text = ` <script type="text/javascript"> var env=${JSON.stringify(env, null, 2)}; </script> `; const regexp = new RegExp('__ENV__'); const res = content.replace(regexp, text); // remove article env.article = undefined; // ok return res; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_renderEnvs
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
resolvePath(pathRoot, fileCurrent, fileName) { if (!fileName) return pathRoot; if (fileName.charAt(0) === '.') return path.join(path.dirname(fileCurrent), fileName); // not use path.resolve return path.join(pathRoot, fileName); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
resolvePath
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
getOptions() { return { async: true, cache: true, compileDebug: this.ctx.app.meta.isTest || this.ctx.app.meta.isLocal, outputFunctionName: 'echo', rmWhitespace: true, }; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
getOptions
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
getCurrentLocale({ site }) { return site.language ? site.language.current : this.ctx.app.config.i18n.defaultLocale; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
getCurrentLocale
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
createUtilTime({ site }) { const self = this; const _textLocale = this.getCurrentLocale({ site }); return { now(fmt, locale) { return self.ctx.bean.util.now(fmt, locale || _textLocale); }, today(fmt, locale) { return self.ctx.bean.util.today(fmt, locale || _textLocale); }, formatDateTime(date, fmt, locale) { return self.ctx.bean.util.formatDateTime(date, fmt, locale || _textLocale); }, formatDate(date, sep, locale) { return self.ctx.bean.util.formatDate(date, sep, locale || _textLocale); }, formatTime(date, sep, locale) { return self.ctx.bean.util.formatTime(date, sep, locale || _textLocale); }, }; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
createUtilTime
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
now(fmt, locale) { return self.ctx.bean.util.now(fmt, locale || _textLocale); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
now
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
today(fmt, locale) { return self.ctx.bean.util.today(fmt, locale || _textLocale); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
today
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
formatDateTime(date, fmt, locale) { return self.ctx.bean.util.formatDateTime(date, fmt, locale || _textLocale); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
formatDateTime
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
formatDate(date, sep, locale) { return self.ctx.bean.util.formatDate(date, sep, locale || _textLocale); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
formatDate
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
formatTime(date, sep, locale) { return self.ctx.bean.util.formatTime(date, sep, locale || _textLocale); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
formatTime
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async getData({ site }) { // data const self = this; const _csses = []; const _jses = []; const _envs = {}; let _pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); _pathIntermediate = path.join(_pathIntermediate, '/'); const _textLocale = this.getCurrentLocale({ site }); const time = this.createUtilTime({ site }); return { ctx: self.ctx, site, _csses, _jses, _envs, require(fileName) { const _path = self.resolvePath('', this._filename, fileName); return self.ctx.app.meta.util.requireDynamic(_path); }, url(fileName, language) { if (fileName && (fileName.indexOf('http://') === 0 || fileName.indexOf('https://') === 0)) { return self.ctx.bean.util.escapeURL(fileName); } let _path = self.resolvePath('', path.relative(_pathIntermediate, this._filename), fileName); _path = _path.replace(/\\/gi, '/'); const _url = self.getUrl(site, language || (site.language && site.language.current), _path); return self.ctx.bean.util.escapeURL(_url); }, css(fileName) { _csses.push(self.resolvePath(_pathIntermediate, this._filename, fileName)); }, js(fileName) { _jses.push(self.resolvePath(_pathIntermediate, this._filename, fileName)); }, env(name, value) { _envs[name] = value; }, text(...args) { return self.ctx.text.locale(_textLocale, ...args); }, util: { time, formatDateTime(date) { return this.time.formatDateTime(date, `${site.env.format.date} ${site.env.format.time}`); }, safeHtml(str) { return self.ctx.helper.shtml(str); }, escapeHtml(str) { return self.ctx.bean.util.escapeHtml(str); }, escapeURL(str) { return self.ctx.bean.util.escapeURL(str); }, }, }; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
getData
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
require(fileName) { const _path = self.resolvePath('', this._filename, fileName); return self.ctx.app.meta.util.requireDynamic(_path); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
require
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
url(fileName, language) { if (fileName && (fileName.indexOf('http://') === 0 || fileName.indexOf('https://') === 0)) { return self.ctx.bean.util.escapeURL(fileName); } let _path = self.resolvePath('', path.relative(_pathIntermediate, this._filename), fileName); _path = _path.replace(/\\/gi, '/'); const _url = self.getUrl(site, language || (site.language && site.language.current), _path); return self.ctx.bean.util.escapeURL(_url); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
url
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
css(fileName) { _csses.push(self.resolvePath(_pathIntermediate, this._filename, fileName)); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
css
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
js(fileName) { _jses.push(self.resolvePath(_pathIntermediate, this._filename, fileName)); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
js
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
env(name, value) { _envs[name] = value; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
env
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
text(...args) { return self.ctx.text.locale(_textLocale, ...args); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
text
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
formatDateTime(date) { return this.time.formatDateTime(date, `${site.env.format.date} ${site.env.format.time}`); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
formatDateTime
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
safeHtml(str) { return self.ctx.helper.shtml(str); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
safeHtml
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
escapeHtml(str) { return self.ctx.bean.util.escapeHtml(str); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
escapeHtml
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
escapeURL(str) { return self.ctx.bean.util.escapeURL(str); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
escapeURL
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async buildLanguages({ progressId, progressNo = 0 }) { try { // time start const timeStart = new Date(); // site const site = await this.combineSiteBase(); const languages = site.language ? site.language.items.split(',') : [null]; // progress const progress0_Total = languages.length; let progress0_progress = 0; for (const language of languages) { // progress: language if (progressId) { await this.ctx.bean.progress.update({ progressId, progressNo, total: progress0_Total, progress: progress0_progress++, text: site.language ? `${this.ctx.text('Build')} ${this.ctx.text(language)}` : this.ctx.text('Build'), }); } // build await this.buildLanguage({ language, progressId, progressNo: progressNo + 1 }); } // time end const timeEnd = new Date(); const time = (timeEnd.valueOf() - timeStart.valueOf()) / 1000; // second // progress: done if (progressId) { if (progressNo === 0) { await this.ctx.bean.progress.done({ progressId, message: `${this.ctx.text('Time Used')}: ${parseInt(time)}${this.ctx.text('second2')}`, }); } } // ok return { time, }; } catch (err) { // error if (progressId) { if (progressNo === 0) { await this.ctx.bean.progress.error({ progressId, message: err.message }); } } throw err; } }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
buildLanguages
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async buildLanguage({ language, progressId, progressNo = 0 }) { try { // time start const timeStart = new Date(); // progress const progress0_Total = 2; let progress0_progress = 0; // progress: initialize if (progressId) { await this.ctx.bean.progress.update({ progressId, progressNo, total: progress0_Total, progress: progress0_progress++, text: this.ctx.text('Initialize'), }); } // site const site = await this.getSite({ language }); // / clear // intermediate const pathIntermediate = await this.getPathIntermediate(language); await fse.remove(pathIntermediate); // dist const pathDist = await this.getPathDist(site, language); // solution: 1 // const distPaths = [ 'articles', 'assets', 'plugins', 'static', 'index.html', 'robots.txt', 'sitemap.xml', 'sitemapindex.xml' ]; // for (const item of distPaths) { // await fse.remove(path.join(pathDist, item)); // } // solution: 2 const distFiles = await eggBornUtils.tools.globbyAsync(`${pathDist}/*`, { onlyFiles: false }); const languages = site.language ? site.language.items.split(',') : null; for (const item of distFiles) { if (!site.language || languages.indexOf(path.basename(item)) === -1) { await fse.remove(item); } } // / copy files to intermediate // / plugins<theme<custom // plugins for (const relativeName in this.app.meta.modules) { const module = this.app.meta.modules[relativeName]; const plugin = this.ctx.bean.util.getProperty(module, 'package.eggBornModule.cms.plugin'); if (plugin) { const pluginPath = path.join(module.root, 'backend/cms/plugin'); const pluginFiles = await eggBornUtils.tools.globbyAsync(`${pluginPath}/*`, { onlyFiles: false }); for (const item of pluginFiles) { await fse.copy(item, path.join(pathIntermediate, 'plugins', relativeName, path.basename(item))); } } } // theme const __themeName = this._getThemeName({ site, language }); const themeName = __themeName.themeName; language = __themeName.language; await this.copyThemes(pathIntermediate, themeName); // custom const customPath = await this.getPathCustom(language); const customFiles = await eggBornUtils.tools.globbyAsync(`${customPath}/*`, { onlyFiles: false }); for (const item of customFiles) { await fse.copy(item, path.join(pathIntermediate, path.basename(item))); } // intermediate dist const intermediateDistFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/dist/*`, { onlyFiles: false, }); for (const item of intermediateDistFiles) { await fse.copy(item, path.join(pathDist, path.basename(item))); } // / copy files to dist (ignore .ejs) // / assets plugins/[plugin]/assets for (const dir of ['assets', 'plugins']) { if (dir === 'assets') { // assets const _filename = path.join(pathIntermediate, 'assets'); const exists = await fse.pathExists(_filename); if (exists) { await fse.copy(_filename, path.join(pathDist, 'assets')); } } else { // plugins const pluginsFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/plugins/*`, { onlyDirectories: true, }); for (const item of pluginsFiles) { const _filename = `${item}/assets`; const exists = await fse.pathExists(_filename); if (exists) { await fse.copy(_filename, path.join(pathDist, 'plugins', path.basename(item), 'assets')); } } } // delete ejs files const ejsFiles = await eggBornUtils.tools.globbyAsync(`${pathDist}/${dir}/**/*.ejs`); for (const item of ejsFiles) { await fse.remove(item); } } // / robots.txt await this.createRobots({ site }); // / sitemapIndex await this.createSitemapIndex({ site }); // progress: render files if (progressId) { await this.ctx.bean.progress.update({ progressId, progressNo, total: progress0_Total, progress: progress0_progress++, text: this.ctx.text('Render Files'), }); } // render all files await this.renderAllFiles({ language, progressId, progressNo: progressNo + 1 }); // time end const timeEnd = new Date(); const time = (timeEnd.valueOf() - timeStart.valueOf()) / 1000; // second // progress: done if (progressId) { if (progressNo === 0) { await this.ctx.bean.progress.done({ progressId, message: `${this.ctx.text('Time Used')}: ${parseInt(time)}${this.ctx.text('second2')}`, }); } } // ok return { time, }; } catch (err) { // error if (progressId) { if (progressNo === 0) { await this.ctx.bean.progress.error({ progressId, message: err.message }); } } throw err; } }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
buildLanguage
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async registerWatchers() { // info const watcherInfos = []; // site const site = await this.combineSiteBase(); const languages = site.language ? site.language.items.split(',') : [null]; // loop languages for (const language of languages) { // info const watcherInfo = await this._collectWatcher({ language }); watcherInfos.push(watcherInfo); } // register this.app.meta['a-cms:watcher'].registerLanguages({ info: { subdomain: this.ctx.subdomain, atomClass: this.atomClass, }, watcherInfos, }); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
registerWatchers
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async registerWatcher({ language }) { // info const watcherInfo = await this._collectWatcher({ language }); // register this.app.meta['a-cms:watcher'].register(watcherInfo); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
registerWatcher
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async _collectWatcher({ language }) { // site const site = await this.getSite({ language }); // watcher site._watchers = []; // / files // / plugins<theme<custom // plugins for (const relativeName in this.app.meta.modules) { const module = this.app.meta.modules[relativeName]; const plugin = this.ctx.bean.util.getProperty(module, 'package.eggBornModule.cms.plugin'); if (!module.info.public && plugin) { site._watchers.push(path.join(module.root, 'backend/cms')); // site._watchers.push(path.join(module.root, 'backend/src')); } } // theme const __themeName = this._getThemeName({ site, language }); const themeName = __themeName.themeName; language = __themeName.language; this.watcherThemes(site, themeName); // custom const customPath = await this.getPathCustom(language); site._watchers.push(customPath); // watcherInfo return { subdomain: this.ctx.subdomain, atomClass: this.atomClass, language, watchers: site._watchers, }; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_collectWatcher
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async createSitemapIndex({ site }) { // content const urlRawRoot = this.getUrlRawRoot(site); let items = ''; const languages = site.language ? site.language.items.split(',') : [null]; for (const language of languages) { items += ` <sitemap> <loc>${urlRawRoot}${!site.language || language === site.language.default ? '' : '/' + language}/sitemap.xml</loc> </sitemap> `; } const content = `<?xml version="1.0" encoding="UTF-8"?> <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> ${items}</sitemapindex>`; // write const pathRawDist = await this.getPathRawDist(site); await fse.outputFile(`${pathRawDist}/sitemapindex.xml`, content); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
createSitemapIndex
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async createRobots({ site }) { // content const urlRawRoot = this.getUrlRawRoot(site); const content = `User-agent: * Allow: / Sitemap: ${urlRawRoot}/sitemapindex.xml `; // write const pathRawDist = await this.getPathRawDist(site); await fse.outputFile(`${pathRawDist}/robots.txt`, content); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
createRobots
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async copyThemes(pathIntermediate, themeModuleName) { await this._copyThemes(pathIntermediate, themeModuleName); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
copyThemes
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async _copyThemes(pathIntermediate, themeModuleName) { // module const module = this.app.meta.modules[themeModuleName]; if (!module) this.ctx.throw.module(moduleInfo.relativeName, 1003, themeModuleName); // extend const moduleExtend = this.ctx.bean.util.getProperty(module, 'package.eggBornModule.cms.extend'); if (moduleExtend) { await this._copyThemes(pathIntermediate, moduleExtend); } // current const themePath = path.join(module.root, 'backend/cms/theme'); const themeFiles = await eggBornUtils.tools.globbyAsync(`${themePath}/*`, { onlyFiles: false }); for (const item of themeFiles) { await fse.copy(item, path.join(pathIntermediate, path.basename(item))); } }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_copyThemes
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
watcherThemes(site, themeModuleName) { this._watcherThemes(site, themeModuleName); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
watcherThemes
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
_watcherThemes(site, themeModuleName) { // module const module = this.app.meta.modules[themeModuleName]; if (!module) this.ctx.throw.module(moduleInfo.relativeName, 1003, themeModuleName); // extend const moduleExtend = this.ctx.bean.util.getProperty(module, 'package.eggBornModule.cms.extend'); if (moduleExtend) { this._watcherThemes(site, moduleExtend); } // current if (!module.info.public) { site._watchers.push(path.join(module.root, 'backend/cms')); // site._watchers.push(path.join(module.root, 'backend/src')); } }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_watcherThemes
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async _checkIfSiteBuilt({ site, force }) { // check if build site first const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const fileName = path.join(pathIntermediate, 'main/article.ejs'); const exists = await fse.pathExists(fileName); if (exists || !force) return exists; // force build const build = this.ctx.bean.cms.build({ atomClass: site.atomClass }); await build.buildLanguage({ language: site.language && site.language.current }); return true; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_checkIfSiteBuilt
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async getArticleUrl({ key, options }) { // options const returnPhysicalPath = options && options.returnPhysicalPath; const returnWaitingPath = options && options.returnWaitingPath; // article const article = await this.ctx.bean.cms.render.getArticle({ key, inner: true }); if (!article) this.ctx.throw.module('a-base', 1002); if (!article.url) return null; // not throw error // articleUrl let articleUrl = article.url; // site const site = await this.getSite({ language: article.atomLanguage }); // check if build site first const siteBuilt = await this._checkIfSiteBuilt({ site, force: false }); if (!siteBuilt) this.ctx.throw.module(moduleInfo.relativeName, 1006); // fileName const pathDist = await this.getPathDist(site, article.atomLanguage); const fileName = path.join(pathDist, articleUrl); const exists = await fse.pathExists(fileName); if (!exists && !returnWaitingPath) { return null; // not throw error } if (!exists && returnWaitingPath) { // force to post a render task: special for draft and private articles const inner = article.atomStage === 0; await this.ctx.bean.cms.render._renderArticlePush({ atomClass: this.atomClass, key: { atomId: article.atomId }, inner, }); // waiting path articleUrl = `static/waiting.html?atomId=${article.atomId}`; } // ok const url = this.getUrl(site, site.language && site.language.current, articleUrl); const res = { relativeUrl: articleUrl, url, }; if (returnPhysicalPath) { res.physicalPath = fileName; } return res; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
getArticleUrl
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
getAtomClassFullName(atomClass) { return `${atomClass.module}:${atomClass.atomClassName}`; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
getAtomClassFullName
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async getFrontEnvs({ language }) { const envs = {}; for (const module of this.ctx.app.meta.modulesArray) { // may be more atoms const atoms = this.ctx.bean.util.getProperty(module, 'main.meta.base.atoms'); if (!atoms) continue; for (const key in atoms) { if (atoms[key].info.cms !== true) continue; // atomClass const atomClass = { module: module.info.relativeName, atomClassName: key, }; const atomClassFullName = this.getAtomClassFullName(atomClass); if (this.getAtomClassFullName(this.atomClass) !== atomClassFullName) { // getSite let site; try { site = await this.ctx.bean.cms.site.getSite({ atomClass, language, options: { envs: false, }, }); } catch (e) { // nothing } // set if (site) { envs[atomClassFullName] = site.front.env; } } } } return envs; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
getFrontEnvs
javascript
cabloy/cabloy
src/module-system/a-cms/backend/src/bean/local.build.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/backend/src/bean/local.build.js
MIT
async _renderFile({ fileSrc, fileDest, fileDestAlt, data }) { // site const site = data.site; // language const language = site.language && site.language.current; // src const pathIntermediate = await this.getPathIntermediate(language); const fileName = path.join(pathIntermediate, fileSrc); // dest const pathDist = await this.getPathDist(site, language); const fileWrite = path.join(pathDist, fileDest); // data data._filename = fileName; data._path = fileSrc.replace('.ejs', ''); // env site data.env('site.path', data._path); // destFile for hot load let hotloadFile; if (data.article) { hotloadFile = `atom/${data.article.atomId}`; // update renderAt data.article.renderAt = new Date(this.ctx.bean.util.moment().unix() * 1000); } else { if ((this.app.meta.isTest || this.app.meta.isLocal) && fileDest.indexOf('.html') > -1) { hotloadFile = fileWrite; data.env('site.hotloadFile', hotloadFile); } } // load src let contentSrc = await fse.readFile(fileName); contentSrc = contentSrc ? contentSrc.toString() : ''; // load includes of plugins const pluginIncludes = await this._loadPluginIncludes({ site, language }); contentSrc = `${pluginIncludes}\n${contentSrc}`; // render const options = this.getOptions(); options.filename = fileName; let content = await ejs.render(contentSrc, data, options); content = await this._renderEnvs({ data, content }); content = await this._renderCSSJSes({ data, content }); // write await fse.outputFile(fileWrite, content); // alternative url if (fileDestAlt && fileDestAlt !== fileDest) { const fileWriteAlt = path.join(pathDist, fileDestAlt); await fse.outputFile(fileWriteAlt, content); } // renderAt must be updated after file rendered if (data.article) { // update renderAt await this.ctx.model.query( ` update aCmsArticle set renderAt=? where iid=? and atomId=? `, [data.article.renderAt, this.ctx.instance.id, data.article.atomId] ); } // socketio publish if (hotloadFile) { await this._socketioPublish({ hotloadFile, article: data.article }); } }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_renderFile
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
async _socketioPublish({ hotloadFile, article }) { const message = { userIdTo: -1, content: { mtime: new Date(), article, }, }; await this.ctx.bean.io.publish({ path: `/a/cms/hotloadFile/${hotloadFile}`, message, messageClass: { module: 'a-cms', messageClassName: 'hotloadFile', }, }); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_socketioPublish
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
_checkIfPluginEnable({ site, moduleName }) { const config = site.plugins[moduleName]; return !config || !config.disabled; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_checkIfPluginEnable
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
async _loadPluginIncludes({ site, language }) { // if exists if (site._pluginIncludes) return site._pluginIncludes; // modulesArray let pluginIncludes = ''; for (const module of this.app.meta.modulesArray) { const plugin = this.ctx.bean.util.getProperty(module, 'package.eggBornModule.cms.plugin'); if (plugin && this._checkIfPluginEnable({ site, moduleName: module.info.relativeName })) { // path intermediate const pathIntermediate = await this.getPathIntermediate(language); let incudeFileName = path.join(pathIntermediate, `plugins/${module.info.relativeName}/include.ejs`); const exists = await fse.pathExists(incudeFileName); if (exists) { incudeFileName = incudeFileName.replace(/\\/g, '\\\\'); pluginIncludes = `${pluginIncludes}<%- await include('${incudeFileName}') %>\n`; } } } // ok site._pluginIncludes = pluginIncludes; return site._pluginIncludes; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_loadPluginIncludes
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
async _renderCSSJSes({ data, content }) { data.js('plugins/cms-pluginbase/assets/js/lib/require.min.js'); data.js('plugins/cms-pluginbase/assets/js/lib/regenerator-runtime/runtime.js'); content = await this._renderCSSJS({ data, content, type: 'CSS', items: data._csses }); content = await this._renderCSSJS({ data, content, type: 'JS', items: data._jses }); return content; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_renderCSSJSes
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
async _renderCSSJS({ data, content, type, items }) { if (items.length === 0) return content; // site const site = data.site; // cache if (!site._cache) site._cache = {}; if (!site._cache[type]) site._cache[type] = {}; const cacheSha = shajs('sha256').update(items.join(',')).digest('hex'); let urlDest; if (site._cache[type][cacheSha]) { urlDest = site._cache[type][cacheSha]; } else { // combine let result = ''; for (const item of items) { let _content; if (path.extname(item) === '.ejs') { // data data._filename = item; _content = await ejs.renderFile(item, data, this.getOptions()); } else { _content = await fse.readFile(item); _content = _content ? _content.toString() : ''; } // minify if (type === 'CSS') { let _needMinify = false; if (item.indexOf('.less') > -1) { // less const output = await less.render(_content, { filename: item }); _content = output.css; _needMinify = true; } else if (item.indexOf('.min.css') === -1) { // normal _needMinify = true; } if (_needMinify) { // minify const output = new CleanCSS().minify(_content); _content = output.styles; } } else { if (item.indexOf('.min.js') === -1) { _content = babel.transform(_content, { ast: false, babelrc: false, presets: ['@babel/preset-env'], plugins: [], }).code; // not minify for test/dev if (!this.ctx.app.meta.isTest && !this.ctx.app.meta.isLocal) { const output = UglifyJS.minify(_content); if (output.error) throw new Error(`${output.error.name}: ${output.error.message}`); _content = output.code; } } } // append result += _content + '\n'; } // save const sha = shajs('sha256').update(result).digest('hex'); // dest const fileDest = `assets/${type.toLowerCase()}/${sha}.${type.toLowerCase()}`; const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileWrite = path.join(pathDist, fileDest); // write await fse.outputFile(fileWrite, result); // url urlDest = this.getUrl(site, site.language && site.language.current, fileDest); // cache site._cache[type][cacheSha] = urlDest; } // replace const regexp = new RegExp(`__${type}__`); return content.replace(regexp, urlDest); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_renderCSSJS
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
async _renderEnvs({ data, content }) { // site const site = data.site; // env const _env = {}; for (const name of Object.keys(data._envs)) { let value; const keys = name.split('.'); for (let index = keys.length - 1; index >= 0; index--) { const key = keys[index]; value = value ? { [key]: value } : { [key]: data._envs[name] }; } this.ctx.bean.util.extend(_env, value); } // combine const env = this.ctx.bean.util.extend(site.front.env, _env); // front.envs if (site.front.envs) { env.envs = site.front.envs; } // article if (data.article) { env.article = this.ctx.bean.util.extend({}, data.article); // delete env.article.summary = undefined; env.article.content = undefined; env.article.html = undefined; } // replace const text = ` <script type="text/javascript"> var env=${JSON.stringify(env, null, 2)}; </script> `; const regexp = new RegExp('__ENV__'); const res = content.replace(regexp, text); // remove article env.article = undefined; // ok return res; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
_renderEnvs
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
resolvePath(pathRoot, fileCurrent, fileName) { if (!fileName) return pathRoot; if (fileName.charAt(0) === '.') return path.join(path.dirname(fileCurrent), fileName); // not use path.resolve return path.join(pathRoot, fileName); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
resolvePath
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
getOptions() { return { async: true, cache: true, compileDebug: this.ctx.app.meta.isTest || this.ctx.app.meta.isLocal, outputFunctionName: 'echo', rmWhitespace: true, }; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
getOptions
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
getCurrentLocale({ site }) { return site.language ? site.language.current : this.ctx.app.config.i18n.defaultLocale; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
getCurrentLocale
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
createUtilTime({ site }) { const self = this; const _textLocale = this.getCurrentLocale({ site }); return { now(fmt, locale) { return self.ctx.bean.util.now(fmt, locale || _textLocale); }, today(fmt, locale) { return self.ctx.bean.util.today(fmt, locale || _textLocale); }, formatDateTime(date, fmt, locale) { return self.ctx.bean.util.formatDateTime(date, fmt, locale || _textLocale); }, formatDate(date, sep, locale) { return self.ctx.bean.util.formatDate(date, sep, locale || _textLocale); }, formatTime(date, sep, locale) { return self.ctx.bean.util.formatTime(date, sep, locale || _textLocale); }, }; }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
createUtilTime
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
now(fmt, locale) { return self.ctx.bean.util.now(fmt, locale || _textLocale); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
now
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
today(fmt, locale) { return self.ctx.bean.util.today(fmt, locale || _textLocale); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
today
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
formatDateTime(date, fmt, locale) { return self.ctx.bean.util.formatDateTime(date, fmt, locale || _textLocale); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
formatDateTime
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT
formatDate(date, sep, locale) { return self.ctx.bean.util.formatDate(date, sep, locale || _textLocale); }
/*.ejs`); for (const item of indexFiles) { // data const data = await this.getData({ site }); // path const _fileSrc = item.substr(pathIntermediate.length + 1); let _fileDest = _fileSrc.substr('main/index/'.length).replace('.ejs', ''); if (_fileDest.indexOf('.') === -1) { _fileDest = `${_fileDest}.html`; } await this._renderFile({ fileSrc: _fileSrc, fileDest: _fileDest, data, }); } } async _writeSitemaps({ site, articles }) { // xml let xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> `; for (const article of articles) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); xml += ` <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> `; } xml += '</urlset>'; // save const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); await fse.writeFile(fileName, xml); } async _writeSitemap({ site, article }) { const loc = this.getUrl(site, site.language && site.language.current, article.url); const lastmod = moment(article.updatedAt).format(); // load const pathDist = await this.getPathDist(site, site.language && site.language.current); const fileName = path.join(pathDist, 'sitemap.xml'); let xml; const exists = await fse.pathExists(fileName); if (!exists) { xml = `<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url> </urlset>`; } else { xml = await fse.readFile(fileName); xml = xml.toString(); // remove const regexp = new RegExp(` {2}<url>\\s+<loc>[^<]*${article.url}[^<]*</loc>[\\s\\S]*?</url>[\\r\\n]`); xml = xml.replace(regexp, ''); // append xml = xml.replace( '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">', `<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>${loc}</loc> <lastmod>${lastmod}</lastmod> </url>` ); } // save await fse.writeFile(fileName, xml); } async _renderStatic({ site }) { // static const pathIntermediate = await this.getPathIntermediate(site.language && site.language.current); const staticFiles = await eggBornUtils.tools.globbyAsync(`${pathIntermediate}/static/*
formatDate
javascript
cabloy/cabloy
src/module-system/a-cms/dist/backend.js
https://github.com/cabloy/cabloy/blob/master/src/module-system/a-cms/dist/backend.js
MIT