You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.4 KiB
JavaScript
66 lines
1.4 KiB
JavaScript
'use strict';
|
|
|
|
var nconf = require('nconf');
|
|
var meta = require('../meta');
|
|
var user = require('../user');
|
|
|
|
module.exports = function (middleware) {
|
|
|
|
middleware.maintenanceMode = function (req, res, next) {
|
|
if (parseInt(meta.config.maintenanceMode, 10) !== 1) {
|
|
return next();
|
|
}
|
|
var url = req.url.replace(nconf.get('relative_path'), '');
|
|
|
|
var allowedRoutes = [
|
|
'^/ping',
|
|
'^/sping',
|
|
'^/login',
|
|
'^/stylesheet.css',
|
|
'^/favicon',
|
|
'^/nodebb.min.js',
|
|
'^/vendor/fontawesome/fonts/fontawesome-webfont.woff',
|
|
'^/src/(modules|client)/[\\w/]+.js',
|
|
'^/templates/[\\w/]+.tpl',
|
|
'^/api/login',
|
|
'^/api/widgets/render',
|
|
'^/api/language/.+',
|
|
'^/uploads/system/site-logo.png'
|
|
];
|
|
|
|
var isAllowed = function (url) {
|
|
for(var x = 0,numAllowed = allowedRoutes.length,route; x < numAllowed; x++) {
|
|
route = new RegExp(allowedRoutes[x]);
|
|
if (route.test(url)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
};
|
|
|
|
if (isAllowed(url)) {
|
|
return next();
|
|
}
|
|
|
|
user.isAdministrator(req.uid, function (err, isAdmin) {
|
|
if (err || isAdmin) {
|
|
return next(err);
|
|
}
|
|
|
|
res.status(503);
|
|
var data = {
|
|
site_title: meta.config.title || 'NodeBB',
|
|
message: meta.config.maintenanceModeMessage
|
|
};
|
|
|
|
if (res.locals.isAPI) {
|
|
return res.json(data);
|
|
}
|
|
|
|
middleware.buildHeader(req, res, function () {
|
|
res.render('503', data);
|
|
});
|
|
});
|
|
};
|
|
|
|
}; |