Ghost/core/frontend/services/apps/index.js
Sam Lord 2887e416da
Switch to @tryghost/errors from ignition errors package (#13807)
refs: TryGhost/Toolbox#147

* Replaces all references to isIgnitionError with isGhostError
* Switches use of GhostError to InternalServerError - as GhostError is no longer public
There are places where InternalServerError is not the valid error, and new errors should be added to the @tryghost/errors package to ensure that we can use semantically correct errors in those cases.
2021-12-01 10:22:01 +00:00

29 lines
1.0 KiB
JavaScript

const debug = require('@tryghost/debug')('services:apps');
const Promise = require('bluebird');
const tpl = require('@tryghost/tpl');
const logging = require('@tryghost/logging');
const errors = require('@tryghost/errors');
const config = require('../../../shared/config');
const loader = require('./loader');
const messages = {
appWillNotBeLoadedError: 'The app will not be loaded',
appWillNotBeLoadedHelp: 'Check with the app creator, or read the app documentation for more details on app requirements'
};
module.exports = {
init: function () {
debug('init begin');
const appsToLoad = config.get('apps:internal');
return Promise.map(appsToLoad, appName => loader.activateAppByName(appName))
.catch(function (err) {
logging.error(new errors.InternalServerError({
err: err,
context: tpl(messages.appWillNotBeLoadedError),
help: tpl(messages.appWillNotBeLoadedHelp)
}));
});
}
};