Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any way to check if someone has closed their browser using Javascript/PHP? [closed]

I'm working on a PHP/MySQL/Javascript based online chess game. One problem I've encountered is the possibility of a user on one end just closing his browser. Is there any way to reliably detect if someone has been idle/closed the page?

As an added complication, our school server does not support cron jobs -_-

like image 485
user1880610 Avatar asked Dec 08 '12 08:12

user1880610


People also ask

How can you tell if a page is closed in JavaScript?

A tab or window closing in a browser can be detected by using the beforeunload event. This can be used to alert the user in case some data is unsaved on the page, or the user has mistakenly navigated away from the current page by closing the tab or the browser.

How do I close a JavaScript browser?

JavaScript provides an in-built function named close() to close the browser window that is opened by using window. open() method.

How do you handle browser tab close angular not close refresh?

The best way I found to reload the page without losing cookies, and remove cookies on window or tab close was to use ng-keydown to watch the F5 Keypress (KeyCode 116).


2 Answers

The only reliable way to do this is to use a pinging technique to your server, as the other commenters have suggested. This way you control the game, not the browsers. The way you'd have to "track" users is to fire an AJAX call...I think every 5 seconds is often enough...to the server. All this will do is either INSERT something into a "tracking" table or UPDATE a new column you make in your "Games" table to keep track of the last time the user had server activity (ignoring normal moves in the game...you can do this same process for normal moves and reset the interval of pinging as well, to avoid excessive checking). So every time a user makes a move (or something else that requires a server interaction), you would have to make a check for the time of their opponent's last server activity - if the opponent hasn't made a move within 7 seconds of the current time, then the opponent's browser has stopped communicating (for whatever reason). The reason I say 7 seconds is because of extra processing that takes place for server/database communications and any possible network lagging. Since network lagging is probably the bottleneck, you might want to increase this value to something like 10.

like image 79
Ian Avatar answered Sep 18 '22 16:09

Ian


You can't with exact certainty know whether the client is closed. You can make some qualified guesses, but it will never be reliable.

Maybe you could find a comprise where you are satisfied with knowing if a client session is active or not?

A low-tech solution would be to save the session id (or a selfmade unique identifying string) along with a timestamp. Whenever the client makes a new request (new page load and/or with AJAX), update the timestamp.

Since you don't have access to cronjobs, you need to make another compromise - let the other visitors tell you whether the client still is active. Whenever a visitor loads a page, run through the table which stores the session id's and timestamps and see if any sessions looks older than what you would consider being active.

It's not a sulotion to your exact problem (since it cannot be done) but a low-tech compromise.

like image 22
Repox Avatar answered Sep 17 '22 16:09

Repox