2024-12-02 08:48:09 +00:00
|
|
|
'use strict'
|
|
|
|
const { compress: zstd } = require('@mongodb-js/zstd')
|
|
|
|
const { match, logFn } = require('./tools')
|
|
|
|
|
|
|
|
function zstdFn() {
|
|
|
|
const hexo = this
|
|
|
|
const options = hexo.config.minify.zstd
|
|
|
|
|
2024-12-03 08:18:51 +00:00
|
|
|
const route = hexo.route
|
2024-12-02 08:48:09 +00:00
|
|
|
/** @type {string[]} */
|
|
|
|
const routeList = route.list()
|
|
|
|
const { globOptions, include, verbose } = options
|
2024-12-03 08:18:51 +00:00
|
|
|
let level = options.level
|
2024-12-02 08:48:09 +00:00
|
|
|
if (typeof level !== 'number') level = undefined
|
|
|
|
|
|
|
|
return Promise.all((match(routeList, include, globOptions)).map(path => {
|
2024-12-03 09:26:45 +00:00
|
|
|
return new Promise((/** @type {(value: void) => void} */ resolve, reject) => {
|
2024-12-02 08:48:09 +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')
|
|
|
|
const result = await zstd(input, level)
|
|
|
|
if (verbose) logFn.call(this, assetTxt, result, path, 'zstd')
|
2024-12-03 09:26:45 +00:00
|
|
|
route.set(path + '.zst', result)
|
2024-12-02 08:48:09 +00:00
|
|
|
} catch (err) {
|
|
|
|
reject(new Error(`Path: ${path}\n${err}`))
|
|
|
|
}
|
|
|
|
}
|
2024-12-03 09:26:45 +00:00
|
|
|
resolve()
|
2024-12-02 08:48:09 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
zstdFn
|
|
|
|
}
|