jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
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.
 
 
 
 
 

30 lines
1.1 KiB

'use strict';
const { globalLimits, boardDefaults, cacheTemplates, meta } = require(__dirname+'/../configs/main.json')
, { outputFile } = require('fs-extra')
, pug = require('pug')
, path = require('path')
, uploadDirectory = require(__dirname+'/files/uploadDirectory.js')
, redlock = require(__dirname+'/../redlock.js')
, themes = require(__dirname+'/themes.js')
, templateDirectory = path.join(__dirname+'/../views/pages/')
module.exports = async (htmlName, templateName, options, json=null) => {
const html = pug.renderFile(`${templateDirectory}${templateName}`, {
...options,
cache: cacheTemplates,
meta,
defaultTheme: boardDefaults.theme,
globalLimits,
themes
});
const lock = await redlock.lock(`locks:${htmlName}`, 3000); //what is a reasonable ttl?
const htmlPromise = outputFile(`${uploadDirectory}/html/${htmlName}`, html);
let jsonPromise;
if (json !== null) {
jsonPromise = outputFile(`${uploadDirectory}/json/${json.name}`, JSON.stringify(json.data));
}
await Promise.all([htmlPromise, jsonPromise]);
await lock.unlock();
return html;
};