Change the example code in tentative documentation to match the URL parser changes

This commit is contained in:
Dorian Niemiec 2024-08-27 19:16:11 +02:00
parent 303fc3dbb4
commit d2922b0fed

View file

@ -1601,7 +1601,7 @@ module.exports = (req, res, logFacilities, config, next) => {
if (req.parsedURL.pathname == "/page.svr") {
fs.readFile(".template", (err, data) => {
if (err) throw err; //EVIL!!!
let id = req.parsedURL.searchParams.get("id");
let id = req.parsedURL.query.id;
if (!id) id = "index";
if (fs.existsSync("pages/" + id + ".html")) {
fs.readFile("pages/" + id + ".html", (err2, data2) => {
@ -1643,7 +1643,7 @@ module.exports = (req, res, logFacilities, config, next) => {
res.error(500, err);
return;
}
let id = req.parsedURL.searchParams.get("id");
let id = req.parsedURL.query.id;
if (!id) id = "index";
id = id.replace(/\\/g,"/").replace(/(?:\/|^)\.\.(?=(\/|$))/g,"$1").replace(/\/+/g,"/"); //Poor mans path sanitiation
if (fs.existsSync("pages/" + id + ".html")) {