total.js
Version:
MVC framework for Node.js
2,023 lines (1,638 loc) • 82.4 kB
JavaScript
// Copyright 2012-2020 (c) Peter Širka <petersirka@gmail.com>
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to permit
// persons to whom the Software is furnished to do so, subject to the
// following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
/**
* @module FrameworkInternal
* @version 3.4.3
*/
'use strict';
const Crypto = require('crypto');
const Fs = require('fs');
const ReadStream = Fs.ReadStream;
const Stream = require('stream');
const ENCODING = 'utf8';
const EMPTYARRAY = [];
const EMPTYOBJECT = {};
const CONCAT = [null, null];
if (!global.framework_utils)
global.framework_utils = require('./utils');
Object.freeze(EMPTYOBJECT);
Object.freeze(EMPTYARRAY);
const REG_1 = /[\n\r\t]+/g;
const REG_2 = /\s{2,}/g;
const REG_4 = /\n\s{2,}./g;
const REG_5 = />\n\s{1,}</g;
const REG_6 = /[<\w"\u0080-\u07ff\u0400-\u04FF]+\s{2,}[\w\u0080-\u07ff\u0400-\u04FF>]+/;
const REG_7 = /\\/g;
const REG_8 = /'/g;
const REG_9 = />\n\s+/g;
const REG_10 = /(\w|\W)\n\s+</g;
const REG_WIN = /\r/g;
const REG_BLOCK_BEG = /@\{block.*?\}/i;
const REG_BLOCK_END = /@\{end\}/i;
const REG_SKIP_1 = /\('|"/;
const REG_SKIP_2 = /,(\s)?\w+/;
const REG_COMPONENTS_GROUP = /('|")[a-z0-9_]+('|")/i;
const HTTPVERBS = { 'get': true, 'post': true, 'options': true, 'put': true, 'delete': true, 'patch': true, 'upload': true, 'head': true, 'trace': true, 'propfind': true };
const RENDERNOW = ['self.$import(', 'self.route', 'self.$js(', 'self.$css(', 'self.$favicon(', 'self.$script(', '$STRING(self.resource(', '$STRING(RESOURCE(', 'self.translate(', 'language', 'self.sitemap_url(', 'self.sitemap_name(', '$STRING(CONFIG(', '$STRING(config.', '$STRING(config[', '$STRING(CONF.', '$STRING(CONF[', '$STRING(config('];
const REG_NOTRANSLATE = /@\{notranslate\}/gi;
const REG_NOCOMPRESS = /@\{nocompress\s\w+}/gi;
const REG_TAGREMOVE = /[^>](\r)\n\s{1,}$/;
const REG_HELPERS = /helpers\.[a-z0-9A-Z_$]+\(.*?\)+/g;
const REG_SITEMAP = /\s+(sitemap_navigation\(|sitemap\()+/g;
const REG_CSS_0 = /\s{2,}|\t/g;
const REG_CSS_1 = /\n/g;
const REG_CSS_2 = /\s?\{\s{1,}/g;
const REG_CSS_3 = /\s?\}\s{1,}/g;
const REG_CSS_4 = /\s?:\s{1,}/g;
const REG_CSS_5 = /\s?;\s{1,}/g;
const REG_CSS_6 = /,\s{1,}/g;
const REG_CSS_7 = /\s\}/g;
const REG_CSS_8 = /\s\{/g;
const REG_CSS_9 = /;\}/g;
const REG_CSS_10 = /\$[a-z0-9-_]+(\s)*:.*?;/gi;
const REG_CSS_11 = /\$.*?(\s|;|\}|!)/gi;
const REG_CSS_12 = /(margin|padding):.*?(;|})/g;
const REG_CSS_13 = /#(0{6}|1{6}|2{6}|3{6}|4{6}|5{6}|6{6}|7{6}|8{6}|9{6}|0{6}|A{6}|B{6}|C{6}|D{6}|E{6}|F{6})/gi;
const REG_VIEW_PART = /\/\*PART.*?\*\//g;
const AUTOVENDOR = ['filter', 'appearance', 'column-count', 'column-gap', 'column-rule', 'display', 'transform', 'transform-style', 'transform-origin', 'transition', 'user-select', 'animation', 'perspective', 'animation-name', 'animation-duration', 'animation-timing-function', 'animation-delay', 'animation-iteration-count', 'animation-direction', 'animation-play-state', 'opacity', 'background', 'background-image', 'font-smoothing', 'text-size-adjust', 'backface-visibility', 'box-sizing', 'overflow-scrolling'];
const WRITESTREAM = { flags: 'w' };
const ALLOWEDMARKUP = { G: 1, M: 1, R: 1, repository: 1, model: 1, CONF: 1, config: 1, global: 1, resource: 1, RESOURCE: 1, CONFIG: 1, author: 1, root: 1, functions: 1, NOW: 1, F: 1 };
var INDEXFILE = 0;
global.$STRING = function(value) {
return value != null ? value.toString() : '';
};
global.$VIEWCACHE = [];
global.$VIEWASYNC = 0;
exports.parseMULTIPART = function(req, contentType, route, tmpDirectory) {
var beg = contentType.indexOf('boundary=');
if (beg === -1) {
F.reqstats(false, false);
F.stats.request.error400++;
req.res.writeHead(400);
req.res.end();
return;
}
var end = contentType.length;
for (var i = (beg + 10); i < end; i++) {
if (contentType[i] === ';' || contentType[i] === ' ') {
end = i;
break;
}
}
var boundary = contentType.substring(beg + 9, end);
// For unexpected closing
req.once('close', () => !req.$upload && req.clear());
var parser = new MultipartParser();
var size = 0;
var maximumSize = route.length;
var close = 0;
var stream;
var tmp;
var rm;
var fn_close = function() {
close--;
};
// Replaces the EMPTYARRAY and EMPTYOBJECT in index.js
req.files = [];
req.body = {};
var path = framework_utils.combine(tmpDirectory, (F.id ? 'i-' + F.id + '_' : '') + 'uploadedfile-');
req.buffer_exceeded = false;
req.buffer_has = true;
req.buffer_parser = parser;
parser.initWithBoundary(boundary);
parser.onPartBegin = function() {
if (req.buffer_exceeded)
return;
// Temporary data
tmp = new HttpFile();
tmp.$data = Buffer.alloc(0);
tmp.$step = 0;
tmp.$is = false;
tmp.length = 0;
};
parser.onHeaderValue = function(buffer, start, end) {
if (req.buffer_exceeded)
return;
var header = buffer.slice(start, end).toString(ENCODING);
if (tmp.$step === 1) {
var index = header.indexOf(';');
if (index === -1)
tmp.type = header.trim();
else
tmp.type = header.substring(0, index).trim();
tmp.$step = 2;
return;
}
if (tmp.$step !== 0)
return;
// UNKNOWN ERROR, maybe attack
if (header.indexOf('form-data; ') === -1) {
req.buffer_exceeded = true;
!tmp.$is && destroyStream(stream);
return;
}
header = parse_multipart_header(header);
tmp.$step = 1;
tmp.$is = header[1] !== null;
tmp.name = header[0];
if (!tmp.$is) {
destroyStream(stream);
return;
}
tmp.filename = header[1];
// IE9 sends absolute filename
var index = tmp.filename.lastIndexOf('\\');
// For Unix like senders
if (index === -1)
index = tmp.filename.lastIndexOf('/');
if (index !== -1)
tmp.filename = tmp.filename.substring(index + 1);
tmp.path = path + (INDEXFILE++) + '.bin';
};
parser.onPartData = function(buffer, start, end) {
if (req.buffer_exceeded)
return;
var data = buffer.slice(start, end);
var length = data.length;
size += length;
if (size >= maximumSize) {
req.buffer_exceeded = true;
if (rm)
rm.push(tmp.path);
else
rm = [tmp.path];
return;
}
if (!tmp.$is) {
CONCAT[0] = tmp.$data;
CONCAT[1] = data;
tmp.$data = Buffer.concat(CONCAT);
return;
}
if (tmp.length) {
stream.write(data);
tmp.length += length;
return;
}
var wh = null;
switch (tmp.type) {
case 'image/jpeg':
wh = framework_image.measureJPG(buffer.slice(start));
break;
case 'image/gif':
wh = framework_image.measureGIF(data);
break;
case 'image/png':
wh = framework_image.measurePNG(data);
break;
case 'image/svg+xml':
wh = framework_image.measureSVG(data);
break;
}
if (wh) {
tmp.width = wh.width;
tmp.height = wh.height;
} else {
tmp.width = 0;
tmp.height = 0;
}
req.files.push(tmp);
F.$events['upload-begin'] && EMIT('upload-begin', req, tmp);
F.$events.upload_begin && EMIT('upload_begin', req, tmp);
close++;
stream = Fs.createWriteStream(tmp.path, WRITESTREAM);
stream.once('close', fn_close);
stream.once('error', fn_close);
stream.write(data);
tmp.length += length;
};
parser.onPartEnd = function() {
if (stream) {
stream.end();
stream = null;
}
if (req.buffer_exceeded)
return;
if (tmp == null)
return;
if (tmp.$is) {
tmp.$data = undefined;
tmp.$is = undefined;
tmp.$step = undefined;
F.$events['upload-end'] && F.emit('upload-end', req, tmp);
F.$events.upload_end && F.emit('upload_end', req, tmp);
return;
}
tmp.$data = tmp.$data.toString(ENCODING);
var temporary = req.body[tmp.name];
if (temporary === undefined) {
req.body[tmp.name] = tmp.$data;
} else if (temporary instanceof Array) {
req.body[tmp.name].push(tmp.$data);
} else {
temporary = [temporary];
temporary.push(tmp.$data);
req.body[tmp.name] = temporary;
}
};
parser.onEnd = function() {
if (close) {
setImmediate(parser.onEnd);
} else {
rm && F.unlink(rm);
req.$total_end2();
}
};
req.on('data', uploadparser);
req.on('end', uploadparser_done);
};
function uploadparser(chunk) {
this.buffer_parser.write(chunk);
}
function uploadparser_done() {
!this.buffer_exceeded && (this.$upload = true);
this.buffer_parser.end();
}
function parse_multipart_header(header) {
var arr = new Array(2);
var find = ' name="';
var length = find.length;
var beg = header.indexOf(find);
var tmp = '';
if (beg !== -1)
tmp = header.substring(beg + length, header.indexOf('"', beg + length));
if (tmp)
arr[0] = tmp;
else
arr[0] = 'undefined_' + (Math.floor(Math.random() * 100000)).toString();
find = ' filename="';
length = find.length;
beg = header.indexOf(find);
tmp = '';
if (beg !== -1)
tmp = header.substring(beg + length, header.indexOf('"', beg + length));
if (tmp)
arr[1] = tmp;
else
arr[1] = null;
return arr;
}
exports.routeSplit = function(url, noLower) {
var arr;
if (!noLower) {
arr = F.temporary.other[url];
if (arr)
return arr;
}
if (!url || url === '/') {
arr = ['/'];
return arr;
}
var prev = false;
var key = '';
var count = 0;
arr = [];
for (var i = 0, length = url.length; i < length; i++) {
var c = url[i];
if (c === '/') {
if (key && !prev) {
arr.push(key);
count++;
key = '';
}
continue;
}
key += noLower ? c : c.toLowerCase();
prev = c === '/';
}
if (key)
arr.push(key);
else if (!count)
arr.push('/');
return arr;
};
exports.routeSplitCreate = function(url, noLower) {
if (!noLower)
url = url.toLowerCase();
if (url[0] === '/')
url = url.substring(1);
if (url[url.length - 1] === '/')
url = url.substring(0, url.length - 1);
var count = 0;
var end = 0;
var arr = [];
for (var i = 0, length = url.length; i < length; i++) {
switch (url[i]) {
case '/':
if (count !== 0)
break;
arr.push(url.substring(end + (arr.length ? 1 : 0), i));
end = i;
break;
case '{':
count++;
break;
case '}':
count--;
break;
}
}
!count && arr.push(url.substring(end + (arr.length ? 1 : 0), url.length));
if (arr.length === 1 && !arr[0])
arr[0] = '/';
return arr;
};
exports.routeCompare = function(url, route, isSystem, isWildcard) {
var length = url.length;
var lengthRoute = route.length;
if ((lengthRoute !== length && !isWildcard) || (isWildcard && length < lengthRoute))
return false;
if (isWildcard && lengthRoute === 1 && route[0] === '/')
return true;
var skip = length === 1 && url[0] === '/';
for (var i = 0; i < length; i++) {
var value = route[i];
if (!isSystem && isWildcard && value === undefined)
return true;
if (!isSystem && (!skip && value[0] === '{'))
continue;
if (url[i] !== value)
return isSystem ? false : isWildcard ? i >= lengthRoute : false;
}
return true;
};
exports.routeCompareSubdomain = function(subdomain, arr) {
if ((!subdomain && !arr) || (subdomain && !arr))
return true;
if (!subdomain && arr)
return false;
for (var i = 0, length = arr.length; i < length; i++) {
if (arr[i] === '*')
return true;
var index = arr[i].lastIndexOf('*');
if (index === -1) {
if (arr[i] === subdomain)
return true;
} else if (subdomain.indexOf(arr[i].replace('*', '')) !== -1)
return true;
}
return false;
};
exports.routeCompareFlags = function(arr1, arr2, membertype) {
var hasVerb = false;
var a1 = arr1;
var a2 = arr2;
var l1 = arr1.length;
var l2 = arr2.length;
var select = l1 > l2 ? a1 : a2;
var compare = l1 > l2 ? a2 : a1;
var length = Math.max(l1, l2);
var AUTHORIZE = 'authorize';
var UNAUTHORIZE = 'unauthorize';
for (var i = 0; i < length; i++) {
var value = select[i];
var c = value[0];
if (c === '!' || c === '#' || c === '$' || c === '@' || c === '+') // ignore roles
continue;
if (!membertype && (value === AUTHORIZE || value === UNAUTHORIZE))
continue;
var index = compare.indexOf(value);
if (index === -1 && !HTTPVERBS[value])
return value === AUTHORIZE || value === UNAUTHORIZE ? -1 : 0;
hasVerb = hasVerb || (index !== -1 && HTTPVERBS[value]);
}
return hasVerb ? 1 : 0;
};
exports.routeCompareFlags2 = function(req, route, membertype) {
// membertype 0 -> not specified
// membertype 1 -> auth
// membertype 2 -> unauth
// 1. upload --> 0
// 2. doAuth --> 1 or 2
// if (membertype && ((membertype !== 1 && route.MEMBER === 1) || (membertype !== 2 && route.MEMBER === 2)))
if (membertype && route.MEMBER && membertype !== route.MEMBER)
return -1;
if (!route.isWEBSOCKET) {
if ((route.isXHR && !req.xhr) || (route.isMOBILE && !req.mobile) || (route.isROBOT && !req.robot) || (route.isUPLOAD && !req.$upload))
return 0;
var method = req.method;
if (route.method) {
if (route.method !== method)
return 0;
} else if (!route.flags2[method.toLowerCase()])
return 0;
if ((route.isREFERER && req.flags.indexOf('referer') === -1) || (!route.isMULTIPLE && route.isJSON && req.flags.indexOf('json') === -1))
return 0;
if (route.isROLE && !req.$roles && membertype)
return -1;
}
var isRole = false;
var hasRoles = false;
for (var i = 0, length = req.flags.length; i < length; i++) {
var flag = req.flags[i];
switch (flag) {
case 'json':
continue;
case 'xml':
if (route.isRAW || route.isXML)
continue;
return 0;
case 'debug':
if (!route.isDEBUG && route.isRELEASE)
return 0;
continue;
case 'release':
if (!route.isRELEASE && route.isDEBUG)
return 0;
continue;
case 'referer':
continue;
case 'upload':
if (!route.isUPLOAD)
return 0;
continue;
case 'https':
if (!route.isHTTPS && route.isHTTP)
return 0;
continue;
case 'http':
if (!route.isHTTP && route.isHTTPS)
return 0;
continue;
case 'xhr':
case '+xhr':
if (!route.isBOTH && !route.isXHR)
return 0;
continue;
}
var role = flag[0] === '@';
if (membertype !== 1 && route.MEMBER !== 1) {
if ((!route.isGET && !role && !route.flags2[flag]) || (route.isROLE && role && !route.flags2[flag]) || (route.isROLE && !role))
return 0;
continue;
}
// Is some role verified?
if (role && isRole && !route.isROLE)
continue;
if (!role && !route.flags2[flag])
return 0;
if (role) {
if (route.flags2[flag])
isRole = true;
hasRoles = true;
}
}
return (route.isROLE && hasRoles) ? isRole ? 1 : -1 : 1;
};
/**
* Create arguments for controller's action
* @param {String Array} routeUrl
* @param {Object} route
* @return {String Array}
*/
exports.routeParam = function(routeUrl, route) {
if (!route || !routeUrl || !route.param.length)
return EMPTYARRAY;
var arr = [];
for (var i = 0, length = route.param.length; i < length; i++) {
var value = routeUrl[route.param[i]];
arr.push(value === '/' ? '' : value);
}
return arr;
};
function HttpFile() {
this.name;
this.filename;
this.type;
this.path;
this.length = 0;
this.width = 0;
this.height = 0;
this.rem = true;
}
HttpFile.prototype = {
get size() {
return this.length;
},
get extension() {
if (!this.$extension)
this.$extension = framework_utils.getExtension(this.filename);
return this.$extension;
},
set extension(val) {
this.$extension = val;
}
};
var HFP = HttpFile.prototype;
HFP.rename = HFP.move = function(filename, callback) {
var self = this;
Fs.rename(self.path, filename, function(err) {
if (!err) {
self.path = filename;
self.rem = false;
}
callback && callback(err);
});
return self;
};
HFP.copy = function(filename, callback) {
var self = this;
if (!callback) {
Fs.createReadStream(self.path).pipe(Fs.createWriteStream(filename));
return;
}
var reader = Fs.createReadStream(self.path);
var writer = Fs.createWriteStream(filename);
reader.on('close', callback);
reader.pipe(writer);
return self;
};
HFP.$$rename = HFP.$$move = function(filename) {
var self = this;
return function(callback) {
return self.rename(filename, callback);
};
};
HFP.$$copy = function(filename) {
var self = this;
return function(callback) {
return self.copy(filename, callback);
};
};
HFP.readSync = function() {
return Fs.readFileSync(this.path);
};
HFP.read = function(callback) {
var self = this;
F.stats.performance.open++;
Fs.readFile(self.path, callback);
return self;
};
HFP.$$read = function() {
var self = this;
return function(callback) {
self.read(callback);
};
};
HFP.md5 = function(callback) {
var self = this;
var md5 = Crypto.createHash('md5');
var stream = Fs.createReadStream(self.path);
stream.on('data', (buffer) => md5.update(buffer));
stream.on('error', function(error) {
if (callback) {
callback(error, null);
callback = null;
}
});
onFinished(stream, function() {
destroyStream(stream);
if (callback) {
callback(null, md5.digest('hex'));
callback = null;
}
});
return self;
};
HFP.$$md5 = function() {
var self = this;
return function(callback) {
self.md5(callback);
};
};
HFP.stream = function(options) {
return Fs.createReadStream(this.path, options);
};
HFP.pipe = function(stream, options) {
return Fs.createReadStream(this.path, options).pipe(stream, options);
};
HFP.isImage = function() {
return this.type.indexOf('image/') !== -1;
};
HFP.isVideo = function() {
return this.type.indexOf('video/') !== -1;
};
HFP.isAudio = function() {
return this.type.indexOf('audio/') !== -1;
};
HFP.image = function(im) {
if (im === undefined)
im = CONF.default_image_converter === 'im';
return framework_image.init(this.path, im, this.width, this.height);
};
HFP.fs = function(storagename, custom, callback, id) {
if (typeof(custom) === 'function') {
id = callback;
callback = custom;
custom = null;
}
var storage = FILESTORAGE(storagename);
var stream = Fs.createReadStream(this.path);
return id ? storage.update(id, this.filename, stream, custom, callback) : storage.insert(this.filename, stream, custom, callback);
};
HFP.nosql = function(name, custom, callback, id) {
if (typeof(custom) === 'function') {
id = callback;
callback = custom;
custom = null;
}
var storage = NOSQL(name).binary;
var stream = Fs.createReadStream(this.path);
return id ? storage.update(id, this.filename, stream, custom, callback) : storage.insert(this.filename, stream, custom, callback);
};
// *********************************************************************************
// =================================================================================
// JS CSS + AUTO-VENDOR-PREFIXES
// =================================================================================
// *********************************************************************************
function compile_autovendor(css) {
var avp = '/*auto*/';
var isAuto = css.substring(0, 100).indexOf(avp) !== -1;
if (isAuto)
css = autoprefixer(css.replace(avp, ''));
return css.replace(REG_CSS_0, ' ').replace(REG_CSS_1, '').replace(REG_CSS_2, '{').replace(REG_CSS_3, '}').replace(REG_CSS_4, ':').replace(REG_CSS_5, ';').replace(REG_CSS_6, function(search, index, text) {
for (var i = index; i > 0; i--) {
if ((text[i] === '\'' || text[i] === '"') && (text[i - 1] === ':'))
return search;
}
return ',';
}).replace(REG_CSS_7, '}').replace(REG_CSS_8, '{').replace(REG_CSS_9, '}').replace(REG_CSS_12, cssmarginpadding).replace(REG_CSS_13, csscolors).trim();
}
function csscolors(text) {
return text.substring(0, 4);
}
function cssmarginpadding(text) {
// margin
// padding
var prop = '';
var val;
var l = text.length - 1;
var last = text[l];
if (text[0] === 'm') {
prop = 'margin:';
val = text.substring(7, l);
} else {
prop = 'padding:';
val = text.substring(8, l);
}
var a = val.split(' ');
for (var i = 0; i < a.length; i++) {
if (a[i][0] === '0' && a[i].charCodeAt(1) > 58)
a[i] = '0';
}
// 0 0 0 0 --> 0
if (a[0] === '0' && a[1] === '0' && a[2] === '0' && a[3] === '0')
return prop + '0' + last;
// 20px 0 0 0 --> 20px 0 0
if (a[0] !== '0' && a[1] === '0' && a[2] === '0' && a[3] === '0')
return prop + a[0] + ' 0 0' + last;
// 20px 30px 20px 30px --> 20px 30px
if (a[1] && a[2] && a[3] && a[0] === a[2] && a[1] === a[3])
return prop + a[0] + ' ' + a[1] + last;
// 20px 30px 10px 30px --> 20px 30px 10px
if (a[2] && a[3] && a[1] === a[3] && a[0] !== a[2])
return prop + a[0] + ' ' + a[1] + ' ' + a[2] + last;
return text;
}
function autoprefixer(value) {
value = autoprefixer_keyframes(value);
var builder = [];
var index = 0;
var property;
// properties
for (var i = 0, length = AUTOVENDOR.length; i < length; i++) {
property = AUTOVENDOR[i];
index = 0;
while (index !== -1) {
index = value.indexOf(property, index + 1);
if (index === -1)
continue;
var a = value.indexOf(';', index);
var b = value.indexOf('}', index);
var end = Math.min(a, b);
if (end === -1)
end = Math.max(a, b);
if (end === -1)
continue;
// text-transform
var before = value.substring(index - 1, index);
var isPrefix = before === '-';
if (isPrefix)
continue;
var css = value.substring(index, end);
end = css.indexOf(':');
if (end === -1 || css.substring(0, end + 1).replace(/\s/g, '') !== property + ':')
continue;
builder.push({ name: property, property: before + css, css: css });
}
}
var output = [];
var length = builder.length;
for (var i = 0; i < length; i++) {
var name = builder[i].name;
var replace = builder[i].property;
var before = replace[0];
property = builder[i].css.trim();
var plus = property;
var delimiter = ';';
var updated = plus + delimiter;
if (name === 'opacity') {
var opacity = plus.replace('opacity', '').replace(':', '').replace(/\s/g, '');
index = opacity.indexOf('!');
opacity = index === -1 ? (+opacity) : (+opacity.substring(0, index));
if (!isNaN(opacity)) {
updated += 'filter:alpha(opacity=' + Math.floor(opacity * 100) + ')' + (index !== -1 ? ' !important' : '');
value = value.replacer(replace, before + '@[[' + output.length + ']]');
output.push(updated);
}
continue;
}
if (name === 'font-smoothing') {
updated = plus + delimiter;
updated += plus.replacer('font-smoothing', '-webkit-font-smoothing') + delimiter;
updated += plus.replacer('font-smoothing', '-moz-osx-font-smoothing');
value = value.replacer(replace, before + '@[[' + output.length + ']]');
output.push(updated);
continue;
}
if (name === 'background' || name === 'background-image') {
if (property.indexOf('repeating-linear-gradient') !== -1) {
updated = plus.replacer('repeating-linear-', '-webkit-repeating-linear-') + delimiter;
updated += plus.replacer('repeating-linear-', '-moz-repeating-linear-') + delimiter;
updated += plus.replacer('repeating-linear-', '-ms-repeating-linear-') + delimiter;
updated += plus;
value = value.replacer(replace, before + '@[[' + output.length + ']]');
output.push(updated);
} else if (property.indexOf('repeating-radial-gradient') !== -1) {
updated = plus.replacer('repeating-radial-', '-webkit-repeating-radial-') + delimiter;
updated += plus.replacer('repeating-radial-', '-moz-repeating-radial-') + delimiter;
updated += plus.replacer('repeating-radial-', '-ms-repeating-radial-') + delimiter;
updated += plus;
value = value.replacer(replace, before + '@[[' + output.length + ']]');
output.push(updated);
} else if (property.indexOf('linear-gradient') !== -1) {
updated = plus.replacer('linear-', '-webkit-linear-') + delimiter;
updated += plus.replacer('linear-', '-moz-linear-') + delimiter;
updated += plus.replacer('linear-', '-ms-linear-') + delimiter;
updated += plus;
value = value.replacer(replace, before + '@[[' + output.length + ']]');
output.push(updated);
} else if (property.indexOf('radial-gradient') !== -1) {
updated = plus.replacer('radial-', '-webkit-radial-') + delimiter;
updated += plus.replacer('radial-', '-moz-radial-') + delimiter;
updated += plus.replacer('radial-', '-ms-radial-') + delimiter;
updated += plus;
value = value.replacer(replace, before + '@[[' + output.length + ']]');
output.push(updated);
}
continue;
}
if (name === 'text-overflow') {
updated = plus + delimiter;
updated += plus.replacer('text-overflow', '-ms-text-overflow');
value = value.replacer(replace, before + '@[[' + output.length + ']]');
output.push(updated);
continue;
}
if (name === 'display') {
if (property.indexOf('box') !== -1) {
updated = plus + delimiter;
updated += plus.replacer('box', '-webkit-box') + delimiter;
updated += plus.replacer('box', '-moz-box');
value = value.replacer(replace, before + '@[[' + output.length + ']]');
output.push(updated);
}
continue;
}
updated += '-webkit-' + plus + delimiter;
updated += '-moz-' + plus;
if (name.indexOf('animation') === -1)
updated += delimiter + '-ms-' + plus;
value = value.replacer(replace, before + '@[[' + output.length + ']]');
output.push(updated);
}
length = output.length;
for (var i = 0; i < length; i++)
value = value.replacer('@[[' + i + ']]', output[i]);
output = null;
builder = null;
return value;
}
function autoprefixer_keyframes(value) {
var builder = [];
var index = 0;
while (index !== -1) {
index = value.indexOf('@keyframes', index + 1);
if (index === -1)
continue;
var counter = 0;
var end = -1;
for (var indexer = index + 10; indexer < value.length; indexer++) {
if (value[indexer] === '{')
counter++;
if (value[indexer] !== '}')
continue;
if (counter > 1) {
counter--;
continue;
}
end = indexer;
break;
}
if (end === -1)
continue;
var css = value.substring(index, end + 1);
builder.push({ name: 'keyframes', property: css });
}
var output = [];
var length = builder.length;
for (var i = 0; i < length; i++) {
var name = builder[i].name;
var property = builder[i].property;
if (name !== 'keyframes')
continue;
var plus = property.substring(1);
var delimiter = '\n';
var updated = '@' + plus + delimiter;
updated += '@-webkit-' + plus + delimiter;
updated += '@-moz-' + plus + delimiter;
updated += '@-o-' + plus + delimiter;
value = value.replacer(property, '@[[' + output.length + ']]');
output.push(updated);
}
length = output.length;
for (var i = 0; i < length; i++)
value = value.replace('@[[' + i + ']]', output[i]);
return value;
}
function minify_javascript(data) {
var index = 0;
var output = [];
var isCS = false;
var isCI = false;
var alpha = /[0-9a-z$]/i;
var white = /\W/;
var skip = { '$': true, '_': true };
var newlines = { '\n': 1, '\r': 1 };
var regexp = false;
var scope, prev, next, last;
var vtmp = false;
var regvar = /^(\s)*var /;
var vindex = 0;
while (true) {
var c = data[index];
var prev = data[index - 1];
var next = data[index + 1];
index++;
if (c === undefined)
break;
if (!scope) {
if (!regexp) {
if (c === '/' && next === '*') {
isCS = true;
continue;
} else if (c === '*' && next === '/') {
isCS = false;
index++;
continue;
}
if (isCS)
continue;
if (c === '/' && next === '/') {
isCI = true;
continue;
} else if (isCI && newlines[c]) {
isCI = false;
alpha.test(last) && output.push(' ');
last = '';
continue;
}
if (isCI)
continue;
}
if (c === '\t' || newlines[c]) {
if (!last || !alpha.test(last))
continue;
output.push(' ');
last = '';
continue;
}
if (!regexp && (c === ' ' && (white.test(prev) || white.test(next)))) {
// if (!skip[prev] && !skip[next])
if (!skip[prev]) {
if (!skip[next] || !alpha.test(prev))
continue;
}
}
if (regexp) {
if ((last !== '\\' && c === '/') || (last === '\\' && c === '/' && output[output.length - 2] === '\\'))
regexp = false;
} else
regexp = (last === '=' || last === '(' || last === ':' || last === '{' || last === '[' || last === '?') && (c === '/');
}
if (scope && c === '\\') {
output.push(c);
output.push(next);
index++;
last = next;
continue;
}
if (!regexp && (c === '"' || c === '\'' || c === '`')) {
if (scope && scope !== c) {
output.push(c);
continue;
}
if (c === scope)
scope = 0;
else
scope = c;
}
// var
if (!scope && c === 'v' && next === 'a') {
var v = c + data[index] + data[index + 1] + data[index + 2];
if (v === 'var ') {
if (vtmp && output[output.length - 1] === ';') {
output.pop();
output.push(',');
} else
output.push('var ');
index += 3;
vtmp = true;
continue;
}
} else {
if (vtmp) {
vindex = index + 1;
while (true) {
if (!data[vindex] || !white.test(data[vindex]))
break;
vindex++;
}
if (c === '(' || c === ')' || (c === ';' && !regvar.test(data.substring(vindex, vindex + 20))))
vtmp = false;
}
}
if ((c === '+' || c === '-') && next === ' ') {
if (data[index + 1] === c) {
index += 2;
output.push(c);
output.push(' ');
output.push(c);
last = c;
continue;
}
}
if ((c === '}' && last === ';') || ((c === '}' || c === ']') && output[output.length - 1] === ' ' && alpha.test(output[output.length - 2])))
output.pop();
output.push(c);
last = c;
}
return output.join('').trim();
}
exports.compile_css = function(value, filename, nomarkup) {
// Internal markup
if (!nomarkup)
value = markup(value, filename);
if (global.F) {
value = modificators(value, filename, 'style');
if (F.onCompileStyle)
return F.onCompileStyle(filename, value);
}
try {
var isVariable = false;
value = nested(value, '', () => isVariable = true);
value = compile_autovendor(value);
if (isVariable)
value = variablesCSS(value);
return value;
} catch (ex) {
F.error(new Error('CSS compiler error: ' + ex.message));
return '';
}
};
exports.compile_javascript = function(source, filename, nomarkup) {
// Internal markup
if (!nomarkup)
source = markup(source, filename);
if (global.F) {
source = modificators(source, filename, 'script');
if (F.onCompileScript)
return F.onCompileScript(filename, source).trim();
}
return minify_javascript(source);
};
exports.compile_html = function(source, filename, nomarkup) {
return compressCSS(compressJS(compressHTML(source, true), 0, filename, nomarkup), 0, filename, nomarkup);
};
// *********************************************************************************
// =================================================================================
// MULTIPART PARSER
// =================================================================================
// *********************************************************************************
// Copyright (c) 2010 Hongli Lai
// Copyright (c) Felix Geisendörfer -> https://github.com/felixge/node-formidable
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
var Buffer = require('buffer').Buffer,
s = 0,
S = {
PARSER_UNINITIALIZED: s++,
START: s++,
START_BOUNDARY: s++,
HEADER_FIELD_START: s++,
HEADER_FIELD: s++,
HEADER_VALUE_START: s++,
HEADER_VALUE: s++,
HEADER_VALUE_ALMOST_DONE: s++,
HEADERS_ALMOST_DONE: s++,
PART_DATA_START: s++,
PART_DATA: s++,
PART_END: s++,
END: s++
},
f = 1,
FB = {
PART_BOUNDARY: f,
LAST_BOUNDARY: f *= 2
},
LF = 10,
CR = 13,
SPACE = 32,
HYPHEN = 45,
COLON = 58,
A = 97,
Z = 122,
lower = function(c) {
return c | 0x20;
};
for (s in S) {
exports[s] = S[s];
}
function MultipartParser() {
this.boundary = null;
this.boundaryChars = null;
this.lookbehind = null;
this.state = S.PARSER_UNINITIALIZED;
this.index = null;
this.flags = 0;
}
exports.MultipartParser = MultipartParser;
const MultipartParserProto = MultipartParser.prototype;
MultipartParser.stateToString = function(stateNumber) {
for (var state in S) {
var number = S[state];
if (number === stateNumber) return state;
}
};
MultipartParserProto.initWithBoundary = function(str) {
var self = this;
self.boundary = Buffer.alloc(str.length + 4);
self.boundary.write('\r\n--', 0, 'ascii');
self.boundary.write(str, 4, 'ascii');
self.lookbehind = Buffer.alloc(self.boundary.length + 8);
self.state = S.START;
self.boundaryChars = {};
for (var i = 0; i < self.boundary.length; i++)
self.boundaryChars[self.boundary[i]] = true;
};
MultipartParserProto.write = function(buffer) {
var self = this,
i = 0,
len = buffer.length,
prevIndex = self.index,
index = self.index,
state = self.state,
flags = self.flags,
lookbehind = self.lookbehind,
boundary = self.boundary,
boundaryChars = self.boundaryChars,
boundaryLength = self.boundary.length,
boundaryEnd = boundaryLength - 1,
bufferLength = buffer.length,
c,
cl,
mark = function(name) {
self[name + 'Mark'] = i;
},
clear = function(name) {
delete self[name + 'Mark'];
},
callback = function(name, buffer, start, end) {
if (start !== undefined && start === end)
return;
var callbackSymbol = 'on' + name.substr(0, 1).toUpperCase() + name.substr(1);
if (callbackSymbol in self)
self[callbackSymbol](buffer, start, end);
},
dataCallback = function(name, clear) {
var markSymbol = name + 'Mark';
if (!(markSymbol in self))
return;
if (!clear) {
callback(name, buffer, self[markSymbol], buffer.length);
self[markSymbol] = 0;
} else {
callback(name, buffer, self[markSymbol], i);
delete self[markSymbol];
}
};
for (i = 0; i < len; i++) {
c = buffer[i];
switch (state) {
case S.PARSER_UNINITIALIZED:
return i;
case S.START:
index = 0;
state = S.START_BOUNDARY;
case S.START_BOUNDARY:
if (index == boundary.length - 2) {
if (c === HYPHEN)
flags |= FB.LAST_BOUNDARY;
else if (c !== CR)
return i;
index++;
break;
} else if (index - 1 === boundary.length - 2) {
if (flags & FB.LAST_BOUNDARY && c === HYPHEN) {
callback('end');
state = S.END;
flags = 0;
} else if (!(flags & FB.LAST_BOUNDARY) && c === LF) {
index = 0;
callback('partBegin');
state = S.HEADER_FIELD_START;
} else
return i;
break;
}
if (c !== boundary[index + 2])
index = -2;
if (c === boundary[index + 2])
index++;
break;
case S.HEADER_FIELD_START:
state = S.HEADER_FIELD;
mark('headerField');
index = 0;
case S.HEADER_FIELD:
if (c === CR) {
clear('headerField');
state = S.HEADERS_ALMOST_DONE;
break;
}
index++;
if (c === HYPHEN)
break;
if (c === COLON) {
// empty header field
if (index === 1)
return i;
dataCallback('headerField', true);
state = S.HEADER_VALUE_START;
break;
}
cl = lower(c);
if (cl < A || cl > Z)
return i;
break;
case S.HEADER_VALUE_START:
if (c === SPACE)
break;
mark('headerValue');
state = S.HEADER_VALUE;
case S.HEADER_VALUE:
if (c === CR) {
dataCallback('headerValue', true);
callback('headerEnd');
state = S.HEADER_VALUE_ALMOST_DONE;
}
break;
case S.HEADER_VALUE_ALMOST_DONE:
if (c !== LF)
return i;
state = S.HEADER_FIELD_START;
break;
case S.HEADERS_ALMOST_DONE:
if (c !== LF)
return i;
callback('headersEnd');
state = S.PART_DATA_START;
break;
case S.PART_DATA_START:
state = S.PART_DATA;
mark('partData');
case S.PART_DATA:
prevIndex = index;
if (!index) {
// boyer-moore derrived algorithm to safely skip non-boundary data
i += boundaryEnd;
while (i < bufferLength && !(buffer[i] in boundaryChars))
i += boundaryLength;
i -= boundaryEnd;
c = buffer[i];
}
if (index < boundary.length) {
if (boundary[index] === c) {
if (!index)
dataCallback('partData', true);
index++;
} else
index = 0;
} else if (index === boundary.length) {
index++;
if (c === CR) {
// CR = part boundary
flags |= FB.PART_BOUNDARY;
} else if (c === HYPHEN) {
// HYPHEN = end boundary
flags |= FB.LAST_BOUNDARY;
} else
index = 0;
} else if (index - 1 === boundary.length) {
if (flags & FB.PART_BOUNDARY) {
index = 0;
if (c === LF) {
// unset the PART_BOUNDARY flag
flags &= ~FB.PART_BOUNDARY;
callback('partEnd');
callback('partBegin');
state = S.HEADER_FIELD_START;
break;
}
} else if (flags & FB.LAST_BOUNDARY) {
if (c === HYPHEN) {
callback('partEnd');
callback('end');
state = S.END;
flags = 0;
} else
index = 0;
} else
index = 0;
}
if (index) {
// when matching a possible boundary, keep a lookbehind reference
// in case it turns out to be a false lead
lookbehind[index - 1] = c;
} else if (prevIndex) {
// if our boundary turned out to be rubbish, the captured lookbehind
// belongs to partData
callback('partData', lookbehind, 0, prevIndex);
prevIndex = 0;
mark('partData');
// reconsider the current character even so it interrupted the sequence
// it could be the beginning of a new sequence
i--;
}
break;
case S.END:
break;
default:
return i;
}
}
dataCallback('headerField');
dataCallback('headerValue');
dataCallback('partData');
self.index = index;
self.state = state;
self.flags = flags;
return len;
};
MultipartParserProto.end = function() {
if ((this.state === S.HEADER_FIELD_START && this.index === 0) || (this.state === S.PART_DATA && this.index == this.boundary.length)) {
this.onPartEnd && this.onPartEnd();
this.onEnd && this.onEnd();
} else if (this.state != S.END) {
this.onPartEnd && this.onPartEnd();
this.onEnd && this.onEnd();
return new Error('MultipartParser.end(): stream ended unexpectedly: ' + this.explain());
}
};
MultipartParserProto.explain = function() {
return 'state = ' + MultipartParser.stateToString(this.state);
};
// *********************************************************************************
// =================================================================================
// VIEW ENGINE
// =================================================================================
// *********************************************************************************
function view_parse_localization(content, language) {
var is = false;
content = content.replace(REG_NOTRANSLATE, function() {
is = true;
return '';
}).trim();
if (is)
return content;
var command = view_find_localization(content, 0);
var output = '';
var end = 0;
if (!command)
return content;
while (command) {
if (command)
output += content.substring(end ? end + 1 : 0, command.beg) + (command.command ? localize(language, command) : '');
end = command.end;
command = view_find_localization(content, command.end);
}
output += content.substring(end + 1);
return output;
}
// Escaping ", ' and ` chars
function localize(language, command) {
!language && (language = 'default');
if (F.resources[language] && F.resources[language].$empty)
return command.command;
var output = F.translate(language, command.command);
if (command.escape) {
var index = 0;
while (true) {
index = output.indexOf(command.escape, index);
if (index === -1)
break;
var c = output[index - 1];
if (c !== '\\') {
output = output.substring(0, index) + '\\' + output.substring(index);
index++;
} else
index += 2;
}
}
return output;
}
var VIEW_IF = { 'if ': 1, 'if(': 1 };
function view_parse(content, minify, filename, controller) {
content = removeComments(content).ROOT();
var nocompressHTML = false;
var nocompressJS = false;
var nocompressCSS = false;
content = content.replace(REG_NOCOMPRESS, function(text) {
var index = text.lastIndexOf(' ');
if (index === -1)
return '';
switch (text.substring(index, text.length - 1).trim()) {
case 'all':
nocompressHTML = true;
nocompressJS = true;
nocompressCSS = true;
break;
case 'html':
nocompressHTML = true;
break;
case 'js':
case 'script':
case 'javascript':
nocompressJS = true;
break;
case 'css':
case 'style':
nocompressCSS = true;
break;
}
return '';
}).trim();
if (!nocompressJS)
content = compressJS(content, 0, filename, true);
if (!nocompressCSS)
content = compressCSS(content, 0, filename, true);
content = F.$versionprepare(content);
if (!nocompressHTML)
content = compressView(content, minify, filename);
var DELIMITER = '\'';
var SPACE = ' ';
var builder = 'var $EMPTY=\'\';var $length=0;var $source=null;var $tmp=index;var $output=$EMPTY';
var command = view_find_command(content, 0);
var isFirst = false;
var txtindex = -1;
var index = 0;
var isCookie = false;
function escaper(value) {
var is = REG_TAGREMOVE.test(value);
if (!nocompressHTML) {
// value = compressHTML(value, minify, true);
} else if (!isFirst) {
isFirst = true;
value = value.replace(/^\s+/, '');
}
if (!value)
return '$EMPTY';
if (!nocompressHTML && is)
value += ' ';
txtindex = $VIEWCACHE.indexOf(value);
if (txtindex === -1) {
txtindex = $VIEWCACHE.length;
$VIEWCACHE.push(value);
}
return '$VIEWCACHE[' + txtindex + ']';
}
if (!command)
builder += '+' + escaper(content);
index = 0;
var old = null;
var newCommand = '';
var tmp = '';
var counter = 0;
var functions = [];
var functionsName = [];
var isFN = false;
var isSECTION = false;
var isCOMPILATION = false;
var builderTMP = '';
var sectionName = '';
var components = {};
var text;
while (command) {
if (!isCookie && command.command.indexOf('cookie') !== -1)
isCookie = true;
if (old) {
text = content.substring(old.end + 1, command.beg);
if (text) {
if (view_parse_plus(builder))
builder += '+';
builder += escaper(text);
}
} else {
text = content.substring(0, command.beg);
if (text) {
if (view_parse_plus(builder))
builder += '+';
builder += escaper(text);
}
}
var cmd = content.substring(command.beg + 2, command.end).trim();
var cmd8 = cmd.substring(0, 8);
var cmd7 = cmd.substring(0, 7);
if (cmd === 'continue' || cmd === 'break') {
builder += ';' + cmd + ';';
old = command;
command = view_find_command(content, command.end);
continue;
}
// cmd = cmd.replace
command.command = command.command.replace(REG_HELPERS, function(text) {
var index = text.indexOf('(');
return index === - 1 ? text : text.substring(0, index) + '.call(self' + (text.endsWith('()') ? ')' : ',' + text.substring(index + 1));
});
if (cmd[0] === '\'' || cmd[0] === '"') {
if (cmd[1] === '%') {
var t = CONF[cmd.substring(2, cmd.length - 1)];
if (t != null)
builder += '+' + DELIMITER + (t.toString()).replace(/'/g, "\\'") + DELIMITER;
} else
builder += '+' + DELIMITER + (new Function('self', 'return self.$import(' + cmd[0] + '!' + cmd.substring(1) + ')'))(controller) + DELIMITER;
} else if (cmd7 === 'compile' && cmd.lastIndexOf(')') === -1) {
builderTMP = builder + '+(F.onCompileView.call(self,\'' + (cmd8[7] === ' ' ? cmd.substring(8).trim() : '') + '\',';
builder = '';
sectionName = cmd.substring(8);
isCOMPILATION = true;
isFN = true;
} else if (cmd8 === 'section ' && cmd.lastIndexOf(')') === -1) {
builderTMP = builder;
builder = '+(function(){var $output=$EMPTY';
sectionName = cmd.substring(8);
isSECTION = true;
isFN = true;
} else if (cmd7 === 'helper ') {
builderTMP = builder;
builder = 'function ' + cmd.substring(7).trim() + '{var $output=$EMPTY';
isFN = true;
functionsName.push(cmd.substring(7, cmd.indexOf('(', 7)).trim());
} else if (cmd8 === 'foreach ') {
counter++;
if (cmd.indexOf('foreach var ') !== -1)
cmd = cmd.replace(' var ', SPACE);
cmd = view_prepare_keywords(cmd);
newCommand = (cmd.substring(8, cmd.indexOf(SPACE, 8)) || '').trim();
index = cmd.trim().indexOf(SPACE, newCommand.length + 10);
if (index === -1)
index = cmd.indexOf('[', newCommand.length + 10);
builder += '+(function(){var $source=' + cmd.substring(index).trim() + ';if(!($source instanceof Array))$source=framework_utils.ObjectToArray($source);if(!$source.length)return $EMPTY;var $length=$source.length;var $output=$EMPTY;var index=0;for(var $i=0;$i<$length;$i++){index=$i;var ' + newCommand + '=$source[$i];$output+=$EMPTY';
} else if (cmd === 'end') {
if (isFN && counter <= 0) {
counter = 0;
if (isCOMPILATION) {
builder = builderTMP + 'unescape($EMPTY' + builder + '),model) || $EMPTY)';
builderTMP = '';
} else if (isSECTION) {
builder = builderTMP + builder + ';repository[\'$section_' + sectionName + '\']=repository[\'$section_' + sectionName + '\']?repository[\'$section_' + sectionName + '\']+$output:$output;return $EMPTY})()';
builderTMP = '';
} else {
builder += ';return $output;}';
functions.push(builder);
builder = builderTMP;
builderTMP = '';
}
isSECTION = false;
isCOMPILATION = false;
isFN = false;
} else {
counter--;
builder += '}return $output})()';
newCommand = '';
}
} else if (VIEW_IF[cmd.substring(0, 3)]) {
builder += ';if (' + (cmd.substring(2, 3) === '(' ? '(' : '') + view_prepare_keywords(cmd).substring(3) + '){$output+=$EMPTY';
} else if (cmd7 === 'else if') {
builder += '} else if (' + view_prepare_keywords(cmd).substring(7) + ') {$output+=$EMPTY';
} else if (cmd === 'else') {
builder += '} else {$output+=$EMPTY';
} else if (cmd === 'endif' || cmd === 'fi') {
builder += '}$output+=$EMPTY';
} else {
tmp = view_prepare(command.command, newCommand, functionsName, controller, components);
var can = false;
// Inline rendering is supported only in release mode
if (RELEASE && tmp.indexOf('+') === -1 && REG_SKIP_1.test(tmp) && !REG_SKIP_2.test(tmp)) {
for (var a = 0, al = RENDERNOW.length; a < al; a++) {
if (tmp.startsWith(RENDERNOW[a])) {
if (!a) {
var isMeta = tmp.indexOf('\'meta\'') !== -1;
var isHead = tmp.indexOf('\'head\'') !== -1;
tmp = tmp.replace(/(\s)?'(meta|head)'(\s|,)?/g, '').replace(/(,,|,\)|\s{2,})/g, '');
if (isMeta || isHead) {
var tmpimp = '';
if (isMeta)
tmpimp += (isMeta ? '\'meta\'' : '');
if (isHead)
tmpimp += (tmpimp ? ',' : '') + (isHead ? '\'head\'' : '');
if (tmpimp)
builder += '+self.$import(' + tmpimp + ')';
}
}
if (tmp !== 'self.$import()')
can = true;
break;
}
}
}
if (can && !counter) {
try {
if (tmp.lastIndexOf(')') === -1)
tmp += ')';
var r = (new Function('self', 'config', 'return ' + tmp))(controller, CONF).replace(REG_7, '\\\\').replace(REG_8, '\\\'');
if (r) {
txtindex = $VIEWCACHE.indexOf(r);
if (txtindex === -1) {
txtindex = $VIEWCACHE.length;
$VIEWCACHE.push(r);
}
builder += '+$VIEWCACHE[' + txtindex + ']';
}
} catch (e) {
console.log('A view compilation error --->', filename, e, tmp);
F.errors.push({ error: e.stack, name: filename, url: null, date: new Date() });
if (view_parse_plus(builder))
builder += '+';
builder += wrapTryCatch(tmp, command.command, command.line);
}
} else if (tmp) {
if (view_parse_plus(builder))
builder += '+';
if (tmp.substring(1, 4) !== '@{-' && tmp.substring(0, 11) !== 'self.$view')
builder += wrapTryCatch(tmp, command.command, command.line);
else
builder += tmp;
}
}
old = command;
command = view_find_command(content, command.end);
}
if (old) {
text = content.substring(old.end + 1);
if (text)
builder += '+' + escaper(text);
}
if (RELEASE)
builder = bu