Ghost/core/server/web/shared/middlewares/maintenance.js
Vikas Potluri 15d9a77092
Moved config from server to shared (#11850)
* moved `server/config` to `shared/config`
* updated config import paths in server to use shared
* updated config import paths in frontend to use shared
* updated config import paths in test to use shared
* updated config import paths in root to use shared
* trigger regression tests
* of course the rebase broke tests
2020-05-27 18:47:53 +01:00

21 lines
629 B
JavaScript

const errors = require('@tryghost/errors');
const config = require('../../../../shared/config');
const {i18n} = require('../../../lib/common');
const urlService = require('../../../../frontend/services/url');
module.exports = function maintenance(req, res, next) {
if (config.get('maintenance').enabled) {
return next(new errors.MaintenanceError({
message: i18n.t('errors.general.maintenance')
}));
}
if (!urlService.hasFinished()) {
return next(new errors.MaintenanceError({
message: i18n.t('errors.general.maintenanceUrlService')
}));
}
next();
};