hexo-yam/lib/filter.js

142 lines
4.4 KiB
JavaScript
Raw Normal View History

2016-05-26 11:09:41 +00:00
/* global hexo */
'use strict';
var CleanCSS = require('clean-css'),
UglifyJS = require('uglify-js'),
Htmlminifier = require('html-minifier').minify,
streamToArray = require('stream-to-array');
var Promise = require('bluebird');
var minimatch = require('minimatch');
2018-09-28 07:43:54 +00:00
var zlib = require('zlib');
var fs = require('hexo-fs');
2016-05-26 11:09:41 +00:00
function logic_html(str, data) {
var hexo = this,
2016-05-26 11:46:01 +00:00
options = hexo.config.neat_html;
2016-05-26 11:09:41 +00:00
// Return if disabled.
if (false === options.enable) return;
var path = data.path;
var exclude = options.exclude;
if (exclude && !Array.isArray(exclude)) exclude = [exclude];
if (path && exclude && exclude.length) {
for (var i = 0, len = exclude.length; i < len; i++) {
if (minimatch(path, exclude[i], {matchBase: true})) return str;
2016-05-26 11:09:41 +00:00
}
}
var result = Htmlminifier(str, options);
var saved = ((str.length - result.length) / str.length * 100).toFixed(2);
if (options.logger) {
var log = hexo.log || console.log;
2018-09-28 07:43:54 +00:00
log.log('Minify the html: %s [%s saved]', path, saved + '%');
}
2016-05-26 11:09:41 +00:00
return result;
}
2016-05-26 11:09:41 +00:00
function logic_css(str, data) {
var hexo = this,
2016-06-22 11:15:47 +00:00
options = hexo.config.neat_css;
2016-05-26 11:09:41 +00:00
// Return if disabled.
if (false === options.enable) return;
var path = data.path;
var exclude = options.exclude;
if (exclude && !Array.isArray(exclude)) exclude = [exclude];
if (path && exclude && exclude.length) {
for (var i = 0, len = exclude.length; i < len; i++) {
if (minimatch(path, exclude[i], {matchBase: true})) return str;
2016-05-26 11:09:41 +00:00
}
}
2016-06-22 11:15:47 +00:00
return new Promise(function (resolve, reject) {
new CleanCSS(options).minify(str, function (err, result) {
2016-05-26 11:09:41 +00:00
if (err) return reject(err);
var saved = ((str.length - result.styles.length) / str.length * 100).toFixed(2);
resolve(result.styles);
if (options.logger) {
var log = hexo.log || console.log;
2018-09-28 07:43:54 +00:00
log.log('Minify the css: %s [%s saved]', path, saved + '%');
}
2016-05-26 11:09:41 +00:00
});
});
}
function logic_js(str, data) {
var hexo = this,
2016-05-26 11:46:01 +00:00
options = hexo.config.neat_js;
2016-05-26 11:09:41 +00:00
// Return if disabled.
if (false === options.enable) return;
var path = data.path;
var exclude = options.exclude;
if (exclude && !Array.isArray(exclude)) exclude = [exclude];
if (path && exclude && exclude.length) {
for (var i = 0, len = exclude.length; i < len; i++) {
if (minimatch(path, exclude[i], {matchBase: true})) return str;
2016-05-26 11:09:41 +00:00
}
}
//uglifyjs doesn't like unsupported options
delete options.enable;
delete options.exclude;
var js_logger = options.logger;
delete options.logger;
2016-05-26 11:09:41 +00:00
var result = UglifyJS.minify(str, options);
var saved = ((str.length - result.code.length) / str.length * 100).toFixed(2);
if (js_logger) {
var log = hexo.log || console.log;
2018-09-28 07:43:54 +00:00
log.log('Minify the js: %s [%s saved]', path, saved + '%');
}
return result.code;
2016-05-26 11:09:41 +00:00
}
2018-09-28 07:43:54 +00:00
function logic_gzip() {
var hexo = this,
options = hexo.config.neat_gzip;
2018-09-28 07:43:54 +00:00
// Return if disabled.
if (false === options.enable) return;
var publicFolder = hexo.public_dir;
2018-09-28 07:43:54 +00:00
var compressFile = function (currentPath) {
var fileExist = fs.existsSync(currentPath);
if (fileExist) {
var files = fs.listDirSync(currentPath);
for (var i in files) {
var currentFile = currentPath + files[i];
var stats = fs.statSync(currentFile);
if (stats.isFile()) {
if(currentFile.endsWith(".htm") ||
currentFile.endsWith(".html") ||
currentFile.endsWith(".js") ||
currentFile.endsWith(".css") ||
currentFile.endsWith(".txt")) {
var gzip = zlib.createGzip('level=9');
var inp = fs.createReadStream(currentFile);
var out = fs.createWriteStream(currentFile+'.gz');
inp.pipe(gzip).pipe(out);
if (options.logger) {
var log = hexo.log || console.log;
log.log('Compress the file: %s', currentFile);
}
2018-09-28 07:43:54 +00:00
}
} else if (stats.isDirectory()) {
compressFile(currentFile);
2018-09-28 07:43:54 +00:00
}
}
}
}
2018-09-28 07:43:54 +00:00
compressFile(publicFolder);
}
2016-05-26 11:09:41 +00:00
module.exports = {
logic_html: logic_html,
logic_css: logic_css,
logic_js: logic_js,
logic_gzip: logic_gzip
2016-06-22 11:15:47 +00:00
};