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.
322 lines
8.6 KiB
JavaScript
322 lines
8.6 KiB
JavaScript
"use strict";
|
|
|
|
var async = require('async');
|
|
var winston = require('winston');
|
|
var passport = require('passport');
|
|
var nconf = require('nconf');
|
|
var validator = require('validator');
|
|
var _ = require('underscore');
|
|
|
|
var db = require('../database');
|
|
var meta = require('../meta');
|
|
var user = require('../user');
|
|
var plugins = require('../plugins');
|
|
var utils = require('../../public/src/utils');
|
|
var Password = require('../password');
|
|
|
|
var authenticationController = {};
|
|
|
|
authenticationController.register = function(req, res, next) {
|
|
var registrationType = meta.config.registrationType || 'normal';
|
|
|
|
if (registrationType === 'disabled') {
|
|
return res.sendStatus(403);
|
|
}
|
|
|
|
var userData = {};
|
|
|
|
for (var key in req.body) {
|
|
if (req.body.hasOwnProperty(key)) {
|
|
userData[key] = req.body[key];
|
|
}
|
|
}
|
|
|
|
async.waterfall([
|
|
function(next) {
|
|
if (registrationType === 'invite-only') {
|
|
user.verifyInvitation(userData, next);
|
|
} else {
|
|
next();
|
|
}
|
|
},
|
|
function(next) {
|
|
if (!userData.email) {
|
|
return next(new Error('[[error:invalid-email]]'));
|
|
}
|
|
|
|
if (!userData.username || userData.username.length < meta.config.minimumUsernameLength) {
|
|
return next(new Error('[[error:username-too-short]]'));
|
|
}
|
|
|
|
if (userData.username.length > meta.config.maximumUsernameLength) {
|
|
return next(new Error('[[error:username-too-long'));
|
|
}
|
|
|
|
user.isPasswordValid(userData.password, next);
|
|
},
|
|
function(next) {
|
|
res.locals.processLogin = true; // set it to false in plugin if you wish to just register only
|
|
plugins.fireHook('filter:register.check', {req: req, res: res, userData: userData}, next);
|
|
},
|
|
function(data, next) {
|
|
if (registrationType === 'normal' || registrationType === 'invite-only') {
|
|
registerAndLoginUser(req, res, userData, next);
|
|
} else if (registrationType === 'admin-approval') {
|
|
addToApprovalQueue(req, userData, next);
|
|
}
|
|
}
|
|
], function(err, data) {
|
|
if (err) {
|
|
return res.status(400).send(err.message);
|
|
}
|
|
|
|
if (req.body.userLang) {
|
|
user.setSetting(data.uid, 'userLang', req.body.userLang);
|
|
}
|
|
|
|
res.json(data);
|
|
});
|
|
};
|
|
|
|
function registerAndLoginUser(req, res, userData, callback) {
|
|
var uid;
|
|
async.waterfall([
|
|
function(next) {
|
|
user.create(userData, next);
|
|
},
|
|
function(_uid, next) {
|
|
uid = _uid;
|
|
if (res.locals.processLogin) {
|
|
authenticationController.doLogin(req, uid, next);
|
|
} else {
|
|
next();
|
|
}
|
|
},
|
|
function(next) {
|
|
user.deleteInvitationKey(userData.email);
|
|
plugins.fireHook('filter:register.complete', {uid: uid, referrer: req.body.referrer || nconf.get('relative_path') + '/'}, next);
|
|
}
|
|
], callback);
|
|
}
|
|
|
|
function addToApprovalQueue(req, userData, callback) {
|
|
async.waterfall([
|
|
function(next) {
|
|
userData.ip = req.ip;
|
|
user.addToApprovalQueue(userData, next);
|
|
},
|
|
function(next) {
|
|
next(null, {message: '[[register:registration-added-to-queue]]'});
|
|
}
|
|
], callback);
|
|
}
|
|
|
|
authenticationController.login = function(req, res, next) {
|
|
// Handle returnTo data
|
|
if (req.body.hasOwnProperty('returnTo') && !req.session.returnTo) {
|
|
req.session.returnTo = req.body.returnTo;
|
|
}
|
|
|
|
if (plugins.hasListeners('action:auth.overrideLogin')) {
|
|
return continueLogin(req, res, next);
|
|
}
|
|
|
|
var loginWith = meta.config.allowLoginWith || 'username-email';
|
|
|
|
if (req.body.username && utils.isEmailValid(req.body.username) && loginWith.indexOf('email') !== -1) {
|
|
user.getUsernameByEmail(req.body.username, function(err, username) {
|
|
if (err) {
|
|
return next(err);
|
|
}
|
|
req.body.username = username ? username : req.body.username;
|
|
continueLogin(req, res, next);
|
|
});
|
|
} else if (loginWith.indexOf('username') !== -1 && !validator.isEmail(req.body.username)) {
|
|
continueLogin(req, res, next);
|
|
} else {
|
|
res.status(500).send('[[error:wrong-login-type-' + loginWith + ']]');
|
|
}
|
|
};
|
|
|
|
function continueLogin(req, res, next) {
|
|
passport.authenticate('local', function(err, userData, info) {
|
|
if (err) {
|
|
return res.status(403).send(err.message);
|
|
}
|
|
|
|
if (!userData) {
|
|
if (typeof info === 'object') {
|
|
info = '[[error:invalid-username-or-password]]';
|
|
}
|
|
|
|
return res.status(403).send(info);
|
|
}
|
|
|
|
var passwordExpiry = userData.passwordExpiry !== undefined ? parseInt(userData.passwordExpiry, 10) : null;
|
|
|
|
// Alter user cookie depending on passed-in option
|
|
if (req.body.remember === 'on') {
|
|
var duration = 1000 * 60 * 60 * 24 * (parseInt(meta.config.loginDays, 10) || 14);
|
|
req.session.cookie.maxAge = duration;
|
|
req.session.cookie.expires = new Date(Date.now() + duration);
|
|
} else {
|
|
req.session.cookie.maxAge = false;
|
|
req.session.cookie.expires = false;
|
|
}
|
|
|
|
if (passwordExpiry && passwordExpiry < Date.now()) {
|
|
winston.verbose('[auth] Triggering password reset for uid ' + userData.uid + ' due to password policy');
|
|
req.session.passwordExpired = true;
|
|
user.reset.generate(userData.uid, function(err, code) {
|
|
res.status(200).send(nconf.get('relative_path') + '/reset/' + code);
|
|
});
|
|
} else {
|
|
authenticationController.doLogin(req, userData.uid, function(err) {
|
|
if (err) {
|
|
return res.status(403).send(err.message);
|
|
}
|
|
|
|
if (!req.session.returnTo) {
|
|
res.status(200).send(nconf.get('relative_path') + '/');
|
|
} else {
|
|
var next = req.session.returnTo;
|
|
delete req.session.returnTo;
|
|
|
|
res.status(200).send(next);
|
|
}
|
|
});
|
|
}
|
|
})(req, res, next);
|
|
}
|
|
|
|
authenticationController.doLogin = function(req, uid, callback) {
|
|
if (!uid) {
|
|
return callback();
|
|
}
|
|
|
|
req.login({uid: uid}, function(err) {
|
|
if (err) {
|
|
return callback(err);
|
|
}
|
|
|
|
authenticationController.onSuccessfulLogin(req, uid, callback);
|
|
});
|
|
};
|
|
|
|
authenticationController.onSuccessfulLogin = function(req, uid, callback) {
|
|
callback = callback || function() {};
|
|
var uuid = utils.generateUUID();
|
|
req.session.meta = {};
|
|
|
|
// Associate IP used during login with user account
|
|
user.logIP(uid, req.ip);
|
|
req.session.meta.ip = req.ip;
|
|
|
|
// Associate metadata retrieved via user-agent
|
|
req.session.meta = _.extend(req.session.meta, {
|
|
uuid: uuid,
|
|
datetime: Date.now(),
|
|
platform: req.useragent.platform,
|
|
browser: req.useragent.browser,
|
|
version: req.useragent.version
|
|
});
|
|
|
|
// Associate login session with user
|
|
async.parallel([
|
|
function (next) {
|
|
user.auth.addSession(uid, req.sessionID, next);
|
|
},
|
|
function (next) {
|
|
db.setObjectField('uid:' + uid + 'sessionUUID:sessionId', uuid, req.sessionID, next);
|
|
}
|
|
], function(err) {
|
|
if (err) {
|
|
return callback(err);
|
|
}
|
|
plugins.fireHook('action:user.loggedIn', uid);
|
|
callback();
|
|
});
|
|
};
|
|
|
|
authenticationController.localLogin = function(req, username, password, next) {
|
|
if (!username) {
|
|
return next(new Error('[[error:invalid-username]]'));
|
|
}
|
|
|
|
var userslug = utils.slugify(username);
|
|
var uid, userData = {};
|
|
|
|
async.waterfall([
|
|
function (next) {
|
|
user.isPasswordValid(password, next);
|
|
},
|
|
function (next) {
|
|
user.getUidByUserslug(userslug, next);
|
|
},
|
|
function (_uid, next) {
|
|
if (!_uid) {
|
|
return next(new Error('[[error:no-user]]'));
|
|
}
|
|
uid = _uid;
|
|
user.auth.logAttempt(uid, req.ip, next);
|
|
},
|
|
function (next) {
|
|
async.parallel({
|
|
userData: function(next) {
|
|
db.getObjectFields('user:' + uid, ['password', 'banned', 'passwordExpiry'], next);
|
|
},
|
|
isAdmin: function(next) {
|
|
user.isAdministrator(uid, next);
|
|
}
|
|
}, next);
|
|
},
|
|
function (result, next) {
|
|
userData = result.userData;
|
|
userData.uid = uid;
|
|
userData.isAdmin = result.isAdmin;
|
|
|
|
if (!result.isAdmin && parseInt(meta.config.allowLocalLogin, 10) === 0) {
|
|
return next(new Error('[[error:local-login-disabled]]'));
|
|
}
|
|
|
|
if (!userData || !userData.password) {
|
|
return next(new Error('[[error:invalid-user-data]]'));
|
|
}
|
|
if (userData.banned && parseInt(userData.banned, 10) === 1) {
|
|
return next(new Error('[[error:user-banned]]'));
|
|
}
|
|
Password.compare(password, userData.password, next);
|
|
},
|
|
function (passwordMatch, next) {
|
|
if (!passwordMatch) {
|
|
return next(new Error('[[error:invalid-password]]'));
|
|
}
|
|
user.auth.clearLoginAttempts(uid);
|
|
next(null, userData, '[[success:authentication-successful]]');
|
|
}
|
|
], next);
|
|
};
|
|
|
|
authenticationController.logout = function(req, res, next) {
|
|
if (req.user && parseInt(req.user.uid, 10) > 0 && req.sessionID) {
|
|
var uid = parseInt(req.user.uid, 10);
|
|
user.auth.revokeSession(req.sessionID, uid, function(err) {
|
|
if (err) {
|
|
return next(err);
|
|
}
|
|
req.logout();
|
|
|
|
// action:user.loggedOut deprecated in > v0.9.3
|
|
plugins.fireHook('action:user.loggedOut', {req: req, res: res, uid: uid});
|
|
plugins.fireHook('static:user.loggedOut', {req: req, res: res, uid: uid}, function() {
|
|
res.status(200).send('');
|
|
});
|
|
});
|
|
} else {
|
|
res.status(200).send('');
|
|
}
|
|
};
|
|
|
|
|
|
module.exports = authenticationController;
|