hexo-yam/lib/filter.js

208 lines
6.1 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')
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
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]`)
}
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
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
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 (options.logger) verbose.call(this, str, styles, path, 'css')
return styles
} catch (err) {
throw new Error(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
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.logger
delete jsOptions.exclude
2019-07-10 02:20:23 +00:00
delete jsOptions.globOptions
const { code, error } = Terser.minify(str, jsOptions)
if (error) throw new Error(error)
2019-11-09 07:16:07 +00:00
if (options.logger) verbose.call(this, str, code, path, 'js')
2019-09-15 15:51:15 +00:00
2019-11-09 07:16:07 +00:00
return 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)
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 } = await new Svgo(options).optimize(assetTxt)
if (options.logger) verbose.call(this, assetTxt, data, path, 'svg')
resolve(route.set(path, data))
} catch (err) {
reject(new Error(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)
let assetTxt = ''
assetPath.on('data', (chunk) => (assetTxt += chunk))
assetPath.on('end', async () => {
if (assetTxt.length) {
try {
// TODO: Drop Buffer
const input = Buffer.from(assetTxt, 'utf-8')
const result = await gzip(input, { level: zlib.constants.Z_BEST_COMPRESSION })
if (options.logger) verbose.call(this, input, result, path, 'gzip')
resolve(route.set(path + '.gz', result))
} catch (err) {
reject(new Error(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)
let assetTxt = ''
assetPath.on('data', (chunk) => (assetTxt += chunk))
assetPath.on('end', async () => {
if (assetTxt.length) {
try {
const input = Buffer.from(assetTxt, 'utf-8')
2019-09-25 00:33:47 +00:00
const result = await br(input)
if (options.logger) verbose.call(this, input, result, path, 'brotli')
resolve(route.set(path + '.br', result))
} catch (err) {
reject(new Error(err))
}
}
})
})
}))
2018-09-28 07:43:54 +00:00
}
2016-05-26 11:09:41 +00:00
module.exports = {
minifyHtml,
minifyCss,
minifyJs,
minifySvg,
gzipFn,
brotliFn
}