javascripttimefrontendlogoff

Saving the time the user is logged on


In the application I am developing I have to store the time some particular users remain logged into the application, unfortunately, in web applications, there are several ways the user can log off.

  1. User clicks log off.
  2. User session expires.
  3. User closes the window.
  4. User types another site URL in the address bar.

The first one is quite easy because the application gets control of the logging off process. But in the other ones, it gets tricky.

What would you do to solve this problem?


Solution

  • On each page view, update your count. If they log out, then you've got an accurate measure. If they navigate away, or any other method, then the most that you're out is the length of time they were on one page.

    If it were really really important to have an accurate measure, then perhaps an AJAX "heartbeat" every minute, but that's most likely overkill.