2019-04-03 13:40:35 +03:00
|
|
|
const _ = require('lodash');
|
|
|
|
const hbs = require('./engine');
|
2019-06-19 12:30:28 +03:00
|
|
|
const urlUtils = require('../../../server/lib/url-utils');
|
|
|
|
const config = require('../../../server/config');
|
|
|
|
const common = require('../../../server/lib/common');
|
|
|
|
const settingsCache = require('../../../server/services/settings/cache');
|
2019-04-03 13:40:35 +03:00
|
|
|
const activeTheme = require('./active');
|
2017-03-21 12:03:09 +03:00
|
|
|
|
|
|
|
// ### Ensure Active Theme
|
|
|
|
// Ensure there's a properly set & mounted active theme before attempting to serve a blog request
|
|
|
|
// If there is no active theme, throw an error
|
|
|
|
// Else, ensure the active theme is mounted
|
2019-04-03 13:40:35 +03:00
|
|
|
function ensureActiveTheme(req, res, next) {
|
2017-05-31 19:42:42 +03:00
|
|
|
// CASE: this means that the theme hasn't been loaded yet i.e. there is no active theme
|
2017-03-21 12:03:09 +03:00
|
|
|
if (!activeTheme.get()) {
|
|
|
|
// This is the one place we ACTUALLY throw an error for a missing theme as it's a request we cannot serve
|
2017-12-12 00:47:46 +03:00
|
|
|
return next(new common.errors.InternalServerError({
|
2017-03-21 12:03:09 +03:00
|
|
|
// We use the settingsCache here, because the setting will be set,
|
|
|
|
// even if the theme itself is not usable because it is invalid or missing.
|
2017-12-12 00:47:46 +03:00
|
|
|
message: common.i18n.t('errors.middleware.themehandler.missingTheme', {theme: settingsCache.get('active_theme')})
|
2017-03-21 12:03:09 +03:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2017-05-31 19:42:42 +03:00
|
|
|
// CASE: bootstrap theme validation failed, we would like to show the errors on the blog [only production]
|
|
|
|
if (activeTheme.get().error && config.get('env') === 'production') {
|
2017-12-12 00:47:46 +03:00
|
|
|
return next(new common.errors.InternalServerError({
|
2017-05-31 19:42:42 +03:00
|
|
|
// We use the settingsCache here, because the setting will be set,
|
|
|
|
// even if the theme itself is not usable because it is invalid or missing.
|
2017-12-12 00:47:46 +03:00
|
|
|
message: common.i18n.t('errors.middleware.themehandler.invalidTheme', {theme: settingsCache.get('active_theme')}),
|
2017-05-31 19:42:42 +03:00
|
|
|
errorDetails: activeTheme.get().error.errorDetails
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2017-03-21 12:03:09 +03:00
|
|
|
// If the active theme has not yet been mounted, mount it into express
|
|
|
|
if (!activeTheme.get().mounted) {
|
|
|
|
activeTheme.get().mount(req.app);
|
|
|
|
}
|
|
|
|
|
|
|
|
next();
|
2019-04-03 13:40:35 +03:00
|
|
|
}
|
2017-03-21 12:03:09 +03:00
|
|
|
|
2019-04-03 14:01:23 +03:00
|
|
|
function updateGlobalTemplateOptions(req, res, next) {
|
2017-03-21 12:03:09 +03:00
|
|
|
// Static information, same for every request unless the settings change
|
|
|
|
// @TODO: bind this once and then update based on events?
|
2019-01-15 15:03:17 +03:00
|
|
|
// @TODO: decouple theme layer from settings cache using the Content API
|
2019-04-03 13:40:35 +03:00
|
|
|
const siteData = settingsCache.getPublic();
|
|
|
|
const labsData = _.cloneDeep(settingsCache.get('labs'));
|
2019-04-03 14:01:23 +03:00
|
|
|
const themeData = {
|
|
|
|
posts_per_page: activeTheme.get().config('posts_per_page'),
|
|
|
|
image_sizes: activeTheme.get().config('image_sizes')
|
|
|
|
};
|
2017-03-21 12:03:09 +03:00
|
|
|
|
|
|
|
// @TODO: only do this if something changed?
|
2019-01-04 22:30:17 +03:00
|
|
|
// @TODO: remove blog if we drop v0.1 (Ghost 3.0)
|
2017-03-21 12:03:09 +03:00
|
|
|
hbs.updateTemplateOptions({
|
|
|
|
data: {
|
2019-01-03 20:52:37 +03:00
|
|
|
blog: siteData,
|
|
|
|
site: siteData,
|
2017-03-21 12:03:09 +03:00
|
|
|
labs: labsData,
|
2019-04-03 13:40:35 +03:00
|
|
|
config: themeData
|
2017-03-21 12:03:09 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
next();
|
2019-04-03 13:40:35 +03:00
|
|
|
}
|
2017-03-21 12:03:09 +03:00
|
|
|
|
2019-04-03 14:01:23 +03:00
|
|
|
function updateLocalTemplateData(req, res, next) {
|
|
|
|
// Pass 'secure' flag to the view engine
|
|
|
|
// so that templates can choose to render https or http 'url', see url utility
|
|
|
|
res.locals.secure = req.secure;
|
|
|
|
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateLocalTemplateOptions(req, res, next) {
|
|
|
|
const localTemplateOptions = hbs.getLocalTemplateOptions(res.locals);
|
|
|
|
const siteData = {
|
2019-06-18 16:13:55 +03:00
|
|
|
url: urlUtils.urlFor('home', {secure: req.secure, trailingSlash: false}, true)
|
2019-04-03 14:01:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
hbs.updateLocalTemplateOptions(res.locals, _.merge({}, localTemplateOptions, {
|
|
|
|
data: {
|
|
|
|
member: req.member,
|
|
|
|
site: siteData,
|
|
|
|
blog: siteData
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
|
2017-03-21 12:03:09 +03:00
|
|
|
module.exports = [
|
2019-04-03 13:40:35 +03:00
|
|
|
ensureActiveTheme,
|
2019-04-03 14:01:23 +03:00
|
|
|
updateGlobalTemplateOptions,
|
|
|
|
updateLocalTemplateData,
|
|
|
|
updateLocalTemplateOptions
|
2017-03-21 12:03:09 +03:00
|
|
|
];
|