hexo-yam/lib/filter.js

215 lines
6.4 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 { promisify } = require('util')
const gzip = promisify(zlib.gzip)
2019-09-25 00:33:47 +00:00
const br = require('zlib').brotliCompress ? promisify(require('zlib').brotliCompress) : require('iltorb').compress
2019-07-10 02:20:23 +00:00
const micromatch = require('micromatch')
2019-09-15 15:16:53 +00:00
const isMatch = (path, patterns, options) => {
2019-07-10 02:20:23 +00:00
if (path && patterns && patterns.length) {
return micromatch.isMatch(path, patterns, options)
} else {
return false
}
}
2016-05-26 11:09:41 +00:00
2019-09-15 15:51:15 +00:00
function verbose (original, minified, path, ext) {
const saved = ((original.length - minified.length) / original.length * 100).toFixed(2)
const log = this.log || console
log.log(`${ext}: ${path} [${saved}% saved]`)
}
function error (msg) {
const log = this.log || console
log.error(msg)
}
2019-09-15 15:55:36 +00:00
function minifyHtml (str, data) {
const hexo = this
const options = hexo.config.minify.html
if (options.enable === false) return
2019-09-24 22:55:07 +00:00
const { path } = data
const { exclude, globOptions } = options
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)
2019-09-15 15:51:15 +00:00
if (options.logger) verbose.call(this, str, result, path, 'html')
return result
}
2016-05-26 11:09:41 +00:00
async function minifyCss (str, data) {
const hexo = this
const options = hexo.config.minify.css
if (options.enable === false) return
2016-05-26 11:09:41 +00:00
2019-09-24 22:55:07 +00:00
const { path } = data
const { exclude, globOptions } = options
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
try {
const result = await new CleanCSS(options).minify(str)
if (options.logger) verbose.call(this, str, result.styles, path, 'css')
return result.styles
} catch (err) {
2019-10-06 05:33:35 +00:00
error.call(this, err)
}
2016-05-26 11:09:41 +00:00
}
2019-09-15 15:55:36 +00:00
function minifyJs (str, data) {
const hexo = this
const options = hexo.config.minify.js
if (options.enable === false) return
2016-05-26 11:09:41 +00:00
2019-09-24 22:55:07 +00:00
const { path } = data
const { exclude, globOptions } = options
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)
2019-09-15 15:51:15 +00:00
if (options.logger) verbose.call(this, str, result.code, path, 'js')
return result.code
2016-05-26 11:09:41 +00:00
}
2019-09-15 15:55:36 +00:00
function minifySvg () {
2019-04-23 07:59:35 +00:00
const hexo = this
const options = hexo.config.minify.svg
2019-04-23 07:59:35 +00:00
if (options.enable === false) return
2019-09-24 22:55:07 +00:00
const { route } = hexo
2019-08-06 02:27:44 +00:00
const routeList = route.list()
2019-09-24 22:55:07 +00:00
const { globOptions, include } = options
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-09-24 22:55:07 +00:00
return Promise.all((micromatch(routeList, include, globOptions)).map((path) => {
2019-04-23 07:59:35 +00:00
return new Promise((resolve, reject) => {
2019-08-06 02:27:44 +00:00
const assetPath = route.get(path)
const assetTxt = []
assetPath.on('data', (chunk) => (assetTxt.push(chunk)))
assetPath.on('end', async () => {
2019-04-23 07:59:35 +00:00
if (assetTxt.length) {
try {
const result = await new Svgo(options).optimize(assetTxt)
if (options.logger) verbose.call(this, assetTxt.toString(), result.data, path, 'svg')
resolve(route.set(path, result.data))
} catch (err) {
error.call(this, err)
reject(err)
}
2019-04-23 07:59:35 +00:00
}
})
})
}))
}
2019-09-15 15:55:36 +00:00
function gzipFn () {
const hexo = this
const options = hexo.config.minify.gzip
if (options.enable === false) return
2019-09-24 22:55:07 +00:00
const { route } = hexo
2019-08-06 02:27:44 +00:00
const routeList = route.list()
2019-09-24 22:55:07 +00:00
const { globOptions, include } = options
let includeString = include || ''
if (include && Array.isArray(include)) includeString = include.join('')
if (includeString && includeString.includes('/')) globOptions.basename = false
2019-09-24 22:55:07 +00:00
return Promise.all((micromatch(routeList, include, globOptions)).map((path) => {
return new Promise((resolve, reject) => {
2019-08-06 02:27:44 +00:00
const assetPath = route.get(path)
const assetTxt = []
assetPath.on('data', (chunk) => (assetTxt.push(chunk)))
assetPath.on('end', async () => {
if (assetTxt.length) {
try {
const input = Buffer.from(assetTxt[0], 'utf-8')
const result = await gzip(input, { level: zlib.constants.Z_BEST_COMPRESSION })
if (options.logger) verbose.call(this, input, result.toString(), path, 'gzip')
resolve(route.set(path + '.gz', result))
} catch (err) {
2019-10-06 05:33:35 +00:00
error.call(this, err)
reject(err)
}
}
})
})
}))
2018-09-30 07:30:32 +00:00
}
2019-09-15 15:55:36 +00:00
function brotliFn () {
const hexo = this
const options = hexo.config.minify.brotli
if (options.enable === false) return
2019-09-24 22:55:07 +00:00
const { route } = hexo
2019-08-06 02:27:44 +00:00
const routeList = route.list()
2019-09-24 22:55:07 +00:00
const { globOptions, include } = options
let includeString = include || ''
if (include && Array.isArray(include)) includeString = include.join('')
if (includeString && includeString.includes('/')) globOptions.basename = false
2019-09-24 22:55:07 +00:00
return Promise.all((micromatch(routeList, include, globOptions)).map((path) => {
return new Promise((resolve, reject) => {
2019-08-06 02:27:44 +00:00
const assetPath = route.get(path)
const assetTxt = []
assetPath.on('data', (chunk) => (assetTxt.push(chunk)))
assetPath.on('end', async () => {
if (assetTxt.length) {
try {
const input = Buffer.from(assetTxt[0], 'utf-8')
2019-09-25 00:33:47 +00:00
const result = await br(input)
if (options.logger) verbose.call(this, input, result.toString(), path, 'brotli')
resolve(route.set(path + '.br', result))
} catch (err) {
2019-10-06 05:33:35 +00:00
error.call(this, err)
reject(err)
}
}
})
})
}))
2018-09-28 07:43:54 +00:00
}
2016-05-26 11:09:41 +00:00
module.exports = {
2019-09-15 15:55:36 +00:00
minifyHtml: minifyHtml,
minifyCss: minifyCss,
minifyJs: minifyJs,
minifySvg: minifySvg,
gzipFn: gzipFn,
brotliFn: brotliFn
}