Add trt/catch for session verification to avoid crashing errors, seems to be working well now.

This commit is contained in:
jkaplon 2017-04-22 09:26:21 -04:00
parent 45b0829ba2
commit 7cc9d0594d

View File

@ -101,16 +101,17 @@ io.use(iosess(session));
io.on('connection', function(socket){
//winston.info('a user connected');
winston.info('session id, '+ socket.handshake.session.id);
if (!socket.handshake.session.passport.user) {
// next line no worky...but i can get by with only user-#.
//winston.info('user name, '+ socket.handshake.session.passport.user.username);
try {
var userNum = socket.handshake.session.passport.user;
} catch (ex) {
// Send redirect to client, socket connection will close when client goes back to /login.
// But disconnect just in case client is misbehaving.
winston.info('Session DNE, redirect and disconnect.');
socket.emit('redirect', '/login');
socket.disconnect();
}
// next line no worky...but might get by with only user-#.
//winston.info('user name, '+ socket.handshake.session.passport.user.username);
var userNum = socket.handshake.session.passport.user;
winston.info('user id, '+ userNum);
socket.join(userNum);
var notePath, noteDir