2011-05-28 20:05:43 +00:00
|
|
|
/**
|
2011-05-30 14:53:11 +00:00
|
|
|
* This Module manages all /minified/* requests. It controls the
|
|
|
|
* minification && compression of Javascript and CSS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2011-08-11 14:26:41 +00:00
|
|
|
* 2011 Peter 'Pita' Martischka (Primary Technology Ltd)
|
2011-05-28 20:05:43 +00:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS-IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2011-12-04 15:50:02 +00:00
|
|
|
var ERR = require("async-stacktrace");
|
2011-07-27 17:52:23 +00:00
|
|
|
var settings = require('./Settings');
|
2011-05-28 17:09:17 +00:00
|
|
|
var async = require('async');
|
|
|
|
var fs = require('fs');
|
|
|
|
var cleanCSS = require('clean-css');
|
|
|
|
var jsp = require("uglify-js").parser;
|
|
|
|
var pro = require("uglify-js").uglify;
|
|
|
|
var path = require('path');
|
2012-01-16 06:07:45 +00:00
|
|
|
var RequireKernel = require('require-kernel');
|
2011-07-27 17:52:23 +00:00
|
|
|
var server = require('../server');
|
2011-05-28 17:09:17 +00:00
|
|
|
|
2012-02-14 21:23:53 +00:00
|
|
|
var ROOT_DIR = path.normalize(__dirname + "/../../static/");
|
2012-01-15 00:12:03 +00:00
|
|
|
var TAR_PATH = path.join(__dirname, 'tar.json');
|
|
|
|
var tar = JSON.parse(fs.readFileSync(TAR_PATH, 'utf8'));
|
2011-07-26 16:39:25 +00:00
|
|
|
|
2012-02-20 02:26:31 +00:00
|
|
|
// Rewrite tar to include modules with no extensions and proper rooted paths.
|
2012-02-28 07:14:35 +00:00
|
|
|
// HACK: Also use non-extension name so redirects are not encountered.
|
2012-01-29 11:30:31 +00:00
|
|
|
exports.tar = {};
|
|
|
|
for (var key in tar) {
|
2012-02-28 07:14:35 +00:00
|
|
|
exports.tar['/' + key.replace(/\.js$/, '')] =
|
2012-01-29 11:30:31 +00:00
|
|
|
tar[key].map(function (p) {return '/' + p}).concat(
|
|
|
|
tar[key].map(function (p) {return '/' + p.replace(/\.js$/, '')})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-05-28 17:09:17 +00:00
|
|
|
/**
|
2011-07-26 16:39:25 +00:00
|
|
|
* creates the minifed javascript for the given minified name
|
2011-05-30 14:53:11 +00:00
|
|
|
* @param req the Express request
|
|
|
|
* @param res the Express response
|
2011-05-28 17:09:17 +00:00
|
|
|
*/
|
2012-02-14 21:23:53 +00:00
|
|
|
exports.minify = function(req, res, next)
|
2011-05-28 17:09:17 +00:00
|
|
|
{
|
2012-01-29 11:30:31 +00:00
|
|
|
var filename = req.params['filename'];
|
2012-02-15 02:14:07 +00:00
|
|
|
|
|
|
|
// No relative paths, especially if they may go up the file hierarchy.
|
2012-02-14 21:23:53 +00:00
|
|
|
filename = path.normalize(path.join(ROOT_DIR, filename));
|
|
|
|
if (filename.indexOf(ROOT_DIR) == 0) {
|
|
|
|
filename = filename.slice(ROOT_DIR.length);
|
2012-02-15 02:14:07 +00:00
|
|
|
} else {
|
|
|
|
res.writeHead(404, {});
|
|
|
|
res.end();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-02-14 21:23:53 +00:00
|
|
|
// What content type should this be?
|
|
|
|
// TODO: This should use a MIME module.
|
|
|
|
var contentType;
|
|
|
|
if (filename.match(/\.js$/)) {
|
|
|
|
contentType = "text/javascript";
|
|
|
|
} else if (filename.match(/\.css$/)) {
|
|
|
|
contentType = "text/css";
|
|
|
|
} else if (filename.match(/\.html$/)) {
|
|
|
|
contentType = "text/html";
|
|
|
|
} else if (filename.match(/\.txt$/)) {
|
|
|
|
contentType = "text/plain";
|
|
|
|
} else if (filename.match(/\.png$/)) {
|
|
|
|
contentType = "image/png";
|
|
|
|
} else if (filename.match(/\.gif$/)) {
|
|
|
|
contentType = "image/gif";
|
|
|
|
} else if (filename.match(/\.ico$/)) {
|
|
|
|
contentType = "image/x-icon";
|
|
|
|
} else {
|
|
|
|
contentType = "application/octet-stream";
|
|
|
|
}
|
2012-01-29 08:00:11 +00:00
|
|
|
|
2012-02-20 01:34:43 +00:00
|
|
|
statFile(filename, function (error, date, exists) {
|
2012-02-20 01:37:11 +00:00
|
|
|
if (date) {
|
|
|
|
date = new Date(date);
|
|
|
|
res.setHeader('last-modified', date.toUTCString());
|
|
|
|
res.setHeader('date', (new Date()).toUTCString());
|
|
|
|
if (server.maxAge) {
|
|
|
|
var expiresDate = new Date((new Date()).getTime()+server.maxAge*1000);
|
|
|
|
res.setHeader('expires', expiresDate.toUTCString());
|
|
|
|
res.setHeader('cache-control', 'max-age=' + server.maxAge);
|
|
|
|
}
|
2012-02-12 00:03:44 +00:00
|
|
|
}
|
2012-01-29 08:00:11 +00:00
|
|
|
|
2012-02-20 01:34:43 +00:00
|
|
|
if (error) {
|
|
|
|
res.writeHead(500, {});
|
|
|
|
res.end();
|
|
|
|
} else if (!exists) {
|
|
|
|
res.writeHead(404, {});
|
|
|
|
res.end();
|
|
|
|
} else if (new Date(req.headers['if-modified-since']) >= date) {
|
|
|
|
res.writeHead(304, {});
|
|
|
|
res.end();
|
|
|
|
} else {
|
|
|
|
if (req.method == 'HEAD') {
|
2012-02-14 21:23:53 +00:00
|
|
|
res.header("Content-Type", contentType);
|
2012-02-20 01:34:43 +00:00
|
|
|
res.writeHead(200, {});
|
2012-01-29 20:54:12 +00:00
|
|
|
res.end();
|
2012-02-20 01:34:43 +00:00
|
|
|
} else if (req.method == 'GET') {
|
2012-02-14 21:23:53 +00:00
|
|
|
getFileCompressed(filename, contentType, function (error, content) {
|
2012-02-20 01:34:43 +00:00
|
|
|
if(ERR(error)) return;
|
2012-02-14 21:23:53 +00:00
|
|
|
res.header("Content-Type", contentType);
|
2012-01-29 20:57:49 +00:00
|
|
|
res.writeHead(200, {});
|
2012-02-20 01:34:43 +00:00
|
|
|
res.write(content);
|
2012-01-29 20:57:49 +00:00
|
|
|
res.end();
|
2012-02-20 01:34:43 +00:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.writeHead(405, {'allow': 'HEAD, GET'});
|
|
|
|
res.end();
|
2012-01-29 20:54:12 +00:00
|
|
|
}
|
2012-02-20 01:34:43 +00:00
|
|
|
}
|
2012-01-29 08:00:11 +00:00
|
|
|
});
|
2011-05-28 17:09:17 +00:00
|
|
|
}
|
|
|
|
|
2012-01-23 02:29:00 +00:00
|
|
|
// find all includes in ace.js and embed them.
|
|
|
|
function getAceFile(callback) {
|
2012-02-14 21:23:53 +00:00
|
|
|
fs.readFile(ROOT_DIR + 'js/ace.js', "utf8", function(err, data) {
|
2012-01-23 02:29:00 +00:00
|
|
|
if(ERR(err, callback)) return;
|
|
|
|
|
|
|
|
// Find all includes in ace.js and embed them
|
2012-02-14 21:14:22 +00:00
|
|
|
var founds = data.match(/\$\$INCLUDE_[a-zA-Z_]+\("[^"]*"\)/gi);
|
2012-01-23 02:29:00 +00:00
|
|
|
if (!settings.minify) {
|
|
|
|
founds = [];
|
|
|
|
}
|
2012-02-20 02:26:31 +00:00
|
|
|
// Always include the require kernel.
|
2012-01-31 05:37:39 +00:00
|
|
|
founds.push('$$INCLUDE_JS("../static/js/require-kernel.js")');
|
2012-01-23 02:29:00 +00:00
|
|
|
|
|
|
|
data += ';\n';
|
|
|
|
data += 'Ace2Editor.EMBEDED = Ace2Editor.EMBEDED || {};\n';
|
|
|
|
|
2012-02-20 02:26:31 +00:00
|
|
|
// Request the contents of the included file on the server-side and write
|
|
|
|
// them into the file.
|
2012-01-23 02:29:00 +00:00
|
|
|
async.forEach(founds, function (item, callback) {
|
|
|
|
var filename = item.match(/"([^"]*)"/)[1];
|
2012-02-14 21:14:22 +00:00
|
|
|
var request = require('request');
|
2012-01-23 02:29:00 +00:00
|
|
|
|
2012-02-14 21:14:22 +00:00
|
|
|
var baseURI = 'http://' + settings.ip + ":" + settings.port
|
2012-01-23 02:29:00 +00:00
|
|
|
|
2012-02-14 21:14:22 +00:00
|
|
|
request(baseURI + path.normalize(path.join('/static/', filename)), function (error, response, body) {
|
|
|
|
if (!error && response.statusCode == 200) {
|
|
|
|
data += 'Ace2Editor.EMBEDED[' + JSON.stringify(filename) + '] = '
|
|
|
|
+ JSON.stringify(body || '') + ';\n';
|
|
|
|
} else {
|
|
|
|
// Silence?
|
2012-01-23 02:29:00 +00:00
|
|
|
}
|
|
|
|
callback();
|
2012-02-14 21:14:22 +00:00
|
|
|
});
|
2012-01-23 02:29:00 +00:00
|
|
|
}, function(error) {
|
|
|
|
callback(error, data);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-02-20 02:26:31 +00:00
|
|
|
// Check for the existance of the file and get the last modification date.
|
2012-02-20 01:34:43 +00:00
|
|
|
function statFile(filename, callback) {
|
2012-02-14 21:23:53 +00:00
|
|
|
if (filename == 'js/ace.js') {
|
2012-02-20 02:26:31 +00:00
|
|
|
// Sometimes static assets are inlined into this file, so we have to stat
|
|
|
|
// everything.
|
2012-02-20 01:34:43 +00:00
|
|
|
lastModifiedDateOfEverything(function (error, date) {
|
|
|
|
callback(error, date, !error);
|
|
|
|
});
|
2012-02-20 02:31:46 +00:00
|
|
|
} else if (filename == 'js/require-kernel.js') {
|
|
|
|
callback(null, requireLastModified(), true);
|
2012-02-05 23:01:51 +00:00
|
|
|
} else {
|
2012-02-14 21:23:53 +00:00
|
|
|
fs.stat(ROOT_DIR + filename, function (error, stats) {
|
2012-02-05 23:01:51 +00:00
|
|
|
if (error) {
|
2012-02-20 02:26:31 +00:00
|
|
|
if (error.code == "ENOENT") {
|
|
|
|
// Stat the directory instead.
|
2012-02-14 21:23:53 +00:00
|
|
|
fs.stat(path.dirname(ROOT_DIR + filename), function (error, stats) {
|
2012-02-05 23:01:51 +00:00
|
|
|
if (error) {
|
2012-02-20 03:46:09 +00:00
|
|
|
if (error.code == "ENOENT") {
|
|
|
|
callback(null, null, false);
|
|
|
|
} else {
|
|
|
|
callback(error);
|
|
|
|
}
|
2012-02-05 23:01:51 +00:00
|
|
|
} else {
|
2012-02-20 01:34:43 +00:00
|
|
|
callback(null, stats.mtime.getTime(), false);
|
2012-02-05 23:01:51 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
callback(error);
|
|
|
|
}
|
|
|
|
} else {
|
2012-02-20 01:34:43 +00:00
|
|
|
callback(null, stats.mtime.getTime(), true);
|
2012-02-05 23:01:51 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function lastModifiedDateOfEverything(callback) {
|
2012-02-14 21:23:53 +00:00
|
|
|
var folders2check = [ROOT_DIR + 'js/', ROOT_DIR + 'css/'];
|
2012-01-23 01:19:46 +00:00
|
|
|
var latestModification = 0;
|
|
|
|
//go trough this two folders
|
|
|
|
async.forEach(folders2check, function(path, callback)
|
|
|
|
{
|
|
|
|
//read the files in the folder
|
|
|
|
fs.readdir(path, function(err, files)
|
|
|
|
{
|
|
|
|
if(ERR(err, callback)) return;
|
|
|
|
|
|
|
|
//we wanna check the directory itself for changes too
|
|
|
|
files.push(".");
|
|
|
|
|
|
|
|
//go trough all files in this folder
|
|
|
|
async.forEach(files, function(filename, callback)
|
|
|
|
{
|
|
|
|
//get the stat data of this file
|
|
|
|
fs.stat(path + "/" + filename, function(err, stats)
|
|
|
|
{
|
|
|
|
if(ERR(err, callback)) return;
|
|
|
|
|
|
|
|
//get the modification time
|
|
|
|
var modificationTime = stats.mtime.getTime();
|
|
|
|
|
|
|
|
//compare the modification time to the highest found
|
|
|
|
if(modificationTime > latestModification)
|
|
|
|
{
|
|
|
|
latestModification = modificationTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
callback();
|
|
|
|
});
|
|
|
|
}, callback);
|
|
|
|
});
|
|
|
|
}, function () {
|
2012-02-05 23:01:51 +00:00
|
|
|
callback(null, latestModification);
|
2012-01-23 01:19:46 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-02-20 02:31:46 +00:00
|
|
|
// This should be provided by the module, but until then, just use startup
|
|
|
|
// time.
|
|
|
|
var _requireLastModified = new Date();
|
|
|
|
function requireLastModified() {
|
|
|
|
return _requireLastModified.toUTCString();
|
|
|
|
}
|
2012-01-16 06:07:45 +00:00
|
|
|
function requireDefinition() {
|
|
|
|
return 'var require = ' + RequireKernel.kernelSource + ';\n';
|
|
|
|
}
|
|
|
|
|
2012-02-14 21:23:53 +00:00
|
|
|
function getFileCompressed(filename, contentType, callback) {
|
2012-01-29 11:30:31 +00:00
|
|
|
getFile(filename, function (error, content) {
|
|
|
|
if (error || !content) {
|
|
|
|
callback(error, content);
|
|
|
|
} else {
|
|
|
|
if (settings.minify) {
|
2012-02-14 21:23:53 +00:00
|
|
|
if (contentType == 'text/javascript') {
|
|
|
|
try {
|
|
|
|
content = compressJS([content]);
|
|
|
|
} catch (error) {
|
|
|
|
// silence
|
|
|
|
}
|
|
|
|
} else if (contentType == 'text/css') {
|
|
|
|
content = compressCSS([content]);
|
2012-01-29 11:30:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
callback(null, content);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getFile(filename, callback) {
|
2012-02-14 21:23:53 +00:00
|
|
|
if (filename == 'js/ace.js') {
|
2012-01-29 11:30:31 +00:00
|
|
|
getAceFile(callback);
|
2012-02-14 21:23:53 +00:00
|
|
|
} else if (filename == 'js/require-kernel.js') {
|
2012-02-05 22:54:20 +00:00
|
|
|
callback(undefined, requireDefinition());
|
2012-01-29 11:30:31 +00:00
|
|
|
} else {
|
2012-02-14 21:23:53 +00:00
|
|
|
fs.readFile(ROOT_DIR + filename, callback);
|
2012-01-29 11:30:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-28 17:09:17 +00:00
|
|
|
function compressJS(values)
|
|
|
|
{
|
|
|
|
var complete = values.join("\n");
|
|
|
|
var ast = jsp.parse(complete); // parse code and get the initial AST
|
|
|
|
ast = pro.ast_mangle(ast); // get a new AST with mangled names
|
2012-02-02 10:26:36 +00:00
|
|
|
ast = pro.ast_squeeze(ast); // get an AST with compression optimizations
|
2011-05-28 17:09:17 +00:00
|
|
|
return pro.gen_code(ast); // compressed code here
|
|
|
|
}
|
|
|
|
|
|
|
|
function compressCSS(values)
|
|
|
|
{
|
|
|
|
var complete = values.join("\n");
|
|
|
|
return cleanCSS.process(complete);
|
|
|
|
}
|