mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 10:53:34 +03:00
273e220327
refs 829e8ed010
- i18n is used everywhere but only requires shared or external packages, therefore it's a good candidate for living in shared
- this reduces invalid requires across frontend and server, and lets us use it everywhere until we come up with a better option
21 lines
631 B
JavaScript
21 lines
631 B
JavaScript
const errors = require('@tryghost/errors');
|
|
const config = require('../../../../shared/config');
|
|
const i18n = require('../../../../shared/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();
|
|
};
|