Pages metadata by default

This commit is contained in:
Klemek
2019-06-23 15:02:33 +02:00
parent f2bd0ec10e
commit 989bcdf130
5 changed files with 39 additions and 5 deletions
+12
View File
@@ -36,6 +36,7 @@ module.exports = (config) => {
const articles = {};
let lastRSS = '';
let host;
/**
* Fetch articles from the data folder and send success as a response
@@ -73,6 +74,9 @@ module.exports = (config) => {
*/
const render = (res, vPath, data, code = 200) => {
data.info = {
title: config['home']['title'],
description: config['home']['description'],
host: host,
version: pjson.version
};
res.render(vPath, data, (err, html) => {
@@ -100,6 +104,14 @@ module.exports = (config) => {
});
};
app.use((req, res, next) => {
if (!host) {
host = 'http://' + req.headers.host;
console.log(cons.ok, 'Currently hosted on ' + host);
}
next();
});
//log request at result end
app.use((req, res, next) => {
if (config['access_log']) {