Newer
Older
Lloyd Hilaiel
committed
const
Austin King
committed
cachify = require('connect-cachify'),
Austin King
committed
config = require('../lib/configuration.js'),
Lloyd Hilaiel
committed
fs = require('fs'),
jsp = require("uglify-js").parser,
Austin King
committed
logger = require('../lib/logging.js').logger,
Lloyd Hilaiel
committed
pro = require("uglify-js").uglify,
uglifycss = require('uglifycss'),
mkdirp = require('mkdirp'),
path = require('path');
function compressResource(staticPath, name, files, cb) {
var orig_code = "";
var info = undefined;
Austin King
committed
// Cachify only used in compress for CSS Images, so no asserts needed
cachify.setup({}, {
prefix: config.get('cachify_prefix'),
root: staticPath
});
Lloyd Hilaiel
committed
function writeFile(final_code) {
mkdirp(path.join(staticPath, path.dirname(name)), function (err) {
if (err) cb(err);
else {
fs.writeFile(path.join(staticPath, name), final_code, function(err) {
cb(err, info);
});
};
});
}
function compress() {
try {
var final_code;
if (/\.js$/.test(name)) {
// compress javascript
var ast = jsp.parse(orig_code); // parse code and get the initial AST
ast = pro.ast_mangle(ast); // get a new AST with mangled names
ast = pro.ast_squeeze(ast); // get an AST with compression optimizations
final_code = pro.split_lines(pro.gen_code(ast), 32 * 1024); // compressed code here
} else if (/\.css$/.test(name)) {
// compress css
Austin King
committed
var cach_code = cachify_embedded(orig_code);
final_code = uglifycss.processString(cach_code);
} else {
return cb("can't determine content type: " + name);
}
writeFile(final_code);
} catch(e) {
cb("error compressing: " + e.toString() + "\n");
Lloyd Hilaiel
committed
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
}
}
function readNext() {
if (files.length) {
var f = files.shift();
fs.readFile(path.join(staticPath, f), function(err, data) {
if (err) cb(err);
else {
orig_code += data;
readNext();
}
});
} else {
compress();
}
}
function isBuildNeeded() {
// we'll check mtime on all files. if any is newer than the output file,
// build is needed
try {
var lastGen = fs.statSync(path.join(staticPath, name)).mtime;
for (var i = 0; i < files.length; i++) {
if (lastGen < fs.statSync(path.join(staticPath, files[i])).mtime) {
info = "rebuilt because " + files[i] + " was changed";
throw "newer";
}
};
// no rebuild needed
cb(null, "up to date");
} catch (e) {
readNext();
}
}
isBuildNeeded();
}
Austin King
committed
function cachify_embedded (css_src) {
Shane Tomlinson
committed
// RegExp is set up to handle multiple url's per declaration, which is
// possible for things like background-images.
return css_src.replace(/url\s*\(['"]([^\)'"]+)\s*['"]\s*\)/g, function (str, url) {
Austin King
committed
// This will throw an error if url doesn't exist. This is good as we will
// catch typos during build.
logger.info("For " + str + " making " + url + " into " + cachify.cachify(url));
return "url('" + cachify.cachify(url) + "')";
});
}
Lloyd Hilaiel
committed
process.on('message', function(m) {
var startTime = new Date;
compressResource(m.staticPath, m.file, m.deps, function(err, info) {
if (err) process.send({ error: err });
else process.send({
time: ((new Date - startTime) / 1000.0).toFixed(2),
info: info
});
});