mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 02:41:50 +03:00
829e8ed010
- Having these as destructured from the same package is hindering refactoring now - Events should really only ever be used server-side - i18n should be a shared module for now so it can be used everywhere until we figure out something better - Having them seperate also allows us to lint them properly
21 lines
632 B
JavaScript
21 lines
632 B
JavaScript
const errors = require('@tryghost/errors');
|
|
const config = require('../../../../shared/config');
|
|
const i18n = require('../../../lib/common/i18n');
|
|
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();
|
|
};
|