Add trt/catch for session verification to avoid crashing errors, seems to be working well now.
This commit is contained in:
parent
45b0829ba2
commit
7cc9d0594d
@ -101,16 +101,17 @@ io.use(iosess(session));
|
|||||||
io.on('connection', function(socket){
|
io.on('connection', function(socket){
|
||||||
//winston.info('a user connected');
|
//winston.info('a user connected');
|
||||||
winston.info('session id, '+ socket.handshake.session.id);
|
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.
|
// Send redirect to client, socket connection will close when client goes back to /login.
|
||||||
// But disconnect just in case client is misbehaving.
|
// But disconnect just in case client is misbehaving.
|
||||||
winston.info('Session DNE, redirect and disconnect.');
|
winston.info('Session DNE, redirect and disconnect.');
|
||||||
socket.emit('redirect', '/login');
|
socket.emit('redirect', '/login');
|
||||||
socket.disconnect();
|
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);
|
winston.info('user id, '+ userNum);
|
||||||
socket.join(userNum);
|
socket.join(userNum);
|
||||||
var notePath, noteDir
|
var notePath, noteDir
|
||||||
|
Loading…
Reference in New Issue
Block a user