Files
NodeBB/src/middleware/user.js

266 lines
7.0 KiB
JavaScript
Raw Normal View History

'use strict';
var async = require('async');
var nconf = require('nconf');
var winston = require('winston');
2016-11-15 12:45:00 +03:00
var meta = require('../meta');
var user = require('../user');
2016-11-15 12:45:00 +03:00
var privileges = require('../privileges');
2017-05-12 17:53:23 -04:00
var plugins = require('../plugins');
var auth = require('../routes/authentication');
var controllers = {
2017-02-17 19:31:21 -07:00
helpers: require('../controllers/helpers'),
};
module.exports = function (middleware) {
function authenticate(req, res, next, callback) {
2018-01-31 15:20:17 -05:00
if (req.loggedIn) {
2017-05-12 17:53:23 -04:00
return next();
}
if (plugins.hasListeners('response:middleware.authenticate')) {
return plugins.fireHook('response:middleware.authenticate', {
2017-05-12 17:53:23 -04:00
req: req,
res: res,
next: function (err) {
if (err) {
return next(err);
}
auth.setAuthVars(req, res, function () {
if (req.loggedIn && req.user && req.user.uid) {
return next();
}
callback();
});
},
2017-05-12 17:53:23 -04:00
});
}
callback();
}
2018-12-17 16:59:45 -05:00
middleware.authenticate = function middlewareAuthenticate(req, res, next) {
authenticate(req, res, next, function () {
controllers.helpers.notAllowed(req, res, next);
});
};
middleware.authenticateOrGuest = function authenticateOrGuest(req, res, next) {
authenticate(req, res, next, next);
2017-05-12 17:53:23 -04:00
};
middleware.ensureSelfOrGlobalPrivilege = function ensureSelfOrGlobalPrivilege(req, res, next) {
2017-05-12 17:53:23 -04:00
ensureSelfOrMethod(user.isAdminOrGlobalMod, req, res, next);
};
middleware.ensureSelfOrPrivileged = function ensureSelfOrPrivileged(req, res, next) {
2017-05-12 17:53:23 -04:00
ensureSelfOrMethod(user.isPrivileged, req, res, next);
};
function ensureSelfOrMethod(method, req, res, next) {
/*
The "self" part of this middleware hinges on you having used
middleware.exposeUid prior to invoking this middleware.
*/
async.waterfall([
function (next) {
2018-01-31 15:20:17 -05:00
if (!req.loggedIn) {
2017-05-12 17:53:23 -04:00
return setImmediate(next, null, false);
}
if (req.uid === parseInt(res.locals.uid, 10)) {
return setImmediate(next, null, true);
}
method(req.uid, next);
},
function (allowed, next) {
if (!allowed) {
return controllers.helpers.notAllowed(req, res);
}
next();
},
], next);
}
middleware.checkGlobalPrivacySettings = function checkGlobalPrivacySettings(req, res, next) {
winston.warn('[middleware], checkGlobalPrivacySettings deprecated, use canViewUsers or canViewGroups');
middleware.canViewUsers(req, res, next);
};
middleware.canViewUsers = function canViewUsers(req, res, next) {
privileges.global.can('view:users', req.uid, function (err, canView) {
if (err || canView) {
return next(err);
}
controllers.helpers.notAllowed(req, res);
});
};
middleware.canViewGroups = function canViewGroups(req, res, next) {
privileges.global.can('view:groups', req.uid, function (err, canView) {
if (err || canView) {
return next(err);
}
controllers.helpers.notAllowed(req, res);
});
};
middleware.checkAccountPermissions = function checkAccountPermissions(req, res, next) {
// This middleware ensures that only the requested user and admins can pass
async.waterfall([
function (next) {
middleware.authenticate(req, res, next);
},
function (next) {
user.getUidByUserslug(req.params.userslug, next);
},
function (uid, next) {
2016-11-15 12:45:00 +03:00
privileges.users.canEdit(req.uid, uid, next);
},
2016-10-25 12:53:43 +03:00
function (allowed, next) {
if (allowed) {
return next(null, allowed);
}
// For the account/info page only, allow plain moderators through
if (/user\/.+\/info$/.test(req.path)) {
user.isModeratorOfAnyCategory(req.uid, next);
} else {
next(null, false);
}
2017-02-17 19:31:21 -07:00
},
2017-05-12 17:53:23 -04:00
function (allowed) {
if (allowed) {
return next();
}
controllers.helpers.notAllowed(req, res);
},
], next);
};
middleware.redirectToAccountIfLoggedIn = function redirectToAccountIfLoggedIn(req, res, next) {
2018-12-17 16:03:01 -05:00
if (req.session.forceLogin || req.uid <= 0) {
return next();
}
2017-05-12 17:53:23 -04:00
async.waterfall([
function (next) {
user.getUserField(req.uid, 'userslug', next);
},
function (userslug) {
controllers.helpers.redirect(res, '/user/' + userslug);
},
], next);
};
middleware.redirectUidToUserslug = function redirectUidToUserslug(req, res, next) {
var uid = parseInt(req.params.uid, 10);
2018-11-17 22:31:39 -05:00
if (uid <= 0) {
return next();
}
2017-05-12 17:53:23 -04:00
async.waterfall([
function (next) {
user.getUserField(uid, 'userslug', next);
},
function (userslug) {
if (!userslug) {
return next();
}
var path = req.path.replace(/^\/api/, '')
.replace('uid', 'user')
.replace(uid, function () { return userslug; });
2017-05-12 17:53:23 -04:00
controllers.helpers.redirect(res, path);
},
], next);
};
middleware.redirectMeToUserslug = function redirectMeToUserslug(req, res, next) {
var uid = req.uid;
async.waterfall([
function (next) {
user.getUserField(uid, 'userslug', next);
},
function (userslug) {
if (!userslug) {
2017-12-09 12:25:27 -05:00
return controllers.helpers.notAllowed(req, res);
}
var path = req.path.replace(/^(\/api)?\/me/, '/user/' + userslug);
controllers.helpers.redirect(res, path);
},
], next);
};
middleware.isAdmin = function isAdmin(req, res, next) {
2017-05-12 17:53:23 -04:00
async.waterfall([
function (next) {
user.isAdministrator(req.uid, next);
},
function (isAdmin, next) {
if (!isAdmin) {
return controllers.helpers.notAllowed(req, res);
}
user.hasPassword(req.uid, next);
},
function (hasPassword, next) {
if (!hasPassword) {
return next();
}
2017-05-12 17:53:23 -04:00
var loginTime = req.session.meta ? req.session.meta.datetime : 0;
var adminReloginDuration = meta.config.adminReloginDuration * 60000;
var disabled = meta.config.adminReloginDuration === 0;
2017-11-17 15:26:36 -05:00
if (disabled || (loginTime && parseInt(loginTime, 10) > Date.now() - adminReloginDuration)) {
var timeLeft = parseInt(loginTime, 10) - (Date.now() - adminReloginDuration);
2018-01-25 12:31:43 -05:00
if (req.session.meta && timeLeft < Math.min(300000, adminReloginDuration)) {
2017-11-17 15:26:36 -05:00
req.session.meta.datetime += Math.min(300000, adminReloginDuration);
}
2017-05-12 17:53:23 -04:00
return next();
}
2017-08-01 13:17:03 -04:00
var returnTo = req.path;
if (nconf.get('relative_path')) {
returnTo = req.path.replace(new RegExp('^' + nconf.get('relative_path')), '');
}
returnTo = returnTo.replace(/^\/api/, '');
req.session.returnTo = returnTo;
2017-05-12 17:53:23 -04:00
req.session.forceLogin = 1;
if (res.locals.isAPI) {
res.status(401).json({});
} else {
res.redirect(nconf.get('relative_path') + '/login');
}
},
], next);
};
middleware.requireUser = function (req, res, next) {
2018-01-31 15:20:17 -05:00
if (req.loggedIn) {
return next();
}
2017-02-18 12:30:49 -07:00
res.status(403).render('403', { title: '[[global:403.title]]' });
};
2018-12-17 16:03:01 -05:00
middleware.registrationComplete = function registrationComplete(req, res, next) {
// If the user's session contains registration data, redirect the user to complete registration
if (!req.session.hasOwnProperty('registration')) {
2018-11-12 00:20:44 -05:00
return setImmediate(next);
}
if (!req.path.endsWith('/register/complete')) {
2018-05-02 13:02:07 -04:00
// Append user data if present
req.session.registration.uid = req.uid;
controllers.helpers.redirect(res, '/register/complete');
} else {
2018-12-17 16:03:01 -05:00
setImmediate(next);
}
};
};