mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
ignore logging of session dla only for max. of 15 min, so session status is displayed correct
This commit is contained in:
parent
9233c93e4f
commit
e305ba1d23
@ -1015,6 +1015,8 @@ class Session
|
|||||||
'session_action' => $this->update_dla(false), // dont update egw_access_log
|
'session_action' => $this->update_dla(false), // dont update egw_access_log
|
||||||
),false,__LINE__,__FILE__);
|
),false,__LINE__,__FILE__);
|
||||||
|
|
||||||
|
$_SESSION[self::EGW_SESSION_VAR]['session_logged_dla'] = $now;
|
||||||
|
|
||||||
$ret = $GLOBALS['egw']->db->get_last_insert_id(self::ACCESS_LOG_TABLE,'sessionid');
|
$ret = $GLOBALS['egw']->db->get_last_insert_id(self::ACCESS_LOG_TABLE,'sessionid');
|
||||||
|
|
||||||
// if we can not store failed login attempts in database, store it in cache
|
// if we can not store failed login attempts in database, store it in cache
|
||||||
@ -1758,6 +1760,11 @@ class Session
|
|||||||
$this->action = $action;
|
$this->action = $action;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ignore dla logging for a maximum of 900s = 15min
|
||||||
|
*/
|
||||||
|
const MAX_IGNORE_DLA_LOG = 900;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Update session_action and session_dla (session last used time)
|
* Update session_action and session_dla (session last used time)
|
||||||
*
|
*
|
||||||
@ -1797,9 +1804,12 @@ class Session
|
|||||||
// update dla in access-log table, if we have an access-log row (non-anonymous session)
|
// update dla in access-log table, if we have an access-log row (non-anonymous session)
|
||||||
if ($this->sessionid_access_log && $update_access_log &&
|
if ($this->sessionid_access_log && $update_access_log &&
|
||||||
// ignore updates (session creation is written) of *dav, avatar and thumbnail, due to possible high volume of updates
|
// ignore updates (session creation is written) of *dav, avatar and thumbnail, due to possible high volume of updates
|
||||||
!preg_match('#^(/webdav|/groupdav|/api/avatar|/api/thumbnail)\.php#', $this->action) &&
|
(!preg_match('#^(/webdav|/groupdav|/api/avatar|/api/thumbnail)\.php#', $this->action) ||
|
||||||
|
(time() - $_SESSION[self::EGW_SESSION_VAR]['session_logged_dla']) > self::MAX_IGNORE_DLA_LOG) &&
|
||||||
is_object($GLOBALS['egw']->db))
|
is_object($GLOBALS['egw']->db))
|
||||||
{
|
{
|
||||||
|
$_SESSION[self::EGW_SESSION_VAR]['session_logged_dla'] = time();
|
||||||
|
|
||||||
$GLOBALS['egw']->db->update(self::ACCESS_LOG_TABLE,array(
|
$GLOBALS['egw']->db->update(self::ACCESS_LOG_TABLE,array(
|
||||||
'session_dla' => time(),
|
'session_dla' => time(),
|
||||||
'session_action' => $this->action,
|
'session_action' => $this->action,
|
||||||
|
Loading…
Reference in New Issue
Block a user