hexo-yam/lib/xml.js

37 lines
1.0 KiB
JavaScript
Raw Normal View History

2024-12-02 08:48:09 +00:00
'use strict'
const { minify: compressXml } = require('minify-xml')
const { match, logFn } = require('./tools')
function minifyXml() {
const hexo = this
const options = hexo.config.minify.xml
const route = hexo.route
2024-12-02 08:48:09 +00:00
/** @type {string[]} */
const routeList = route.list()
const { globOptions, include, verbose } = options
return Promise.all((match(routeList, include, globOptions)).map(path => {
return new Promise((/** @type {(value: string) => void} */ 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 })
if (verbose) logFn.call(this, assetTxt, result, path, 'xml')
resolve(route.set(path, result))
} catch (err) {
reject(new Error(`Path: ${path}\n${err}`))
}
}
resolve(assetTxt)
})
})
}))
}
module.exports = {
minifyXml
}