hexo-yam/lib/filter.js

303 lines
8.9 KiB
JavaScript
Raw Normal View History

'use strict'
2019-05-27 01:14:04 +00:00
const { minify: htmlMinify } = require('html-minifier-terser')
const CleanCSS = require('clean-css')
const { minify: terserMinify } = require('terser')
const { optimize: svgOptimize } = require('svgo')
const zlib = require('zlib')
const { promisify } = require('util')
const gzip = promisify(zlib.gzip)
const br = promisify(zlib.brotliCompress)
const { minify: compressXml } = require('minify-xml')
2019-07-10 02:20:23 +00:00
const micromatch = require('micromatch')
const isMatch = (path = '', patterns = [], options = {}) => {
if (path && patterns) {
if (path.length && patterns.length) {
if (typeof patterns === 'string') patterns = [patterns]
for (const pattern of patterns) {
// disable basename if a pattern includes a slash
let { basename } = options
// only disable when basename is enabled
basename = basename && !pattern.includes('/')
if (micromatch.isMatch(path, pattern, { ...options, basename })) {
return true
}
}
}
2019-07-10 02:20:23 +00:00
}
return false
2019-07-10 02:20:23 +00:00
}
2016-05-26 11:09:41 +00:00
const match = (paths = [], patterns = [], options = {}) => {
let input = paths
if (paths && patterns) {
if (paths.length && patterns.length) {
const output = []
if (typeof patterns === 'string') patterns = [patterns]
const exclude = patterns.filter((pattern) => pattern.startsWith('!'))
const include = patterns.filter((pattern) => !pattern.startsWith('!'))
if (exclude.length) input = micromatch(paths, exclude, options)
if (include.length) {
for (const pattern of include) {
let { basename } = options
basename = basename && !pattern.includes('/')
const tmp = micromatch(input, pattern, { ...options, basename })
if (tmp.length) output.push(...tmp)
}
return [...new Set(output)]
}
return input
}
}
return paths
}
function logFn (original, minified, path, ext) {
2019-09-15 15:51:15 +00:00
const saved = ((original.length - minified.length) / original.length * 100).toFixed(2)
const log = this.log || console
log.log(`${ext}: ${path} [${saved}% saved]`)
}
async function minifyHtml (str, data) {
const hexo = this
const options = hexo.config.minify.html
2020-01-02 12:49:29 +00:00
if (options.enable === false || !str) return
2019-09-24 22:55:07 +00:00
const { path } = data
const { exclude, globOptions, verbose } = options
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
try {
const result = await htmlMinify(str, options)
if (verbose) logFn.call(this, str, result, path, 'html')
2019-09-15 15:51:15 +00:00
return result
} catch (err) {
2020-09-05 11:58:20 +00:00
throw new Error(`Path: ${path}\n${err}`)
}
}
2016-05-26 11:09:41 +00:00
async function minifyCss (str, data) {
const hexo = this
const options = hexo.config.minify.css
2020-01-02 12:49:29 +00:00
if (options.enable === false || !str) return
2016-05-26 11:09:41 +00:00
2019-09-24 22:55:07 +00:00
const { path } = data
const { exclude, globOptions, verbose } = options
2016-06-22 11:15:47 +00:00
2019-07-10 02:20:23 +00:00
if (isMatch(path, exclude, globOptions)) return str
try {
2019-11-09 07:16:07 +00:00
const { styles } = await new CleanCSS(options).minify(str)
if (verbose) logFn.call(this, str, styles, path, 'css')
2019-11-09 07:16:07 +00:00
return styles
} catch (err) {
2020-09-05 11:58:20 +00:00
throw new Error(`Path: ${path}\n${err}`)
}
2016-05-26 11:09:41 +00:00
}
async function minifyJs (str, data) {
const hexo = this
const options = hexo.config.minify.js
2020-01-02 12:49:29 +00:00
if (options.enable === false || !str) return
2016-05-26 11:09:41 +00:00
2019-09-24 22:55:07 +00:00
const { path } = data
const { exclude, globOptions, verbose } = options
2016-05-26 11:09:41 +00:00
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.priority
delete jsOptions.verbose
// Old option, retained to avoid crash when upgrading to v4
delete jsOptions.logger
delete jsOptions.exclude
2019-07-10 02:20:23 +00:00
delete jsOptions.globOptions
try {
const { code } = await terserMinify(str, jsOptions)
if (verbose) logFn.call(this, str, code, path, 'js')
return code
} catch (err) {
2020-09-05 11:58:20 +00:00
throw new Error(`Path: ${path}\n${err}`)
}
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()
const { globOptions, include, verbose } = options
// const plugins = Array.isArray(options.plugins) ? extendDefaultPlugins(options.plugins) : extendDefaultPlugins([])
const pluginCfg = Object.prototype.toString.call(options.plugins) === '[object Object]' ? { ...options.plugins } : {}
const plugins = [{
name: 'preset-default',
params: {
overrides: pluginCfg
}
}]
2019-04-23 07:59:35 +00:00
return Promise.all((match(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)
let assetTxt = ''
assetPath.on('data', (chunk) => (assetTxt += chunk))
assetPath.on('end', async () => {
2019-04-23 07:59:35 +00:00
if (assetTxt.length) {
try {
const { data } = svgOptimize(assetTxt, { ...options, plugins })
2022-11-06 04:50:36 +00:00
if (verbose) logFn.call(this, assetTxt, data, path, 'svg')
resolve(route.set(path, data))
} catch (err) {
reject(new Error(`Path: ${path}\n${err}`))
}
2019-04-23 07:59:35 +00:00
}
2020-01-02 12:49:29 +00:00
resolve()
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()
const { globOptions, include, verbose } = options
let { level } = options
if (typeof level !== 'number') level = zlib.constants.Z_BEST_COMPRESSION
return Promise.all((match(routeList, include, globOptions)).map((path) => {
return new Promise((resolve, reject) => {
2019-08-06 02:27:44 +00:00
const assetPath = route.get(path)
let assetTxt = ''
assetPath.on('data', (chunk) => (assetTxt += chunk))
assetPath.on('end', async () => {
if (assetTxt.length) {
try {
const result = await gzip(assetTxt, { level })
if (verbose) logFn.call(this, assetTxt, result, path, 'gzip')
resolve(route.set(path + '.gz', result))
} catch (err) {
2020-09-05 11:58:20 +00:00
reject(new Error(`Path: ${path}\n${err}`))
}
}
2020-01-02 12:49:29 +00:00
resolve()
})
})
}))
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()
const { globOptions, include, verbose } = options
let { level } = options
if (typeof level !== 'number') level = zlib.constants.BROTLI_MAX_QUALITY
return Promise.all((match(routeList, include, globOptions)).map((path) => {
return new Promise((resolve, reject) => {
2019-08-06 02:27:44 +00:00
const assetPath = route.get(path)
let assetTxt = ''
assetPath.on('data', (chunk) => (assetTxt += chunk))
assetPath.on('end', async () => {
if (assetTxt.length) {
try {
const result = await br(assetTxt, { params: { [zlib.constants.BROTLI_PARAM_QUALITY]: level } })
if (verbose) logFn.call(this, assetTxt, result, path, 'brotli')
resolve(route.set(path + '.br', result))
} catch (err) {
2020-09-05 11:58:20 +00:00
reject(new Error(`Path: ${path}\n${err}`))
}
}
2020-01-02 12:49:29 +00:00
resolve()
})
})
}))
2018-09-28 07:43:54 +00:00
}
2020-01-03 00:35:25 +00:00
function minifyXml () {
const hexo = this
const options = hexo.config.minify.xml
if (options.enable === false) return
const { route } = hexo
const routeList = route.list()
const { globOptions, include, verbose } = options
2020-01-03 00:35:25 +00:00
return Promise.all((match(routeList, include, globOptions)).map((path) => {
return new Promise((resolve, reject) => {
const assetPath = route.get(path)
let assetTxt = ''
assetPath.on('data', (chunk) => (assetTxt += chunk))
assetPath.on('end', () => {
if (assetTxt.length) {
try {
const result = compressXml(assetTxt, { ...options })
2020-01-03 00:35:25 +00:00
if (verbose) logFn.call(this, assetTxt, result, path, 'xml')
resolve(route.set(path, result))
} catch (err) {
2020-09-05 11:58:20 +00:00
reject(new Error(`Path: ${path}\n${err}`))
2020-01-03 00:35:25 +00:00
}
}
resolve()
})
})
}))
}
2020-01-03 01:16:38 +00:00
function minifyJson () {
const hexo = this
const options = hexo.config.minify.json
if (options.enable === false) return
const { route } = hexo
const routeList = route.list()
const { globOptions, include, verbose } = options
return Promise.all((match(routeList, include, globOptions)).map((path) => {
return new Promise((resolve, reject) => {
const assetPath = route.get(path)
let assetTxt = ''
assetPath.on('data', (chunk) => (assetTxt += chunk))
assetPath.on('end', () => {
if (assetTxt.length) {
try {
const result = JSON.stringify(JSON.parse(assetTxt))
if (verbose) logFn.call(this, assetTxt, result, path, 'json')
resolve(route.set(path, result))
} catch (err) {
2020-09-05 11:58:20 +00:00
reject(new Error(`Path: ${path}\n${err}`))
2020-01-03 01:16:38 +00:00
}
}
resolve()
})
})
}))
}
2016-05-26 11:09:41 +00:00
module.exports = {
minifyHtml,
minifyCss,
minifyJs,
minifySvg,
gzipFn,
2020-01-03 00:35:25 +00:00
brotliFn,
2020-01-03 01:16:38 +00:00
minifyXml,
minifyJson
}