mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
362140b31e
refs:076ad99593
- as of076ad99593
we no longer use the error property of the active theme anywhere - cleaning up and removing this usage reduces the code pathways and makes the init fn a bit clearer
98 lines
4.3 KiB
JavaScript
98 lines
4.3 KiB
JavaScript
const _ = require('lodash');
|
|
const debug = require('@tryghost/debug')('themes');
|
|
const logging = require('@tryghost/logging');
|
|
const errors = require('@tryghost/errors');
|
|
const tpl = require('@tryghost/tpl');
|
|
const themeLoader = require('./loader');
|
|
const bridge = require('../../../bridge');
|
|
const validate = require('./validate');
|
|
const list = require('./list');
|
|
const settingsCache = require('../../../shared/settings-cache');
|
|
|
|
const messages = {
|
|
missingTheme: 'The currently active theme "{theme}" is missing.',
|
|
themeCannotBeActivated: '{themeName} cannot be activated because it is not currently installed.',
|
|
invalidTheme: 'The currently active theme "{theme}" is invalid.',
|
|
themeHasErrors: 'The currently active theme "{theme}" has errors, but will still work.'
|
|
};
|
|
|
|
module.exports = {
|
|
// Init themes module
|
|
// TODO: move this once we're clear what needs to happen here
|
|
init: function initThemes() {
|
|
const activeThemeName = settingsCache.get('active_theme');
|
|
|
|
debug('init themes', activeThemeName);
|
|
// Just read the active theme for now
|
|
return themeLoader
|
|
.loadOneTheme(activeThemeName)
|
|
.then(function activeThemeHasLoaded(theme) {
|
|
// Validate
|
|
return validate
|
|
.check(theme)
|
|
.then(function validationSuccess(checkedTheme) {
|
|
if (!validate.canActivate(checkedTheme)) {
|
|
logging.error(new errors.ThemeValidationError({
|
|
message: tpl(messages.invalidTheme, {theme: activeThemeName}),
|
|
errorDetails: Object.assign(
|
|
_.pick(checkedTheme, ['checkedVersion', 'name', 'path', 'version']), {
|
|
errors: checkedTheme.results.error
|
|
}
|
|
)
|
|
}));
|
|
// CASE: inform that the theme has errors, but not fatal (theme still works)
|
|
} else if (checkedTheme.results.error.length) {
|
|
logging.warn(new errors.ThemeValidationError({
|
|
errorType: 'ThemeWorksButHasErrors',
|
|
message: tpl(messages.themeHasErrors, {theme: activeThemeName}),
|
|
errorDetails: Object.assign(
|
|
_.pick(checkedTheme, ['checkedVersion', 'name', 'path', 'version']), {
|
|
errors: checkedTheme.results.error
|
|
}
|
|
)
|
|
}));
|
|
}
|
|
|
|
debug('Activating theme (method A on boot)', activeThemeName);
|
|
bridge.activateTheme(theme, checkedTheme);
|
|
});
|
|
})
|
|
.catch(function (err) {
|
|
if (err instanceof errors.NotFoundError) {
|
|
// CASE: active theme is missing, we don't want to exit because the admin panel will still work
|
|
err.message = tpl(messages.missingTheme, {theme: activeThemeName});
|
|
}
|
|
|
|
// CASE: theme threw an odd error, we don't want to exit because the admin panel will still work
|
|
// This is the absolute catch-all, at this point, we do not know what went wrong!
|
|
logging.error(err);
|
|
});
|
|
},
|
|
getJSON: require('./to-json'),
|
|
activate: function (themeName) {
|
|
const loadedTheme = list.get(themeName);
|
|
|
|
if (!loadedTheme) {
|
|
return Promise.reject(new errors.ValidationError({
|
|
message: tpl(messages.themeCannotBeActivated, {themeName: themeName}),
|
|
errorDetails: themeName
|
|
}));
|
|
}
|
|
|
|
return validate.checkSafe(loadedTheme)
|
|
.then((checkedTheme) => {
|
|
debug('Activating theme (method B on API "activate")', themeName);
|
|
bridge.activateTheme(loadedTheme, checkedTheme);
|
|
|
|
return checkedTheme;
|
|
});
|
|
},
|
|
storage: require('./storage'),
|
|
/**
|
|
* Load all inactive themes
|
|
*/
|
|
loadInactiveThemes: async () => {
|
|
return await themeLoader.loadAllThemes();
|
|
}
|
|
};
|