You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wiki/backend/controllers/render.ts

39 lines
1.2 KiB

import type { FastifyInstance } from 'fastify'
/**
* The page a headless browser loads in order to render markdown for the server.
*
* Nothing but a host for the frontend's renderer bundle — it holds no data, reads nothing and
* displays nothing. `models/rendering.ts` navigates here, waits for `__wikiRenderReady` and calls
* `__wikiRender` with the content to render.
*/
const SHELL = `<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Wiki.js Renderer</title>
</head>
<body>
<script type="module" src="/_assets/renderer.js"></script>
</body>
</html>
`
/**
* _render Routes
*
* Only ever fetched over the loopback interface by this instance's own headless browser, but served
* like the other static shells rather than gated: there is nothing here to protect, and a session the
* browser does not have could not be checked anyway.
*/
async function routes(app: FastifyInstance) {
app.get('/', async (_req, reply) => {
// -> The bundle it pulls in is hashed and immutable, but this page must not be, or a rebuilt
// frontend would keep rendering through the previous one
reply.header('Cache-Control', 'no-store')
return reply.type('text/html; charset=utf-8').send(SHELL)
})
}
export default routes