Session checking stable, not sure how to test redirect, but clearing client cookie or deleting server session files now handled gracefully.

This commit is contained in:
jkaplon 2017-04-21 10:55:30 -04:00
parent e8ca268cde
commit 4cdbbe1dbf
2 changed files with 16 additions and 1 deletions

View File

@ -101,7 +101,19 @@ io.use(iosess(session));
io.on('connection', function(socket){
//winston.info('a user connected');
winston.info('sessio id, '+ socket.handshake.session.id);
winston.info('session id, '+ socket.handshake.session.id);
if (!socket.handshake.session.passport.user) {
// 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 works until container restarted...need to validate session existence?
// or is the problem with a nodemon restart???
winston.info('user id, '+ socket.handshake.session.passport.user);
// not sure if next line works yet...
//winston.info('user name, '+ socket.handshake.session.passport.user.username);
fileSystem.readFile(notePath, {encoding: 'utf-8'}, function(err,data){
if (!err){
winston.info('file read on connection');

View File

@ -99,6 +99,9 @@
});
socket.on('conflict', function(msg){ alert(msg) });
socket.on('redirect', function(destination) {
window.location.href = destination;
});
</script>
</body>
</html>