Friday, May 17, 2024
 Popular · Latest · Hot · Upcoming
152
rated 0 times [  158] [ 6]  / answers: 1 / hits: 30187  / 11 Years ago, tue, april 30, 2013, 12:00:00

I have a chat application on Node.js and Socket.io, user can connect and disconnect with a button...
I am having a list of online users which is perfectly managed with the help of my defined events that user trigger.


But the problem is I am unable to detect if the user has lost his connection or closed the browser window without disconnecting himself manually(by the disconnect button)...



This socket.io event is fired only when user disconnects himself not when he lost his connection.



socket.on('disconnect',function(){
console.log('user disconnected'); });


I want some really good mechanism to keep an eye on users in order to update my Online users list.


More From » node.js

 Answers
18

And what's the difference? Closing the window, cutting the ethernet wire... it's all the same for the server: end of connection.



Reading the socket.io docs: https://github.com/LearnBoost/socket.io/wiki/Exposed-events




socket.on('disconnect', function() {}) - the disconnect event is fired in all cases, when the client-server connection is closed. It fires on wanted, unwanted, mobile, unmobile, client and server disconnects.




You should not rely your button, as people can disconnect without using that button. Use the disconnect event and once a socket disconnects (a socket, not a user, cause Node just knows about sockets) you will have to find out who was the owner of that socket and flag him as disconnected. Or even better, wait for a few seconds and then flag him as offline. Why? Because the disconnect event will trigger even if the user just reloads the page, or navigates to another one. So if you wait a few seconds the user will be online again.



I had this problem too, and I ended up creating a watcher that runs every X seconds and flags users as offline when they don't own any socket or when they seem to be away (no activity for a long time).


[#78519] Monday, April 29, 2013, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
walker

Total Points: 726
Total Questions: 91
Total Answers: 106

Location: Czech Republic
Member since Thu, Aug 11, 2022
2 Years ago
;