mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
2887e416da
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.
29 lines
1.0 KiB
JavaScript
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)
|
|
}));
|
|
});
|
|
}
|
|
};
|