2018-09-20 21:04:34 +03:00
|
|
|
const ghostVersion = require('../../../lib/ghost-version');
|
2021-04-23 16:19:18 +03:00
|
|
|
const bridge = require('../../../../shared/bridge');
|
2016-10-10 22:14:32 +03:00
|
|
|
|
|
|
|
// ### GhostLocals Middleware
|
|
|
|
// Expose the standard locals that every request will need to have available
|
|
|
|
module.exports = function ghostLocals(req, res, next) {
|
|
|
|
// Make sure we have a locals value.
|
|
|
|
res.locals = res.locals || {};
|
|
|
|
// The current Ghost version
|
|
|
|
res.locals.version = ghostVersion.full;
|
|
|
|
// The current Ghost version, but only major.minor
|
|
|
|
res.locals.safeVersion = ghostVersion.safe;
|
|
|
|
// relative path from the URL
|
|
|
|
res.locals.relativeUrl = req.path;
|
2018-10-17 10:23:57 +03:00
|
|
|
// make ghost api version available for the theme + routing
|
2021-04-23 16:19:18 +03:00
|
|
|
res.locals.apiVersion = bridge.getFrontendApiVersion();
|
2016-10-10 22:14:32 +03:00
|
|
|
|
|
|
|
next();
|
|
|
|
};
|