feat: optional kroki/plantuml svg caching (#2047)
* feat: Caching kroki svgs #2020
This commit is contained in:
parent
e03a80dccc
commit
77086a6e0a
@ -24,7 +24,7 @@ module.exports = {
|
||||
|
||||
for (let child of _.reject(this.children, ['step', 'post'])) {
|
||||
const renderer = require(`../${_.kebabCase(child.key)}/renderer.js`)
|
||||
renderer.init($, child.config)
|
||||
await renderer.init($, child.config)
|
||||
}
|
||||
|
||||
// --------------------------------
|
||||
|
@ -0,0 +1,8 @@
|
||||
key: htmlImagePrefetch
|
||||
title: Image Prefetch
|
||||
description: Prefetch remotely rendered images (korki/plantuml)
|
||||
author: requarks.io
|
||||
icon: mdi-cloud-download-outline
|
||||
enabledDefault: false
|
||||
dependsOn: htmlCore
|
||||
props: {}
|
30
server/modules/rendering/html-image-prefetch/renderer.js
Normal file
30
server/modules/rendering/html-image-prefetch/renderer.js
Normal file
@ -0,0 +1,30 @@
|
||||
const request = require('request-promise')
|
||||
|
||||
const prefetch = async (element) => {
|
||||
const url = element.attr(`src`)
|
||||
let response
|
||||
try {
|
||||
response = await request({
|
||||
method: `GET`,
|
||||
url,
|
||||
resolveWithFullResponse: true
|
||||
})
|
||||
} catch (err) {
|
||||
WIKI.logger.warn(`Failed to prefetch ${url}`)
|
||||
WIKI.logger.warn(err)
|
||||
return
|
||||
}
|
||||
const contentType = response.headers[`content-type`]
|
||||
const image = Buffer.from(response.body).toString('base64')
|
||||
element.attr('src', `data:${contentType};base64,${image}`)
|
||||
element.removeClass('prefetch-candidate');
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
async init($) {
|
||||
const promises = $('img.prefetch-candidate').map((index, element) => {
|
||||
return prefetch($(element))
|
||||
}).toArray()
|
||||
await Promise.all(promises)
|
||||
}
|
||||
}
|
@ -120,7 +120,7 @@ module.exports = {
|
||||
|
||||
token = state.push('kroki', 'img', 0)
|
||||
// alt is constructed from children. No point in populating it here.
|
||||
token.attrs = [ [ 'src', `${server}/${diagramType}/svg/${result}` ], [ 'alt', '' ], ['class', 'uml-diagram'] ]
|
||||
token.attrs = [ [ 'src', `${server}/${diagramType}/svg/${result}` ], [ 'alt', '' ], ['class', 'uml-diagram prefetch-candidate'] ]
|
||||
token.block = true
|
||||
token.children = altToken
|
||||
token.info = params
|
||||
|
@ -116,7 +116,7 @@ module.exports = {
|
||||
|
||||
token = state.push('uml_diagram', 'img', 0)
|
||||
// alt is constructed from children. No point in populating it here.
|
||||
token.attrs = [ [ 'src', `${server}/${imageFormat}/${zippedCode}` ], [ 'alt', '' ], ['class', 'uml-diagram'] ]
|
||||
token.attrs = [ [ 'src', `${server}/${imageFormat}/${zippedCode}` ], [ 'alt', '' ], ['class', 'uml-diagram prefetch-candidate'] ]
|
||||
token.block = true
|
||||
token.children = altToken
|
||||
token.info = params
|
||||
|
Loading…
Reference in New Issue
Block a user