hexo-yam/lib/filter.js

248 lines
7.7 KiB
JavaScript
Raw Normal View History

'use strict'
2019-05-27 01:14:04 +00:00
const Htmlminifier = require('html-minifier').minify
const CleanCSS = require('clean-css')
const Terser = require('terser')
2019-07-10 02:20:23 +00:00
const Svgo = require('svgo')
const zlib = require('zlib')
const br = require('iltorb')
2019-07-10 02:20:23 +00:00
const micromatch = require('micromatch')
function isMatch (path, patterns, options) {
if (path && patterns && patterns.length) {
return micromatch.isMatch(path, patterns, options)
} else {
return false
}
}
2016-05-26 11:09:41 +00:00
function logicHtml (str, data) {
const hexo = this
const options = hexo.config.neat_html
// Return if disabled.
if (options.enable === false) return
2019-07-10 02:20:23 +00:00
const path = data.path
const exclude = options.exclude
const globOptions = options.globOptions
let excludeString = exclude || ''
if (Array.isArray(exclude)) excludeString = exclude.join('')
if (excludeString.includes('/')) globOptions.basename = false
2019-04-23 04:05:59 +00:00
// Return if a path matches exclusion pattern
2019-07-10 02:20:23 +00:00
if (isMatch(path, exclude, globOptions)) return str
2019-08-06 02:27:44 +00:00
const result = Htmlminifier(str, options)
const saved = ((str.length - result.length) / str.length * 100).toFixed(2)
if (options.logger) {
2019-08-06 02:27:44 +00:00
const log = hexo.log || console.log
log.log('Minify the html: %s [%s saved]', path, saved + '%')
}
return result
}
2016-05-26 11:09:41 +00:00
function logicCss (str, data) {
const hexo = this
const options = hexo.config.neat_css
if (options.enable === false) return
2016-05-26 11:09:41 +00:00
2019-07-10 02:20:23 +00:00
const path = data.path
const exclude = options.exclude
const globOptions = options.globOptions
2016-06-22 11:15:47 +00:00
let excludeString = exclude || ''
if (exclude && Array.isArray(exclude)) excludeString = exclude.join('')
if (excludeString && excludeString.includes('/')) globOptions.basename = false
2019-07-10 02:20:23 +00:00
if (isMatch(path, exclude, globOptions)) return str
return new Promise((resolve, reject) => {
new CleanCSS(options).minify(str, (err, result) => {
if (err) return reject(err)
2019-08-06 02:27:44 +00:00
const saved = ((str.length - result.styles.length) / str.length * 100).toFixed(2)
resolve(result.styles)
if (options.logger) {
2019-08-06 02:27:44 +00:00
const log = hexo.log || console.log
log.log('Minify the css: %s [%s saved]', path, saved + '%')
}
})
})
2016-05-26 11:09:41 +00:00
}
function logicJs (str, data) {
const hexo = this
const options = hexo.config.neat_js
if (options.enable === false) return
2016-05-26 11:09:41 +00:00
2019-07-10 02:20:23 +00:00
const path = data.path
const exclude = options.exclude
const globOptions = options.globOptions
2016-05-26 11:09:41 +00:00
let excludeString = exclude || ''
if (exclude && Array.isArray(exclude)) excludeString = exclude.join('')
if (excludeString && excludeString.includes('/')) globOptions.basename = false
2019-07-10 02:20:23 +00:00
if (isMatch(path, exclude, globOptions)) return str
// Terser doesn't like unsupported options
2019-04-23 04:05:59 +00:00
const jsOptions = Object.assign({}, options)
delete jsOptions.enable
delete jsOptions.exclude
delete jsOptions.logger
2019-07-10 02:20:23 +00:00
delete jsOptions.globOptions
2019-08-06 02:27:44 +00:00
const result = Terser.minify(str, jsOptions)
const saved = ((str.length - result.code.length) / str.length * 100).toFixed(2)
if (options.logger) {
2019-08-06 02:27:44 +00:00
const log = hexo.log || console.log
log.log('Minify the js: %s [%s saved]', path, saved + '%')
}
return result.code
2016-05-26 11:09:41 +00:00
}
2019-04-23 07:59:35 +00:00
function logicSvg () {
const hexo = this
const options = hexo.config.neat_svg
// Return if disabled.
if (options.enable === false) return
2019-08-06 02:27:44 +00:00
const route = hexo.route
const routeList = route.list()
const include = options.include
2019-07-10 02:20:23 +00:00
const globOptions = options.globOptions
2019-04-23 07:59:35 +00:00
let includeString = include || ''
if (include && Array.isArray(include)) includeString = include.join('')
if (includeString && includeString.includes('/')) globOptions.basename = false
2019-07-10 02:20:23 +00:00
return Promise.all((micromatch(routeList, include, globOptions)).map(path => {
2019-04-23 07:59:35 +00:00
return new Promise((resolve, reject) => {
// Grab all assets using hexo router
2019-08-06 02:27:44 +00:00
const assetPath = route.get(path)
2019-04-23 07:59:35 +00:00
let assetTxt = ''
// Extract the content
assetPath.on('data', (chunk) => (assetTxt += chunk))
assetPath.on('end', () => {
if (assetTxt.length) {
2019-04-23 08:27:52 +00:00
// Minify using svgo
2019-07-10 02:20:23 +00:00
new Svgo(options).optimize(assetTxt).then((result) => {
2019-05-02 06:25:43 +00:00
// Replace the original file with the minified.
route.set(path, result.data)
// Logging
2019-08-06 02:27:44 +00:00
const saved = ((assetTxt.length - result.data.length) / assetTxt.length * 100).toFixed(2)
2019-05-02 06:25:43 +00:00
if (options.logger) {
2019-08-06 02:27:44 +00:00
const log = hexo.log || console.log
2019-05-02 06:25:43 +00:00
log.log('Minify the svg: %s [%s saved]', path, saved + '%')
}
resolve(assetTxt)
2019-04-23 07:59:35 +00:00
})
}
})
})
}))
}
function logicGzip () {
const hexo = this
const options = hexo.config.neat_gzip
// Return if disabled.
if (options.enable === false) return
2019-08-06 02:27:44 +00:00
const route = hexo.route
const routeList = route.list()
const include = options.include
2019-07-10 02:20:23 +00:00
const globOptions = options.globOptions
let includeString = include || ''
if (include && Array.isArray(include)) includeString = include.join('')
if (includeString && includeString.includes('/')) globOptions.basename = false
2019-07-10 02:20:23 +00:00
return Promise.all((micromatch(routeList, include, globOptions)).map(path => {
return new Promise((resolve, reject) => {
// Grab all assets using hexo router
2019-08-06 02:27:44 +00:00
const assetPath = route.get(path)
let assetTxt = ''
// Extract the content
assetPath.on('data', (chunk) => (assetTxt += chunk))
assetPath.on('end', () => {
if (assetTxt.length) {
// gzip compress using highest level
zlib.gzip(assetTxt, { level: zlib.constants.Z_BEST_COMPRESSION }, (err, Input) => {
if (!err) {
// Save the compressed file to .gz
route.set(path + '.gz', Input)
// Logging
2019-08-06 02:27:44 +00:00
const saved = ((assetTxt.length - Input.toString().length) / assetTxt.length * 100).toFixed(2)
if (options.logger) {
2019-08-06 02:27:44 +00:00
const log = hexo.log || console.log
log.log('Gzip-compressed %s [%s saved]', path, saved + '%')
2018-09-30 07:30:32 +00:00
}
resolve(assetTxt)
} else {
reject(err)
}
})
}
})
})
}))
2018-09-30 07:30:32 +00:00
}
function logicBrotli () {
const hexo = this
const options = hexo.config.neat_brotli
// Return if disabled.
if (options.enable === false) return
2019-08-06 02:27:44 +00:00
const route = hexo.route
const routeList = route.list()
const include = options.include
2019-07-10 02:20:23 +00:00
const globOptions = options.globOptions
let includeString = include || ''
if (include && Array.isArray(include)) includeString = include.join('')
if (includeString && includeString.includes('/')) globOptions.basename = false
2019-07-10 02:20:23 +00:00
return Promise.all((micromatch(routeList, include, globOptions)).map(path => {
return new Promise((resolve, reject) => {
// Grab all assets using hexo router
2019-08-06 02:27:44 +00:00
const assetPath = route.get(path)
let assetTxt = ''
// Extract the content
assetPath.on('data', (chunk) => (assetTxt += chunk))
assetPath.on('end', () => {
if (assetTxt.length) {
// Input has to be buffer for brotli
2019-08-06 02:27:44 +00:00
const input = Buffer.from(assetTxt, 'utf-8')
// brotli defaults to max compression level
br.compress(input, (err, output) => {
if (!err) {
// Save the compressed file to .br
route.set(path + '.br', output)
// Logging
2019-08-06 02:27:44 +00:00
const saved = ((input.length - output.toString().length) / input.length * 100).toFixed(2)
if (options.logger) {
2019-08-06 02:27:44 +00:00
const log = hexo.log || console.log
log.log('Brotli-compressed %s [%s saved]', path, saved + '%')
}
resolve(assetTxt)
} else {
reject(err)
}
})
}
})
})
}))
2018-09-28 07:43:54 +00:00
}
2016-05-26 11:09:41 +00:00
module.exports = {
logicHtml: logicHtml,
logicCss: logicCss,
logicJs: logicJs,
2019-04-23 07:59:35 +00:00
logicSvg: logicSvg,
logicGzip: logicGzip,
logicBrotli: logicBrotli
}