mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
2222 lines
74 KiB
PHP
2222 lines
74 KiB
PHP
<?php
|
|
/**
|
|
* EGroupware API: session handling
|
|
*
|
|
* This class is based on the old phpgwapi/inc/class.sessions(_php4).inc.php:
|
|
* (c) 1998-2000 NetUSE AG Boris Erdmann, Kristian Koehntopp
|
|
* (c) 2003 FreeSoftware Foundation
|
|
* Not sure how much the current code still has to do with it.
|
|
*
|
|
* Former authers were:
|
|
* - NetUSE AG Boris Erdmann, Kristian Koehntopp
|
|
* - Dan Kuykendall <seek3r@phpgroupware.org>
|
|
* - Joseph Engo <jengo@phpgroupware.org>
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package api
|
|
* @subpackage session
|
|
* @author Ralf Becker <ralfbecker@outdoor-training.de> since 2003 on
|
|
*/
|
|
|
|
namespace EGroupware\Api;
|
|
|
|
use PragmaRX\Google2FA;
|
|
use EGroupware\Api\Mail\Credentials;
|
|
use EGroupware\OpenID;
|
|
use League\OAuth2\Server\Exception\OAuthServerException;
|
|
|
|
/**
|
|
* Create, verifies or destroys an EGroupware session
|
|
*
|
|
* If you want to analyse the memory usage in the session, you can uncomment the following call:
|
|
*
|
|
* static function encrypt($kp3)
|
|
* {
|
|
* // switch that on to analyse memory usage in the session
|
|
* //self::log_session_usage($_SESSION[self::EGW_APPSESSION_VAR],'_SESSION['.self::EGW_APPSESSION_VAR.']',true,5000);
|
|
*/
|
|
class Session
|
|
{
|
|
/**
|
|
* Write debug messages about session verification and creation to the error_log
|
|
*
|
|
* This will contain passwords! Don't leave it permanently switched on!
|
|
*/
|
|
const ERROR_LOG_DEBUG = false;
|
|
|
|
/**
|
|
* key of eGW's session-data in $_SESSION
|
|
*/
|
|
const EGW_SESSION_VAR = 'egw_session';
|
|
|
|
/**
|
|
* key of eGW's application session-data in $_SESSION
|
|
*/
|
|
const EGW_APPSESSION_VAR = 'egw_app_session';
|
|
|
|
/**
|
|
* key of eGW's egw_info cached in $_SESSION
|
|
*/
|
|
const EGW_INFO_CACHE = 'egw_info_cache';
|
|
|
|
/**
|
|
* key of eGW's egw object cached in $_SESSION
|
|
*/
|
|
const EGW_OBJECT_CACHE = 'egw_object_cache';
|
|
|
|
/**
|
|
* Name of cookie or get-parameter with session-id
|
|
*/
|
|
const EGW_SESSION_NAME = 'sessionid';
|
|
|
|
/**
|
|
* Name of cookie with remember me token
|
|
*/
|
|
const REMEMBER_ME_COOKIE = 'eGW_remember';
|
|
|
|
/**
|
|
* current user login (account_lid@domain)
|
|
*
|
|
* @var string
|
|
*/
|
|
var $login;
|
|
|
|
/**
|
|
* current user password
|
|
*
|
|
* @var string
|
|
*/
|
|
var $passwd;
|
|
|
|
/**
|
|
* current user db/ldap account id
|
|
*
|
|
* @var int
|
|
*/
|
|
var $account_id;
|
|
|
|
/**
|
|
* current user account login id (without the eGW-domain/-instance part
|
|
*
|
|
* @var string
|
|
*/
|
|
var $account_lid;
|
|
|
|
/**
|
|
* domain for current user
|
|
*
|
|
* @var string
|
|
*/
|
|
var $account_domain;
|
|
|
|
/**
|
|
* type flag, A - anonymous session, N - None, normal session
|
|
*
|
|
* @var string
|
|
*/
|
|
var $session_flags;
|
|
|
|
/**
|
|
* current user session id
|
|
*
|
|
* @var string
|
|
*/
|
|
var $sessionid;
|
|
|
|
/**
|
|
* an other session specific id (md5 from a random string),
|
|
* used together with the sessionid for xmlrpc basic auth and the encryption of session-data (if that's enabled)
|
|
*
|
|
* @var string
|
|
*/
|
|
var $kp3;
|
|
|
|
/**
|
|
* Primary key of egw_access_log row for updates
|
|
*
|
|
* @var int
|
|
*/
|
|
var $sessionid_access_log;
|
|
|
|
/**
|
|
* name of XML-RPC/SOAP method called
|
|
*
|
|
* @var string
|
|
*/
|
|
var $xmlrpc_method_called;
|
|
|
|
/**
|
|
* Array with the name of the system domains
|
|
*
|
|
* @var array
|
|
*/
|
|
private $egw_domains;
|
|
|
|
/**
|
|
* Nummeric code why session creation failed
|
|
*
|
|
* @var int
|
|
*/
|
|
var $cd_reason;
|
|
const CD_BAD_LOGIN_OR_PASSWORD = 5;
|
|
const CD_SECOND_FACTOR_REQUIRED = 96;
|
|
const CD_FORCE_PASSWORD_CHANGE = 97;
|
|
const CD_ACCOUNT_EXPIRED = 98;
|
|
const CD_BLOCKED = 99; // to many failed attempts to login
|
|
|
|
/**
|
|
* Verbose reason why session creation failed
|
|
*
|
|
* @var string
|
|
*/
|
|
var $reason;
|
|
|
|
/**
|
|
* Session action set by update_dla or set_action and stored in __destruct
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $action;
|
|
|
|
/**
|
|
* Limit apps available in a session, when not null
|
|
*
|
|
* @var array|null app-name => true or array pairs
|
|
*/
|
|
public $limits=null;
|
|
|
|
/**
|
|
* @var bool true: authenticated by token, not password, false: authenticated by password
|
|
*/
|
|
public $token_auth=false;
|
|
|
|
/**
|
|
* Constructor just loads up some defaults from cookies
|
|
*
|
|
* @param array $domain_names =null domain-names used in this install
|
|
*/
|
|
function __construct(array $domain_names=null)
|
|
{
|
|
$this->sessionid = self::get_sessionid();
|
|
$this->kp3 = self::get_request('kp3');
|
|
|
|
$this->egw_domains = $domain_names;
|
|
|
|
if (!isset($GLOBALS['egw_setup']))
|
|
{
|
|
// verfiy and if necessary create and save our config settings
|
|
//
|
|
$save_rep = false;
|
|
if (!isset($GLOBALS['egw_info']['server']['max_access_log_age']))
|
|
{
|
|
$GLOBALS['egw_info']['server']['max_access_log_age'] = 90; // default 90 days
|
|
$save_rep = true;
|
|
}
|
|
if (!isset($GLOBALS['egw_info']['server']['block_time']))
|
|
{
|
|
$GLOBALS['egw_info']['server']['block_time'] = 1; // default 1min, its enough to slow down brute force attacks
|
|
$save_rep = true;
|
|
}
|
|
if (!isset($GLOBALS['egw_info']['server']['num_unsuccessful_id']))
|
|
{
|
|
$GLOBALS['egw_info']['server']['num_unsuccessful_id'] = 3; // default 3 trys per id
|
|
$save_rep = true;
|
|
}
|
|
if (!isset($GLOBALS['egw_info']['server']['num_unsuccessful_ip']))
|
|
{
|
|
$GLOBALS['egw_info']['server']['num_unsuccessful_ip'] = $GLOBALS['egw_info']['server']['num_unsuccessful_id'] * 5; // default is 5 times as high as the id default; since accessing via proxy is quite common
|
|
$save_rep = true;
|
|
}
|
|
if (!isset($GLOBALS['egw_info']['server']['install_id']))
|
|
{
|
|
$GLOBALS['egw_info']['server']['install_id'] = md5(Auth::randomstring(15));
|
|
}
|
|
if (!isset($GLOBALS['egw_info']['server']['max_history']))
|
|
{
|
|
$GLOBALS['egw_info']['server']['max_history'] = 20;
|
|
$save_rep = true;
|
|
}
|
|
|
|
if ($save_rep)
|
|
{
|
|
$config = new Config('phpgwapi');
|
|
$config->read_repository();
|
|
$config->value('max_access_log_age',$GLOBALS['egw_info']['server']['max_access_log_age']);
|
|
$config->value('block_time',$GLOBALS['egw_info']['server']['block_time']);
|
|
$config->value('num_unsuccessful_id',$GLOBALS['egw_info']['server']['num_unsuccessful_id']);
|
|
$config->value('num_unsuccessful_ip',$GLOBALS['egw_info']['server']['num_unsuccessful_ip']);
|
|
$config->value('install_id',$GLOBALS['egw_info']['server']['install_id']);
|
|
$config->value('max_history',$GLOBALS['egw_info']['server']['max_history']);
|
|
try
|
|
{
|
|
$config->save_repository();
|
|
}
|
|
catch (Db\Exception $e) {
|
|
_egw_log_exception($e); // ignore exception, as it blocks session creation, if database is not writable
|
|
}
|
|
}
|
|
}
|
|
self::set_cookiedomain();
|
|
|
|
// set session_timeout from global php.ini and default to 14400=4h, if not set
|
|
if (!($GLOBALS['egw_info']['server']['sessions_timeout'] = ini_get('session.gc_maxlifetime')))
|
|
{
|
|
ini_set('session.gc_maxlifetime', $GLOBALS['egw_info']['server']['sessions_timeout']=14400);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Magic function called when this class get's restored from the session
|
|
*
|
|
*/
|
|
function __wakeup()
|
|
{
|
|
if (!empty($GLOBALS['egw_info']['server']['sessions_timeout']) && session_status() === PHP_SESSION_NONE)
|
|
{
|
|
ini_set('session.gc_maxlifetime', $GLOBALS['egw_info']['server']['sessions_timeout']);
|
|
}
|
|
$this->action = null;
|
|
}
|
|
|
|
/**
|
|
* Destructor: update access-log and encrypt session
|
|
*/
|
|
function __destruct()
|
|
{
|
|
self::encrypt($this->kp3);
|
|
}
|
|
|
|
/**
|
|
* commit the sessiondata to storage
|
|
*
|
|
* It's necessary to use this function instead of session_write_close() direct, as otherwise the session is not encrypted!
|
|
*/
|
|
function commit_session()
|
|
{
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."() sessionid=$this->sessionid, _SESSION[".self::EGW_SESSION_VAR.']='.array2string($_SESSION[self::EGW_SESSION_VAR]).' '.function_backtrace());
|
|
self::encrypt($this->kp3);
|
|
|
|
session_write_close();
|
|
}
|
|
|
|
/**
|
|
* Keys of session variables which get encrypted
|
|
*
|
|
* @var array
|
|
*/
|
|
static $egw_session_vars = array(
|
|
//self::EGW_SESSION_VAR, no need to encrypt and required by the session list
|
|
self::EGW_APPSESSION_VAR,
|
|
self::EGW_INFO_CACHE,
|
|
self::EGW_OBJECT_CACHE,
|
|
);
|
|
|
|
static $mcrypt;
|
|
|
|
/**
|
|
* Name of flag in session to signal it is encrypted or not
|
|
*/
|
|
const EGW_SESSION_ENCRYPTED = 'egw_session_encrypted';
|
|
|
|
/**
|
|
* Encrypt the variables in the session
|
|
*
|
|
* Is called by self::__destruct().
|
|
*/
|
|
static function encrypt($kp3)
|
|
{
|
|
// switch that on to analyse memory usage in the session
|
|
//self::log_session_usage($_SESSION[self::EGW_APPSESSION_VAR],'_SESSION['.self::EGW_APPSESSION_VAR.']',true,5000);
|
|
|
|
if (!isset($_SESSION[self::EGW_SESSION_ENCRYPTED]) && self::init_crypt($kp3))
|
|
{
|
|
foreach(self::$egw_session_vars as $name)
|
|
{
|
|
if (isset($_SESSION[$name]))
|
|
{
|
|
$_SESSION[$name] = mcrypt_generic(self::$mcrypt,serialize($_SESSION[$name]));
|
|
//error_log(__METHOD__."() 'encrypting' session var: $name, len=".strlen($_SESSION[$name]));
|
|
}
|
|
}
|
|
$_SESSION[self::EGW_SESSION_ENCRYPTED] = true; // flag session as encrypted
|
|
|
|
mcrypt_generic_deinit(self::$mcrypt);
|
|
self::$mcrypt = null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Log the usage of session-vars
|
|
*
|
|
* @param array &$arr
|
|
* @param string $label
|
|
* @param boolean $recursion =true if true call itself for every item > $limit
|
|
* @param int $limit =1000 log only differences > $limit
|
|
*/
|
|
static function log_session_usage(&$arr,$label,$recursion=true,$limit=1000)
|
|
{
|
|
if (!is_array($arr)) return;
|
|
|
|
$sizes = array();
|
|
foreach($arr as $key => &$data)
|
|
{
|
|
$sizes[$key] = strlen(serialize($data));
|
|
}
|
|
arsort($sizes,SORT_NUMERIC);
|
|
foreach($sizes as $key => $size)
|
|
{
|
|
$diff = $size - (int)$_SESSION[$label.'-sizes'][$key];
|
|
$_SESSION[$label.'-sizes'][$key] = $size;
|
|
if ($diff > $limit)
|
|
{
|
|
error_log("strlen({$label}[$key])=".Vfs::hsize($size).", diff=".Vfs::hsize($diff));
|
|
if ($recursion) self::log_session_usage($arr[$key],$label.'['.$key.']',$recursion,$limit);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Decrypt the variables in the session
|
|
*
|
|
* Is called by self::init_handler from api/src/loader.php (called from the header.inc.php)
|
|
* before the restore of the eGW enviroment takes place, so that the whole thing can be encrypted
|
|
*/
|
|
static function decrypt()
|
|
{
|
|
if ($_SESSION[self::EGW_SESSION_ENCRYPTED] && self::init_crypt(self::get_request('kp3')))
|
|
{
|
|
foreach(self::$egw_session_vars as $name)
|
|
{
|
|
if (isset($_SESSION[$name]))
|
|
{
|
|
$_SESSION[$name] = unserialize(trim(mdecrypt_generic(self::$mcrypt,$_SESSION[$name])), ['allowed_classes' => true]);
|
|
//error_log(__METHOD__."() 'decrypting' session var $name: gettype($name) = ".gettype($_SESSION[$name]));
|
|
}
|
|
}
|
|
unset($_SESSION[self::EGW_SESSION_ENCRYPTED]); // delete encryption flag
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check if session encryption is configured, possible and initialise it
|
|
*
|
|
* If mcrypt extension is not available (eg. in PHP 7.2+ no longer contains it) fail gracefully.
|
|
*
|
|
* @param string $kp3 mcrypt key transported via cookie or get parameter like the session id,
|
|
* unlike the session id it's not know on the server, so only the client-request can decrypt the session!
|
|
* @return boolean true if encryption is used, false otherwise
|
|
*/
|
|
static private function init_crypt($kp3)
|
|
{
|
|
if(!$GLOBALS['egw_info']['server']['mcrypt_enabled'])
|
|
{
|
|
return false; // session encryption is switched off
|
|
}
|
|
if ($GLOBALS['egw_info']['currentapp'] == 'syncml' || !$kp3)
|
|
{
|
|
$kp3 = 'staticsyncmlkp3'; // syncml has no kp3!
|
|
}
|
|
if (is_null(self::$mcrypt))
|
|
{
|
|
if (!check_load_extension('mcrypt'))
|
|
{
|
|
error_log(__METHOD__."() required PHP extension mcrypt not loaded and can not be loaded, sessions get NOT encrypted!");
|
|
return false;
|
|
}
|
|
if (!(self::$mcrypt = mcrypt_module_open(MCRYPT_TRIPLEDES, '', MCRYPT_MODE_ECB, '')))
|
|
{
|
|
error_log(__METHOD__."() could not mcrypt_module_open(MCRYPT_TRIPLEDES,'',MCRYPT_MODE_ECB,''), sessions get NOT encrypted!");
|
|
return false;
|
|
}
|
|
$iv_size = mcrypt_enc_get_iv_size(self::$mcrypt);
|
|
$iv = !isset($GLOBALS['egw_info']['server']['mcrypt_iv']) || strlen($GLOBALS['egw_info']['server']['mcrypt_iv']) < $iv_size ?
|
|
mcrypt_create_iv ($iv_size, MCRYPT_DEV_RANDOM) : substr($GLOBALS['egw_info']['server']['mcrypt_iv'],0,$iv_size);
|
|
|
|
if (!$iv || mcrypt_generic_init(self::$mcrypt,$kp3, $iv) < 0)
|
|
{
|
|
error_log(__METHOD__."() could not initialise mcrypt, sessions get NOT encrypted!");
|
|
return self::$mcrypt = false;
|
|
}
|
|
}
|
|
return is_resource(self::$mcrypt);
|
|
}
|
|
|
|
/**
|
|
* Create a new eGW session
|
|
*
|
|
* @param string $login user login
|
|
* @param string $passwd user password
|
|
* @param string $passwd_type type of password being used, ie plaintext, md5, sha1
|
|
* @param boolean $no_session =false dont create a real session, eg. for GroupDAV clients using only basic auth, no cookie support
|
|
* @param boolean $auth_check =true if false, the user is loged in without checking his password (eg. for single sign on), default = true
|
|
* @param boolean $fail_on_forced_password_change =false true: do NOT create session, if password change requested
|
|
* @param string|boolean $check_2fa =false string: 2fa-code to check (only if exists) and fail if wrong, false: do NOT check 2fa
|
|
* @param string $remember_me =null "True" for checkbox checked, or periode for user-choice select-box eg. "P1W" or "" for NOT remember
|
|
* @return string|boolean session id or false if session was not created, $this->(cd_)reason contains cause
|
|
*/
|
|
function create($login,$passwd = '',$passwd_type = '',$no_session=false,$auth_check=true,$fail_on_forced_password_change=false,$check_2fa=false,$remember_me=null)
|
|
{
|
|
try {
|
|
if (is_array($login))
|
|
{
|
|
$this->login = $login['login'];
|
|
$this->passwd = $login['passwd'];
|
|
$this->passwd_type = $login['passwd_type'];
|
|
$login = $this->login;
|
|
}
|
|
else
|
|
{
|
|
$this->login = $login;
|
|
$this->passwd = $passwd;
|
|
$this->passwd_type = $passwd_type;
|
|
}
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."($this->login,$this->passwd,$this->passwd_type,$no_session,$auth_check) starting ...");
|
|
|
|
self::split_login_domain($login,$this->account_lid,$this->account_domain);
|
|
// add domain to the login, if not already there
|
|
if (substr($this->login,-strlen($this->account_domain)-1) != '@'.$this->account_domain)
|
|
{
|
|
$this->login .= '@'.$this->account_domain;
|
|
}
|
|
$now = time();
|
|
//error_log(__METHOD__."($login,$passwd,$passwd_type,$no_session,$auth_check) account_lid=$this->account_lid, account_domain=$this->account_domain, default_domain={$GLOBALS['egw_info']['server']['default_domain']}, user/domain={$GLOBALS['egw_info']['user']['domain']}");
|
|
|
|
// This is to ensure that we authenticate to the correct domain (might not be default)
|
|
// if no domain is given we use the default domain, so we dont need to re-create everything
|
|
if (!$GLOBALS['egw_info']['user']['domain'] && $this->account_domain == $GLOBALS['egw_info']['server']['default_domain'])
|
|
{
|
|
$GLOBALS['egw_info']['user']['domain'] = $this->account_domain;
|
|
}
|
|
elseif (!$this->account_domain && $GLOBALS['egw_info']['user']['domain'])
|
|
{
|
|
$this->account_domain = $GLOBALS['egw_info']['user']['domain'];
|
|
}
|
|
elseif($this->account_domain != $GLOBALS['egw_info']['user']['domain'])
|
|
{
|
|
throw new Exception("Wrong domain! '$this->account_domain' != '{$GLOBALS['egw_info']['user']['domain']}'");
|
|
}
|
|
unset($GLOBALS['egw_info']['server']['default_domain']); // we kill this for security reasons
|
|
|
|
$user_ip = self::getuser_ip();
|
|
|
|
$this->account_id = $GLOBALS['egw']->accounts->name2id($this->account_lid,'account_lid','u');
|
|
|
|
// do we need to check 'remember me' token (to bypass authentication)
|
|
if ($auth_check && !empty($_COOKIE[self::REMEMBER_ME_COOKIE]))
|
|
{
|
|
$auth_check = !$this->skipPasswordAuth($_COOKIE[self::REMEMBER_ME_COOKIE], $this->account_id);
|
|
}
|
|
|
|
if (($blocked = $this->login_blocked($login,$user_ip)) || // too many unsuccessful attempts
|
|
!empty($GLOBALS['egw_info']['server']['global_denied_users'][$this->account_lid]) ||
|
|
$auth_check && !$this->authenticate() ||
|
|
$this->account_id && $GLOBALS['egw']->accounts->get_type($this->account_id) == 'g')
|
|
{
|
|
$this->reason = $blocked ? 'blocked, too many attempts' : 'bad login or password';
|
|
$this->cd_reason = $blocked ? self::CD_BLOCKED : self::CD_BAD_LOGIN_OR_PASSWORD;
|
|
|
|
// we dont log anon users as it would block the website
|
|
if (!$GLOBALS['egw']->acl->get_specific_rights_for_account($this->account_id,'anonymous','phpgwapi'))
|
|
{
|
|
$this->log_access($this->reason,$login,$user_ip,0); // log unsuccessfull login
|
|
}
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."($this->login,$this->passwd,$this->passwd_type,$no_session,$auth_check) UNSUCCESSFULL ($this->reason)");
|
|
return false;
|
|
}
|
|
|
|
if (!$this->account_id && $GLOBALS['egw_info']['server']['auto_create_acct'])
|
|
{
|
|
if ($GLOBALS['egw_info']['server']['auto_create_acct'] == 'lowercase')
|
|
{
|
|
$this->account_lid = strtolower($this->account_lid);
|
|
}
|
|
$this->account_id = $GLOBALS['egw']->accounts->auto_add($this->account_lid, $passwd);
|
|
}
|
|
// fix maybe wrong case in username, it makes problems eg. in filemanager (name of homedir)
|
|
if ($this->account_lid != ($lid = $GLOBALS['egw']->accounts->id2name($this->account_id)))
|
|
{
|
|
$this->account_lid = $lid;
|
|
$this->login = $lid.substr($this->login,strlen($lid));
|
|
}
|
|
|
|
$GLOBALS['egw_info']['user']['account_id'] = $this->account_id;
|
|
|
|
// for *DAV and eSync we use a pseudo sessionid created from md5(user:passwd)
|
|
// --> allows this stateless protocols which use basic auth to use sessions!
|
|
if (($this->sessionid = self::get_sessionid(true)))
|
|
{
|
|
if (session_status() !== PHP_SESSION_ACTIVE) // gives warning including password
|
|
{
|
|
session_id($this->sessionid);
|
|
}
|
|
}
|
|
elseif (!headers_sent()) // only gives warnings, nothing we can do
|
|
{
|
|
self::cache_control();
|
|
session_start();
|
|
// set a new session-id, if not syncml (already done in Horde code and can NOT be changed)
|
|
if (!$no_session && $GLOBALS['egw_info']['flags']['currentapp'] != 'syncml')
|
|
{
|
|
session_regenerate_id(true);
|
|
}
|
|
$this->sessionid = session_id();
|
|
}
|
|
else
|
|
{
|
|
$this->sessionid = session_id() ?: Auth::randomstring(24);
|
|
}
|
|
$this->kp3 = Auth::randomstring(24);
|
|
|
|
$GLOBALS['egw_info']['user'] = $this->read_repositories();
|
|
if ($GLOBALS['egw']->accounts->is_expired($GLOBALS['egw_info']['user']))
|
|
{
|
|
$this->reason = 'account is expired';
|
|
$this->cd_reason = self::CD_ACCOUNT_EXPIRED;
|
|
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."($this->login,$this->passwd,$this->passwd_type,$no_session,$auth_check) UNSUCCESSFULL ($this->reason)");
|
|
return false;
|
|
}
|
|
|
|
Cache::setSession('phpgwapi', 'password', base64_encode($this->passwd));
|
|
|
|
// if we have a second factor, check it before forced password change
|
|
if ($check_2fa !== false)
|
|
{
|
|
try {
|
|
$this->checkMultifactorAuth($check_2fa, $_COOKIE[self::REMEMBER_ME_COOKIE]);
|
|
}
|
|
catch(\Exception $e) {
|
|
$this->cd_reason = $e->getCode();
|
|
$this->reason = $e->getMessage();
|
|
$this->log_access($this->reason, $login, $user_ip, 0); // log unsuccessful login
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."($this->login,$this->passwd,$this->passwd_type,$no_session,$auth_check,$fail_on_forced_password_change,'$check_2fa') UNSUCCESSFULL ($this->reason)");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if ($fail_on_forced_password_change && Auth::check_password_change($this->reason) === false)
|
|
{
|
|
$this->cd_reason = self::CD_FORCE_PASSWORD_CHANGE;
|
|
return false;
|
|
}
|
|
|
|
if ($GLOBALS['egw']->acl->check('anonymous',1,'phpgwapi'))
|
|
{
|
|
$this->session_flags = 'A';
|
|
}
|
|
else
|
|
{
|
|
$this->session_flags = 'N';
|
|
}
|
|
|
|
if (($hook_result = Hooks::process(array(
|
|
'location' => 'session_creation',
|
|
'sessionid' => $this->sessionid,
|
|
'session_flags' => $this->session_flags,
|
|
'account_id' => $this->account_id,
|
|
'account_lid' => $this->account_lid,
|
|
'passwd' => $this->passwd,
|
|
'account_domain' => $this->account_domain,
|
|
'user_ip' => $user_ip,
|
|
),'',true))) // true = run hooks from all apps, not just the ones the current user has perms to run
|
|
{
|
|
foreach($hook_result as $reason)
|
|
{
|
|
if ($reason) // called hook requests to deny the session
|
|
{
|
|
$this->reason = $this->cd_reason = $reason;
|
|
$this->log_access($this->reason,$login,$user_ip,0); // log unsuccessfull login
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."($this->login,$this->passwd,$this->passwd_type,$no_session,$auth_check) UNSUCCESSFULL ($this->reason)");
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
$GLOBALS['egw']->db->transaction_begin();
|
|
$this->register_session($this->login,$user_ip,$now,$this->session_flags);
|
|
if ($this->session_flags != 'A') // dont log anonymous sessions
|
|
{
|
|
$this->sessionid_access_log = $this->log_access($this->sessionid,$login,$user_ip,$this->account_id);
|
|
// We do NOT log anonymous sessions to not block website and also to cope with
|
|
// high rate anon endpoints might be called creating a bottleneck in the egw_accounts table.
|
|
Cache::setSession('phpgwapi', 'account_previous_login', $GLOBALS['egw']->auth->previous_login ?? null);
|
|
$GLOBALS['egw']->accounts->update_lastlogin($this->account_id,$user_ip);
|
|
}
|
|
$GLOBALS['egw']->db->transaction_commit();
|
|
|
|
if (!headers_sent())
|
|
{
|
|
if ($GLOBALS['egw_info']['server']['usecookies'] && !$no_session)
|
|
{
|
|
self::egw_setcookie(self::EGW_SESSION_NAME, $this->sessionid);
|
|
self::egw_setcookie('kp3', $this->kp3);
|
|
self::egw_setcookie('domain', $this->account_domain);
|
|
}
|
|
if ($GLOBALS['egw_info']['server']['usecookies'] && !$no_session || isset($_COOKIE['last_loginid']))
|
|
{
|
|
self::egw_setcookie('last_loginid', $this->account_lid, $now + 1209600); /* For 2 weeks */
|
|
self::egw_setcookie('last_domain', $this->account_domain, $now + 1209600);
|
|
}
|
|
|
|
// set new remember me token/cookie, if requested and necessary
|
|
$expiration = null;
|
|
if (($token = $this->checkSetRememberMeToken($remember_me, $_COOKIE[self::REMEMBER_ME_COOKIE] ?? null, $expiration)))
|
|
{
|
|
self::egw_setcookie(self::REMEMBER_ME_COOKIE, $token, $expiration);
|
|
}
|
|
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__ . "($this->login,$this->passwd,$this->passwd_type,$no_session,$auth_check) successfull sessionid=$this->sessionid");
|
|
}
|
|
elseif (self::ERROR_LOG_DEBUG) error_log(__METHOD__ . "($this->login,$this->passwd,$this->passwd_type,$no_session,$auth_check) could NOT set session cookies, headers already sent");
|
|
|
|
// hook called once session is created
|
|
Hooks::process(array(
|
|
'location' => 'session_created',
|
|
'sessionid' => $this->sessionid,
|
|
'session_flags' => $this->session_flags,
|
|
'account_id' => $this->account_id,
|
|
'account_lid' => $this->account_lid,
|
|
'passwd' => $this->passwd,
|
|
'account_domain' => $this->account_domain,
|
|
'user_ip' => $user_ip,
|
|
'session_type' => Session\Type::get($_SERVER['REQUEST_URI'],
|
|
$GLOBALS['egw_info']['flags']['current_app'] ?? null,
|
|
true), // true return WebGUI instead of login, as we are logged in now
|
|
),'',true);
|
|
|
|
return $this->sessionid;
|
|
}
|
|
// catch all exceptions, as their (allways logged) trace (eg. on a database error) would contain the user password
|
|
catch(Exception $e) {
|
|
$this->reason = $this->cd_reason = is_a($e, Db\Exception::class) ?
|
|
// do not output specific database error, eg. invalid SQL statement
|
|
lang('Database Error!') : $e->getMessage();
|
|
error_log(__METHOD__."('$login', ".array2string(str_repeat('*', strlen($passwd))).
|
|
", '$passwd_type', no_session=".array2string($no_session).
|
|
", auth_check=".array2string($auth_check).
|
|
", fail_on_forced_password_change=".array2string($fail_on_forced_password_change).
|
|
") Exception ".$e->getMessage());
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Authenticate user with password or token
|
|
*
|
|
* @return bool
|
|
* @throws \Exception
|
|
*/
|
|
public function authenticate()
|
|
{
|
|
$is_valid_token = Auth\Token::authenticate($this->account_lid, $this->passwd, $this->limits);
|
|
$this->token_auth = (bool)$is_valid_token;
|
|
if (!isset($is_valid_token))
|
|
{
|
|
return $GLOBALS['egw']->auth->authenticate($this->account_lid, $this->passwd, $this->passwd_type);
|
|
}
|
|
return $is_valid_token;
|
|
}
|
|
|
|
/**
|
|
* Check if password authentication is required or given token is sufficient
|
|
*
|
|
* Token is only checked for 'remember_me_token' === 'always', not for default of only for 2FA!
|
|
*
|
|
* Password auth is also required if 2FA is not disabled and either required or configured by user.
|
|
*
|
|
* @param string $token value of token
|
|
* @param int& $account_id =null account_id of token-owner to limit check on that user, on return account_id of token owner
|
|
* @return boolean false: if further auth check is required, true: if token is sufficient for authentication
|
|
*/
|
|
public function skipPasswordAuth($token, &$account_id=null)
|
|
{
|
|
// if token is empty or disabled --> password authentication required
|
|
if (empty($token) || $GLOBALS['egw_info']['server']['remember_me_token'] !== 'always' ||
|
|
!($client = $this->checkOpenIDconfigured()))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// check if token exists and is (still) valid
|
|
$tokenRepo = new OpenID\Repositories\AccessTokenRepository();
|
|
if (!($access_token = $tokenRepo->findToken($client, $account_id, 'PT1S', $token)))
|
|
{
|
|
return false;
|
|
}
|
|
$account_id = $access_token->getUserIdentifier();
|
|
|
|
// check if we need a second factor
|
|
if ($GLOBALS['egw_info']['server']['2fa_required'] !== 'disabled' &&
|
|
(($creds = Credentials::read(0, Credentials::TWOFA, $account_id)) ||
|
|
$GLOBALS['egw_info']['server']['2fa_required'] === 'strict'))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// access-token is sufficient
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Check multifcator authemtication
|
|
*
|
|
* @param string $code 2fa-code
|
|
* @param string $token remember me token
|
|
* @throws \Exception with error-message if NOT successful
|
|
*/
|
|
protected function checkMultifactorAuth($code, $token)
|
|
{
|
|
$errors = $factors = [];
|
|
|
|
if ($GLOBALS['egw_info']['server']['2fa_required'] === 'disabled')
|
|
{
|
|
return; // nothing to check
|
|
}
|
|
|
|
// check if token exists and is (still) valid
|
|
if (!empty($token) && $GLOBALS['egw_info']['server']['remember_me_token'] !== 'disabled' &&
|
|
($client = $this->checkOpenIDconfigured()))
|
|
{
|
|
$tokenRepo = new OpenID\Repositories\AccessTokenRepository();
|
|
if ($tokenRepo->findToken($client, $this->account_id, 'PT1S', $token))
|
|
{
|
|
$factors['remember_me_token'] = true;
|
|
}
|
|
else
|
|
{
|
|
$errors['remember_me_token'] = lang("Invalid or expired 'remember me' token");
|
|
}
|
|
}
|
|
|
|
// if 2fa is configured by user, check it
|
|
if (($creds = Credentials::read(0, Credentials::TWOFA, $this->account_id)))
|
|
{
|
|
if (empty($code))
|
|
{
|
|
$errors['2fa_code'] = lang('2-Factor Authentication code required');
|
|
}
|
|
else
|
|
{
|
|
$google2fa = new Google2FA\Google2FA();
|
|
if (!empty($code) && $google2fa->verify($code, $creds['2fa_password']))
|
|
{
|
|
$factors['2fa_code'] = true;
|
|
}
|
|
else
|
|
{
|
|
$errors['2fa_code'] = lang('Invalid 2-Factor Authentication code');
|
|
}
|
|
}
|
|
}
|
|
|
|
// check for more factors and/or policies
|
|
// hook can add factors, errors or throw \Exception with error-message and -code
|
|
Hooks::process([
|
|
'location' => 'multifactor_policy',
|
|
'factors' => &$factors,
|
|
'errors' => &$errors,
|
|
'2fa_code' => $code,
|
|
'remember_me_token' => $token,
|
|
], ['webauthn'], true);
|
|
|
|
if (!count($factors) && (count($errors) ||
|
|
$GLOBALS['egw_info']['server']['2fa_required'] === 'strict'))
|
|
{
|
|
if (!empty($code) && isset($errors['2fa_code']))
|
|
{
|
|
// we log the missing factor, but externally only show "Bad Login or Password"
|
|
// to give no indication that the password was already correct
|
|
throw new \Exception(implode(', ', $errors), self::CD_BAD_LOGIN_OR_PASSWORD);
|
|
}
|
|
else
|
|
{
|
|
throw new \Exception(implode(', ', $errors), self::CD_SECOND_FACTOR_REQUIRED);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check if we need to set a remember me token/cookie
|
|
*
|
|
* @param string $remember_me =null "True" for checkbox checked, or periode for user-choice select-box eg. "P1W" or "" for NOT remember
|
|
* @param string $token current remember me token
|
|
* @param int& $expriation on return expiration time of new cookie
|
|
* @return string new token to set as Cookieor null to not set a new one
|
|
*/
|
|
protected function checkSetRememberMeToken($remember_me, $token, &$expiration)
|
|
{
|
|
// do we need a new token
|
|
if (!empty($remember_me) && $GLOBALS['egw_info']['server']['remember_me_token'] !== 'disabled' &&
|
|
($client = $this->checkOpenIDconfigured()))
|
|
{
|
|
if (!empty($token))
|
|
{
|
|
// check if token exists and is (still) valid
|
|
$tokenRepo = new OpenID\Repositories\AccessTokenRepository();
|
|
if ($tokenRepo->findToken($client, $this->account_id, 'PT1S', $token))
|
|
{
|
|
return null; // token still valid, no need to set it again
|
|
}
|
|
}
|
|
$lifetime = $this->rememberMeTokenLifetime(is_string($remember_me) ? $remember_me : null);
|
|
$expiration = $this->rememberMeTokenLifetime(is_string($remember_me) ? $remember_me : null, true);
|
|
|
|
$tokenFactory = new OpenID\Token();
|
|
if (($token = $tokenFactory->accessToken(self::OPENID_REMEMBER_ME_CLIENT_ID, [], $lifetime, false, $lifetime, false)))
|
|
{
|
|
return $token->getIdentifier();
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Check if 'remember me' token should be deleted on explict logout
|
|
*
|
|
* @return boolean false: if 2FA is enabeld for user, true: otherwise
|
|
*/
|
|
public function removeRememberMeTokenOnLogout()
|
|
{
|
|
return $GLOBALS['egw_info']['server']['2fa_required'] === 'disabled' ||
|
|
$GLOBALS['egw_info']['server']['2fa_required'] !== 'strict' &&
|
|
!($creds = Credentials::read(0, Credentials::TWOFA, $this->account_id));
|
|
}
|
|
|
|
/**
|
|
* OpenID Client ID for remember me token
|
|
*/
|
|
const OPENID_REMEMBER_ME_CLIENT_ID = 'login-remember-me';
|
|
|
|
/**
|
|
* Check and if not configure OpenID app to generate 'remember me' tokens
|
|
*
|
|
* @return OpenID\Entities\ClientEntity|null null if OpenID Server app is not installed
|
|
*/
|
|
protected function checkOpenIDconfigured()
|
|
{
|
|
// OpenID app not installed --> password authentication required
|
|
if (!isset($GLOBALS['egw_info']['apps']))
|
|
{
|
|
$GLOBALS['egw']->applications->read_installed_apps();
|
|
}
|
|
if (empty($GLOBALS['egw_info']['apps']['openid']))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
$clients = new OpenID\Repositories\ClientRepository();
|
|
try {
|
|
$client = $clients->getClientEntity(self::OPENID_REMEMBER_ME_CLIENT_ID, null, null, false); // false = do NOT check client-secret
|
|
}
|
|
catch (OAuthServerException $e)
|
|
{
|
|
unset($e);
|
|
$client = new OpenID\Entities\ClientEntity();
|
|
$client->setIdentifier(self::OPENID_REMEMBER_ME_CLIENT_ID);
|
|
$client->setSecret(Auth::randomstring(24)); // must not be unset
|
|
$client->setName(lang('Remember me token'));
|
|
$client->setAccessTokenTTL($this->rememberMeTokenLifetime());
|
|
$client->setRefreshTokenTTL('P0S'); // no refresh token
|
|
$client->setRedirectUri($GLOBALS['egw_info']['server']['webserver_url'].'/');
|
|
$clients->persistNewClient($client);
|
|
}
|
|
return $client;
|
|
}
|
|
|
|
/**
|
|
* Return lifetime for remember me token
|
|
*
|
|
* @param string $user user choice, if allowed
|
|
* @param boolean $ts =false false: return periode string, true: return integer timestamp
|
|
* @return string periode spec eg. 'P1M'
|
|
*/
|
|
protected function rememberMeTokenLifetime($user=null, $ts=false)
|
|
{
|
|
switch ((string)$GLOBALS['egw_info']['server']['remember_me_lifetime'])
|
|
{
|
|
case 'user':
|
|
if (!empty($user))
|
|
{
|
|
$lifetime = $user;
|
|
break;
|
|
}
|
|
// fall-through for default lifetime
|
|
case '': // default lifetime
|
|
$lifetime = 'P1M';
|
|
break;
|
|
default:
|
|
$lifetime = $GLOBALS['egw_info']['server']['remember_me_lifetime'];
|
|
break;
|
|
}
|
|
if ($ts)
|
|
{
|
|
$expiration = new DateTime('now', DateTime::$server_timezone);
|
|
$expiration->add(new \DateInterval($lifetime));
|
|
return $expiration->format('ts');
|
|
}
|
|
return $lifetime;
|
|
}
|
|
|
|
/**
|
|
* Store eGW specific session-vars
|
|
*
|
|
* @param string $login
|
|
* @param string $user_ip
|
|
* @param int $now
|
|
* @param string $session_flags
|
|
*/
|
|
private function register_session($login,$user_ip,$now,$session_flags)
|
|
{
|
|
$_SESSION[self::EGW_SESSION_VAR] = array(
|
|
'session_id' => $this->sessionid,
|
|
'session_lid' => $login,
|
|
'session_ip' => $user_ip,
|
|
'session_logintime' => $now,
|
|
'session_dla' => $now,
|
|
'session_action' => $_SERVER['PHP_SELF'],
|
|
'session_flags' => $session_flags,
|
|
// we need the install-id to differ between several installations sharing one tmp-dir
|
|
'session_install_id' => $GLOBALS['egw_info']['server']['install_id'],
|
|
// we need to preserve the limits and if authenticated via token
|
|
'session_limits' => $this->limits,
|
|
'session_token_auth' => $this->token_auth,
|
|
);
|
|
}
|
|
|
|
/**
|
|
* name of access-log table
|
|
*/
|
|
const ACCESS_LOG_TABLE = 'egw_access_log';
|
|
|
|
/**
|
|
* Prefix used to log unsucessful login attempts in cache, if DB is unavailable
|
|
*/
|
|
const FALSE_IP_CACHE_PREFIX = 'false_ip-';
|
|
const FALSE_ID_CACHE_PREFIX = 'false_id-';
|
|
|
|
/**
|
|
* Write or update (for logout) the access_log
|
|
*
|
|
* We do NOT log anonymous sessions to not block website and also to cope with
|
|
* high rate anon endpoints might be called creating a bottleneck in the egw_access_log table.
|
|
*
|
|
* @param string|int $sessionid nummeric or PHP session id or error-message for unsuccessful logins
|
|
* @param string $login ='' account_lid (evtl. with domain) or '' for setting the logout-time
|
|
* @param string $user_ip ='' ip to log
|
|
* @param int $account_id =0 numerical account_id
|
|
* @return int $sessionid primary key of egw_access_log for login, null otherwise
|
|
*/
|
|
private function log_access($sessionid,$login='',$user_ip='',$account_id=0)
|
|
{
|
|
// do not log anything for anonymous sessions
|
|
if ($this->session_flags === 'A')
|
|
{
|
|
return;
|
|
}
|
|
$now = time();
|
|
|
|
// if sessionid contains non-ascii chars (only happens for error-messages)
|
|
// --> transliterate it to ascii, as session_php only allows ascii chars
|
|
if (preg_match('/[^\x20-\x7f]/', $sessionid))
|
|
{
|
|
$sessionid = Translation::to_ascii($sessionid);
|
|
}
|
|
|
|
if ($login)
|
|
{
|
|
$GLOBALS['egw']->db->insert(self::ACCESS_LOG_TABLE,array(
|
|
'session_php' => $sessionid,
|
|
'loginid' => $login,
|
|
'ip' => $user_ip,
|
|
'li' => $now,
|
|
'account_id'=> $account_id,
|
|
'user_agent'=> $_SERVER['HTTP_USER_AGENT'],
|
|
'session_dla' => $now,
|
|
'session_action' => $this->update_dla(false), // dont update egw_access_log
|
|
),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');
|
|
|
|
// if we can not store failed login attempts in database, store it in cache
|
|
if (!$ret && !$account_id)
|
|
{
|
|
Cache::setInstance(__CLASS__, self::FALSE_IP_CACHE_PREFIX.$user_ip,
|
|
1+Cache::getInstance(__CLASS__, self::FALSE_IP_CACHE_PREFIX.$user_ip),
|
|
$GLOBALS['egw_info']['server']['block_time'] * 60);
|
|
|
|
Cache::setInstance(__CLASS__, self::FALSE_ID_CACHE_PREFIX.$login,
|
|
1+Cache::getInstance(__CLASS__, self::FALSE_ID_CACHE_PREFIX.$login),
|
|
$GLOBALS['egw_info']['server']['block_time'] * 60);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (!is_numeric($sessionid) && $sessionid == $this->sessionid && $this->sessionid_access_log)
|
|
{
|
|
$sessionid = $this->sessionid_access_log;
|
|
}
|
|
$GLOBALS['egw']->db->update(self::ACCESS_LOG_TABLE,array(
|
|
'lo' => $now
|
|
),is_numeric($sessionid) ? array(
|
|
'sessionid' => $sessionid,
|
|
) : array(
|
|
'session_php' => $sessionid,
|
|
),__LINE__,__FILE__);
|
|
|
|
// run maintenance only on logout, to not delay login
|
|
if ($GLOBALS['egw_info']['server']['max_access_log_age'])
|
|
{
|
|
$max_age = $now - $GLOBALS['egw_info']['server']['max_access_log_age'] * 24 * 60 * 60;
|
|
|
|
$GLOBALS['egw']->db->delete(self::ACCESS_LOG_TABLE,"li < $max_age",__LINE__,__FILE__);
|
|
}
|
|
}
|
|
//error_log(__METHOD__."('$sessionid', '$login', '$user_ip', $account_id) returning ".array2string($ret));
|
|
return $ret ?? null;
|
|
}
|
|
|
|
/**
|
|
* Protect against brute force attacks, block login if too many unsuccessful login attmepts
|
|
*
|
|
* @param string $login account_lid (evtl. with domain)
|
|
* @param string $ip ip of the user
|
|
* @returns bool login blocked?
|
|
*/
|
|
private function login_blocked($login,$ip)
|
|
{
|
|
$block_time = time() - $GLOBALS['egw_info']['server']['block_time'] * 60;
|
|
|
|
$false_id = $false_ip = 0;
|
|
foreach($GLOBALS['egw']->db->union(array(
|
|
array(
|
|
'table' => self::ACCESS_LOG_TABLE,
|
|
'cols' => "'false_ip' AS name,COUNT(*) AS num",
|
|
'where' => array(
|
|
'account_id' => 0,
|
|
'ip' => $ip,
|
|
"li > $block_time",
|
|
),
|
|
),
|
|
array(
|
|
'table' => self::ACCESS_LOG_TABLE,
|
|
'cols' => "'false_id' AS name,COUNT(*) AS num",
|
|
'where' => array(
|
|
'account_id' => 0,
|
|
'loginid' => $login,
|
|
"li > $block_time",
|
|
),
|
|
),
|
|
array(
|
|
'table' => self::ACCESS_LOG_TABLE,
|
|
'cols' => "'false_id' AS name,COUNT(*) AS num",
|
|
'where' => array(
|
|
'account_id' => 0,
|
|
'loginid LIKE '.$GLOBALS['egw']->db->quote($login.'@%'),
|
|
"li > $block_time",
|
|
)
|
|
),
|
|
), __LINE__, __FILE__) as $row)
|
|
{
|
|
${$row['name']} += $row['num'];
|
|
}
|
|
|
|
// check cache too, in case DB is readonly
|
|
$false_ip += Cache::getInstance(__CLASS__, self::FALSE_IP_CACHE_PREFIX.$ip);
|
|
$false_id += Cache::getInstance(__CLASS__, self::FALSE_ID_CACHE_PREFIX.$login);
|
|
|
|
// if IP matches one in the (comma-separated) whitelist
|
|
// --> check with whitelists optional number (none means never block)
|
|
$matches = null;
|
|
if (!empty($GLOBALS['egw_info']['server']['unsuccessful_ip_whitelist']) &&
|
|
preg_match_all('/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})(:\d+)?/',
|
|
$GLOBALS['egw_info']['server']['unsuccessful_ip_whitelist'], $matches) &&
|
|
($key=array_search($ip, $matches[1])) !== false)
|
|
{
|
|
$blocked = !empty($matches[2][$key]) && $false_ip > $matches[2][$key];
|
|
}
|
|
else // else check with general number
|
|
{
|
|
$blocked = $false_ip > $GLOBALS['egw_info']['server']['num_unsuccessful_ip'];
|
|
}
|
|
if (!$blocked)
|
|
{
|
|
$blocked = $false_id > $GLOBALS['egw_info']['server']['num_unsuccessful_id'];
|
|
}
|
|
//error_log(__METHOD__."('$login', '$ip') false_ip=$false_ip, false_id=$false_id --> blocked=".array2string($blocked));
|
|
|
|
if ($blocked && $GLOBALS['egw_info']['server']['admin_mails'] &&
|
|
$GLOBALS['egw_info']['server']['login_blocked_mail_time'] < time()-5*60) // max. one mail every 5mins
|
|
{
|
|
try {
|
|
$mailer = new Mailer();
|
|
// notify admin(s) via email
|
|
$mailer->setFrom('eGroupWare@'.$GLOBALS['egw_info']['server']['mail_suffix']);
|
|
$mailer->addHeader('Subject', lang("eGroupWare: login blocked for user '%1', IP %2",$login,$ip));
|
|
$mailer->setBody(lang("Too many unsucessful attempts to login: %1 for the user '%2', %3 for the IP %4",$false_id,$login,$false_ip,$ip));
|
|
foreach(preg_split('/,\s*/',$GLOBALS['egw_info']['server']['admin_mails']) as $mail)
|
|
{
|
|
$mailer->addAddress($mail);
|
|
}
|
|
$mailer->send();
|
|
}
|
|
catch(\Exception $e) {
|
|
// ignore exception, but log it, to block the account and give a correct error-message to user
|
|
error_log(__METHOD__."('$login', '$ip') ".$e->getMessage());
|
|
}
|
|
// save time of mail, to not send to many mails
|
|
$config = new Config('phpgwapi');
|
|
$config->read_repository();
|
|
$config->value('login_blocked_mail_time',time());
|
|
$config->save_repository();
|
|
}
|
|
return $blocked;
|
|
}
|
|
|
|
/**
|
|
* Basename of scripts for which we create a pseudo session-id based on user-credentials
|
|
*
|
|
* @var array
|
|
*/
|
|
static $pseudo_session_scripts = array(
|
|
'webdav.php', 'groupdav.php', 'remote.php'
|
|
);
|
|
|
|
/**
|
|
* Get the sessionid from Cookie, Get-Parameter or basic auth
|
|
*
|
|
* @param boolean $only_basic_auth =false return only a basic auth pseudo sessionid, default no
|
|
* @return string|null (pseudo-)session-id use or NULL if no Cookie or Basic-Auth credentials
|
|
*/
|
|
static function get_sessionid($only_basic_auth=false)
|
|
{
|
|
// for WebDAV and GroupDAV we use a pseudo sessionid created from md5(user:passwd)
|
|
// --> allows this stateless protocolls which use basic auth to use sessions!
|
|
if (isset($_SERVER['PHP_AUTH_USER']) && isset($_SERVER['PHP_AUTH_PW']) &&
|
|
(in_array(basename($_SERVER['SCRIPT_NAME']), self::$pseudo_session_scripts) ||
|
|
$_SERVER['SCRIPT_NAME'] === '/Microsoft-Server-ActiveSync'))
|
|
{
|
|
// we generate a pseudo-sessionid from the basic auth credentials
|
|
$sessionid = md5($_SERVER['PHP_AUTH_USER'].':'.$_SERVER['PHP_AUTH_PW'].':'.$_SERVER['HTTP_HOST'].':'.
|
|
EGW_SERVER_ROOT.':'.self::getuser_ip().':'.filemtime(EGW_SERVER_ROOT.'/api/setup/setup.inc.php').
|
|
// for ActiveSync we add the DeviceID
|
|
(isset($_GET['DeviceId']) && $_SERVER['SCRIPT_NAME'] === '/Microsoft-Server-ActiveSync' ? ':'.$_GET['DeviceId'] : '').
|
|
':'.$_SERVER['HTTP_USER_AGENT']);
|
|
//error_log(__METHOD__."($only_basic_auth) HTTP_HOST=$_SERVER[HTTP_HOST], PHP_AUTH_USER=$_SERVER[PHP_AUTH_USER], DeviceId=$_GET[DeviceId]: sessionid=$sessionid");
|
|
}
|
|
// same for digest auth
|
|
elseif (isset($_SERVER['PHP_AUTH_DIGEST']) &&
|
|
in_array(basename($_SERVER['SCRIPT_NAME']), self::$pseudo_session_scripts))
|
|
{
|
|
// we generate a pseudo-sessionid from the digest username, realm and nounce
|
|
// can't use full $_SERVER['PHP_AUTH_DIGEST'], as it changes (contains eg. the url)
|
|
$data = Header\Authenticate::parse_digest($_SERVER['PHP_AUTH_DIGEST']);
|
|
$sessionid = md5($data['username'].':'.$data['realm'].':'.$data['nonce'].':'.$_SERVER['HTTP_HOST'].
|
|
EGW_SERVER_ROOT.':'.self::getuser_ip().':'.filemtime(EGW_SERVER_ROOT.'/api/setup/setup.inc.php').
|
|
':'.$_SERVER['HTTP_USER_AGENT']);
|
|
}
|
|
elseif(!$only_basic_auth && isset($_REQUEST[self::EGW_SESSION_NAME]))
|
|
{
|
|
$sessionid = $_REQUEST[self::EGW_SESSION_NAME];
|
|
}
|
|
elseif(!$only_basic_auth && isset($_COOKIE[self::EGW_SESSION_NAME]))
|
|
{
|
|
$sessionid = $_COOKIE[self::EGW_SESSION_NAME];
|
|
}
|
|
else
|
|
{
|
|
$sessionid = null;
|
|
}
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."() _SERVER[REQUEST_URI]='$_SERVER[REQUEST_URI]' returning ".print_r($sessionid,true));
|
|
return $sessionid;
|
|
}
|
|
|
|
/**
|
|
* Get request or cookie variable with higher precedence to $_REQUEST then $_COOKIE
|
|
*
|
|
* In php < 5.3 that's identical to $_REQUEST[$name], but php5.3+ does no longer register cookied in $_REQUEST by default
|
|
*
|
|
* As a workaround for a bug in Safari Version 3.2.1 (5525.27.1), where cookie first letter get's upcased, we check that too.
|
|
*
|
|
* @param string $name eg. 'kp3' or domain
|
|
* @return mixed null if it's neither set in $_REQUEST or $_COOKIE
|
|
*/
|
|
static function get_request($name)
|
|
{
|
|
return isset($_REQUEST[$name]) ? $_REQUEST[$name] :
|
|
(isset($_COOKIE[$name]) ? $_COOKIE[$name] :
|
|
(isset($_COOKIE[$name=ucfirst($name)]) ? $_COOKIE[$name] : null));
|
|
}
|
|
|
|
/**
|
|
* Check to see if a session is still current and valid
|
|
*
|
|
* @param string $sessionid session id to be verfied
|
|
* @param string $kp3 ?? to be verified
|
|
* @return bool is the session valid?
|
|
*/
|
|
function verify($sessionid=null,$kp3=null)
|
|
{
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."('$sessionid','$kp3') ".function_backtrace());
|
|
|
|
$fill_egw_info_and_repositories = empty($GLOBALS['egw_info']['flags']['restored_from_session']);
|
|
|
|
if(!$sessionid)
|
|
{
|
|
$sessionid = self::get_sessionid();
|
|
$kp3 = self::get_request('kp3');
|
|
}
|
|
|
|
$this->sessionid = $sessionid;
|
|
$this->kp3 = $kp3;
|
|
|
|
|
|
if (!$this->sessionid)
|
|
{
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."('$sessionid') get_sessionid()='".self::get_sessionid()."' No session ID");
|
|
return false;
|
|
}
|
|
|
|
switch (session_status())
|
|
{
|
|
case PHP_SESSION_DISABLED:
|
|
throw new ErrorException('EGroupware requires the PHP session extension!');
|
|
case PHP_SESSION_NONE:
|
|
session_name(self::EGW_SESSION_NAME);
|
|
session_id($this->sessionid);
|
|
self::cache_control();
|
|
session_start();
|
|
break;
|
|
case PHP_SESSION_ACTIVE:
|
|
// session already started eg. by managementserver_client
|
|
}
|
|
|
|
// check if we have a eGroupware session --> return false if not (but dont destroy it!)
|
|
if (is_null($_SESSION) || !isset($_SESSION[self::EGW_SESSION_VAR]))
|
|
{
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."('$sessionid') session does NOT exist!");
|
|
return false;
|
|
}
|
|
$session =& $_SESSION[self::EGW_SESSION_VAR];
|
|
|
|
// we need to restore the limits and if authenticated via token
|
|
$this->limits = $session['session_limits'] ?? null;
|
|
$this->token_auth = $session['session_token_auth'] ?? null;
|
|
|
|
if ($session['session_dla'] <= time() - $GLOBALS['egw_info']['server']['sessions_timeout'])
|
|
{
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."('$sessionid') session timed out!");
|
|
$this->destroy($sessionid,$kp3);
|
|
return false;
|
|
}
|
|
|
|
$this->session_flags = $session['session_flags'] ?? null;
|
|
|
|
$this->split_login_domain($session['session_lid'] ?? null,$this->account_lid,$this->account_domain);
|
|
|
|
// This is to ensure that we authenticate to the correct domain (might not be default)
|
|
if($GLOBALS['egw_info']['user']['domain'] && $this->account_domain != $GLOBALS['egw_info']['user']['domain'])
|
|
{
|
|
return false; // session not verified, domain changed
|
|
}
|
|
$GLOBALS['egw_info']['user']['kp3'] = $this->kp3;
|
|
|
|
// allow xajax / notifications to not update the dla, so sessions can time out again
|
|
if (!isset($GLOBALS['egw_info']['flags']['no_dla_update']) || !$GLOBALS['egw_info']['flags']['no_dla_update'])
|
|
{
|
|
$this->update_dla(true);
|
|
}
|
|
elseif ($GLOBALS['egw_info']['flags']['currentapp'] == 'notifications')
|
|
{
|
|
$this->update_notification_heartbeat();
|
|
}
|
|
$this->account_id = $GLOBALS['egw']->accounts->name2id($this->account_lid,'account_lid','u');
|
|
if (!$this->account_id)
|
|
{
|
|
if (self::ERROR_LOG_DEBUG) error_log("*** Session::verify($sessionid) !accounts::name2id('$this->account_lid')");
|
|
return false;
|
|
}
|
|
|
|
$GLOBALS['egw_info']['user']['account_id'] = $this->account_id;
|
|
|
|
if ($fill_egw_info_and_repositories)
|
|
{
|
|
$GLOBALS['egw_info']['user'] = $this->read_repositories();
|
|
}
|
|
else
|
|
{
|
|
// restore apps to $GLOBALS['egw_info']['apps']
|
|
$GLOBALS['egw']->applications->read_installed_apps();
|
|
|
|
// session only stores app-names, restore apps from egw_info[apps]
|
|
if (isset($GLOBALS['egw_info']['user']['apps'][0]))
|
|
{
|
|
$GLOBALS['egw_info']['user']['apps'] = array_intersect_key($GLOBALS['egw_info']['apps'], array_flip($GLOBALS['egw_info']['user']['apps']));
|
|
}
|
|
|
|
// set prefs, they are no longer stored in session
|
|
$GLOBALS['egw_info']['user']['preferences'] = $GLOBALS['egw']->preferences->read_repository();
|
|
}
|
|
|
|
if ($GLOBALS['egw']->accounts->is_expired($GLOBALS['egw_info']['user']))
|
|
{
|
|
if (self::ERROR_LOG_DEBUG) error_log("*** Session::verify($sessionid) accounts is expired");
|
|
return false;
|
|
}
|
|
$this->passwd = base64_decode(Cache::getSession('phpgwapi', 'password'));
|
|
if ($fill_egw_info_and_repositories)
|
|
{
|
|
$GLOBALS['egw_info']['user']['session_ip'] = $session['session_ip'];
|
|
$GLOBALS['egw_info']['user']['passwd'] = $this->passwd;
|
|
}
|
|
if ($this->account_domain != $GLOBALS['egw_info']['user']['domain'])
|
|
{
|
|
if (self::ERROR_LOG_DEBUG) error_log("*** Session::verify($sessionid) wrong domain");
|
|
return false;
|
|
}
|
|
|
|
if (!empty($GLOBALS['egw_info']['server']['sessions_checkip']))
|
|
{
|
|
if (strtoupper(substr(PHP_OS,0,3)) != 'WIN' && (!$GLOBALS['egw_info']['user']['session_ip'] ||
|
|
$GLOBALS['egw_info']['user']['session_ip'] != $this->getuser_ip()))
|
|
{
|
|
if (self::ERROR_LOG_DEBUG) error_log("*** Session::verify($sessionid) wrong IP");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if ($fill_egw_info_and_repositories)
|
|
{
|
|
$GLOBALS['egw']->acl->__construct($this->account_id);
|
|
$GLOBALS['egw']->preferences->__construct($this->account_id);
|
|
$GLOBALS['egw']->applications->__construct($this->account_id);
|
|
}
|
|
if (!$this->account_lid)
|
|
{
|
|
if (self::ERROR_LOG_DEBUG) error_log("*** Session::verify($sessionid) !account_lid");
|
|
return false;
|
|
}
|
|
|
|
// query accesslog-id, if not set in session (session is made persistent after login!)
|
|
if (!$this->sessionid_access_log && $this->session_flags != 'A')
|
|
{
|
|
$this->sessionid_access_log = $GLOBALS['egw']->db->select(self::ACCESS_LOG_TABLE,'sessionid',array(
|
|
'session_php' => $this->sessionid,
|
|
),__LINE__,__FILE__)->fetchColumn();
|
|
//error_log(__METHOD__."() sessionid=$this->sessionid --> sessionid_access_log=$this->sessionid_access_log");
|
|
}
|
|
|
|
// check if we use cookies for the session, but no cookie set
|
|
// happens eg. in sitemgr (when redirecting to a different domain) or with new java notification app
|
|
if ($GLOBALS['egw_info']['server']['usecookies'] && isset($_REQUEST[self::EGW_SESSION_NAME]) &&
|
|
$_REQUEST[self::EGW_SESSION_NAME] === $this->sessionid &&
|
|
(!isset($_COOKIE[self::EGW_SESSION_NAME]) || $_COOKIE[self::EGW_SESSION_NAME] !== $_REQUEST[self::EGW_SESSION_NAME]))
|
|
{
|
|
if (self::ERROR_LOG_DEBUG) error_log("--> Session::verify($sessionid) SUCCESS, but NO required cookies set --> setting them now");
|
|
self::egw_setcookie(self::EGW_SESSION_NAME,$this->sessionid);
|
|
self::egw_setcookie('kp3',$this->kp3);
|
|
self::egw_setcookie('domain',$this->account_domain);
|
|
}
|
|
|
|
if (self::ERROR_LOG_DEBUG) error_log("--> Session::verify($sessionid) SUCCESS");
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Terminate a session
|
|
*
|
|
* @param int|string $sessionid nummeric or php session id of session to be terminated
|
|
* @param string $kp3
|
|
* @return boolean true on success, false on error
|
|
*/
|
|
function destroy($sessionid, $kp3='')
|
|
{
|
|
if (!$sessionid && $kp3)
|
|
{
|
|
return false;
|
|
}
|
|
$this->log_access($sessionid); // log logout-time
|
|
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."($sessionid,$kp3)");
|
|
|
|
if (is_numeric($sessionid)) // do we have a access-log-id --> get PHP session id
|
|
{
|
|
$sessionid = $GLOBALS['egw']->db->select(self::ACCESS_LOG_TABLE,'session_php',array(
|
|
'sessionid' => $sessionid,
|
|
),__LINE__,__FILE__)->fetchColumn();
|
|
}
|
|
|
|
Hooks::process(array(
|
|
'location' => 'session_destroyed',
|
|
'sessionid' => $sessionid,
|
|
),'',true); // true = run hooks from all apps, not just the ones the current user has perms to run
|
|
|
|
// Only do the following, if where working with the current user
|
|
if (empty($GLOBALS['egw_info']['user']['sessionid']) || $sessionid == $GLOBALS['egw_info']['user']['sessionid'])
|
|
{
|
|
// eg. SAML logout will fail, if there is no more session --> remove everything else
|
|
$auth = new Auth();
|
|
if (($needed = $auth->needSession()) && array_intersect($needed, array_keys($_SESSION)))
|
|
{
|
|
$_SESSION = array_intersect_key($_SESSION, array_flip($needed));
|
|
Auth::backend($auth->backendType()); // backend is stored in session
|
|
return true;
|
|
}
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__." ********* about to call session_destroy!");
|
|
session_unset();
|
|
@session_destroy();
|
|
// we need to (re-)load the eGW session-handler, as session_destroy unloads custom session-handlers
|
|
if (function_exists('init_session_handler'))
|
|
{
|
|
init_session_handler();
|
|
}
|
|
|
|
if ($GLOBALS['egw_info']['server']['usecookies'])
|
|
{
|
|
self::egw_setcookie(session_name());
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$this->commit_session(); // close our own session
|
|
|
|
session_id($sessionid);
|
|
if (session_start())
|
|
{
|
|
session_destroy();
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Generate a url which supports url or cookies based sessions
|
|
*
|
|
* Please note, the values of the query get url encoded!
|
|
*
|
|
* @param string $url a url relative to the egroupware install root, it can contain a query too
|
|
* @param array|string $extravars query string arguements as string or array (prefered)
|
|
* if string is used ambersands in vars have to be already urlencoded as '%26', function ensures they get NOT double encoded
|
|
* @return string generated url
|
|
*/
|
|
public static function link($url, $extravars = '')
|
|
{
|
|
//error_log(_METHOD__."(url='$url',extravars='".array2string($extravars)."')");
|
|
|
|
if ($url[0] != '/')
|
|
{
|
|
$app = $GLOBALS['egw_info']['flags']['currentapp'];
|
|
if ($app != 'login' && $app != 'logout')
|
|
{
|
|
$url = $app.'/'.$url;
|
|
}
|
|
}
|
|
|
|
// append the url to the webserver url, but avoid more then one slash between the parts of the url
|
|
$webserver_url = $GLOBALS['egw_info']['server']['webserver_url'];
|
|
// patch inspired by vladimir kolobkov -> we should not try to match the webserver url against the url without '/' as delimiter,
|
|
// as $webserver_url may be part of $url (as /egw is part of phpgwapi/js/egw_instant_load.html)
|
|
if (($url[0] != '/' || $webserver_url != '/') && (!$webserver_url || strpos($url, $webserver_url.'/') === false))
|
|
{
|
|
if($url[0] != '/' && substr($webserver_url,-1) != '/')
|
|
{
|
|
$url = $webserver_url .'/'. $url;
|
|
}
|
|
else
|
|
{
|
|
$url = $webserver_url . $url;
|
|
}
|
|
}
|
|
|
|
if(isset($GLOBALS['egw_info']['server']['enforce_ssl']) && $GLOBALS['egw_info']['server']['enforce_ssl'])
|
|
{
|
|
if(substr($url ,0,4) != 'http')
|
|
{
|
|
$url = 'https://'.$_SERVER['HTTP_HOST'].$url;
|
|
}
|
|
else
|
|
{
|
|
$url = str_replace ( 'http:', 'https:', $url);
|
|
}
|
|
}
|
|
$vars = array();
|
|
// add session params if not using cookies
|
|
if (!$GLOBALS['egw_info']['server']['usecookies'])
|
|
{
|
|
$vars[self::EGW_SESSION_NAME] = $GLOBALS['egw']->session->sessionid;
|
|
$vars['kp3'] = $GLOBALS['egw']->session->kp3;
|
|
$vars['domain'] = $GLOBALS['egw']->session->account_domain;
|
|
}
|
|
|
|
// check if the url already contains a query and ensure that vars is an array and all strings are in extravars
|
|
list($ret_url,$othervars) = explode('?', $url, 2)+[null,null];
|
|
if ($extravars && is_array($extravars))
|
|
{
|
|
$vars += $extravars;
|
|
$extravars = $othervars;
|
|
}
|
|
elseif (!empty($othervars))
|
|
{
|
|
$extravars .= ($extravars ? '&' : '') . $othervars;
|
|
}
|
|
|
|
// parse extravars string into the vars array
|
|
if (!empty($extravars))
|
|
{
|
|
foreach(explode('&', $extravars) as $expr)
|
|
{
|
|
list($var,$val) = explode('=', $expr,2)+[null,null];
|
|
if (strpos($val,'%26') != false) $val = str_replace('%26','&',$val); // make sure to not double encode &
|
|
if (substr($var,-2) == '[]')
|
|
{
|
|
$vars[substr($var,0,-2)][] = $val;
|
|
}
|
|
else
|
|
{
|
|
$vars[$var] = $val;
|
|
}
|
|
}
|
|
}
|
|
|
|
// if there are vars, we add them urlencoded to the url
|
|
if (count($vars))
|
|
{
|
|
$ret_url .= '?' . implode('&', self::urlencode($vars));
|
|
}
|
|
return $ret_url;
|
|
}
|
|
|
|
/**
|
|
* Recursively encode GET parameters
|
|
*
|
|
* @param array|string $values
|
|
* @param string $prefix
|
|
* @param array& $query
|
|
* @return array
|
|
*/
|
|
protected static function urlencode($values, string $prefix='', array &$query=[])
|
|
{
|
|
if (is_array($values))
|
|
{
|
|
foreach($values as $name => $value)
|
|
{
|
|
self::urlencode($value, $prefix ? $prefix.'['.(is_int($name) ? '' : $name).']' : $name, $query);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$query[] = $prefix.'='.urlencode($values ?? '');
|
|
}
|
|
return $query;
|
|
}
|
|
|
|
/**
|
|
* Regexp to validate IPv4 and IPv6
|
|
*/
|
|
const IP_REGEXP = '/^(?>(?>([a-f0-9]{1,4})(?>:(?1)){7}|(?!(?:.*[a-f0-9](?>:|$)){8,})((?1)(?>:(?1)){0,6})?::(?2)?)|(?>(?>(?1)(?>:(?1)){5}:|(?!(?:.*[a-f0-9]:){6,})(?3)?::(?>((?1)(?>:(?1)){0,4}):)?)?(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])(?>\.(?4)){3}))$/iD';
|
|
|
|
/**
|
|
* Get the ip address of current users
|
|
*
|
|
* We remove further private IPs (from proxys) as they invalidate user
|
|
* sessions, when they change because of multiple proxys.
|
|
*
|
|
* @return string ip address
|
|
*/
|
|
public static function getuser_ip()
|
|
{
|
|
if (!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
|
|
{
|
|
$forwarded_for = preg_replace('/, *(192\.168|172\.(1[6789]|2[0-9]|3[01])|10)\..*$/', '', $_SERVER['HTTP_X_FORWARDED_FOR']);
|
|
if (preg_match(self::IP_REGEXP, $forwarded_for))
|
|
{
|
|
return $forwarded_for;
|
|
}
|
|
}
|
|
return $_SERVER['REMOTE_ADDR'];
|
|
}
|
|
|
|
/**
|
|
* domain for cookies
|
|
*
|
|
* @var string
|
|
*/
|
|
private static $cookie_domain = '';
|
|
|
|
/**
|
|
* path for cookies
|
|
*
|
|
* @var string
|
|
*/
|
|
private static $cookie_path = '/';
|
|
|
|
/**
|
|
* secure cookie / send via https only
|
|
*
|
|
* @var bool
|
|
*/
|
|
private static $cookie_secure = false;
|
|
|
|
/**
|
|
* iOS web-apps will loose cookie if set with a livetime of 0 / session-cookie
|
|
*
|
|
* Therefore we set a fixed lifetime of 24h from session-start instead.
|
|
* Server-side session will timeout earliert anyway, if there's no activity.
|
|
*/
|
|
const IOS_SESSION_COOKIE_LIFETIME = 86400;
|
|
|
|
/**
|
|
* Set a cookie with eGW's cookie-domain and -path settings
|
|
*
|
|
* @param string $cookiename name of cookie to be set
|
|
* @param string $cookievalue ='' value to be used, if unset cookie is cleared (optional)
|
|
* @param int $cookietime =0 when cookie should expire, 0 for session only (optional)
|
|
* @param string $cookiepath =null optional path (eg. '/') if the eGW install-dir should not be used
|
|
*/
|
|
public static function egw_setcookie($cookiename,$cookievalue='',$cookietime=0,$cookiepath=null)
|
|
{
|
|
if (empty(self::$cookie_domain) || empty(self::$cookie_path))
|
|
{
|
|
self::set_cookiedomain();
|
|
}
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."($cookiename,$cookievalue,$cookietime,$cookiepath,".self::$cookie_domain.")");
|
|
|
|
// if we are installed in iOS as web-app, we must not set a cookietime==0 (session-cookie),
|
|
// as every change between apps will cause the cookie to get lost
|
|
static $is_iOS = null;
|
|
if (!$cookietime && !isset($is_iOS)) $is_iOS = (bool)preg_match('/^(iPhone|iPad|iPod)/i', Header\UserAgent::mobile());
|
|
|
|
if(!headers_sent()) // gives only a warning, but can not send the cookie anyway
|
|
{
|
|
$options = [
|
|
'expires' => !$cookietime && $is_iOS ? time()+self::IOS_SESSION_COOKIE_LIFETIME : $cookietime,
|
|
'path' => is_null($cookiepath) ? self::$cookie_path : $cookiepath,
|
|
'domain' => self::$cookie_domain,
|
|
// if called via HTTPS, only send cookie for https
|
|
'secure' => empty($GLOBALS['egw_info']['server']['insecure_cookies']) && Header\Http::schema() === 'https',
|
|
'httponly' => true, // only allow cookie access via HTTP, not client-side via JavaScript
|
|
];
|
|
// admin specified to send SameSite cookie attribute AND we use PHP 7.3+
|
|
if (!empty($GLOBALS['egw_info']['server']['cookie_samesite_attribute']) &&
|
|
in_array($GLOBALS['egw_info']['server']['cookie_samesite_attribute'], ['Lax', 'Strict', 'None']))
|
|
{
|
|
$options['samesite'] = $GLOBALS['egw_info']['server']['cookie_samesite_attribute'];
|
|
}
|
|
if ((float)PHP_VERSION >= 7.3)
|
|
{
|
|
setcookie($cookiename, $cookievalue, $options);
|
|
}
|
|
else
|
|
{
|
|
setcookie($cookiename, $cookievalue,
|
|
$options['expires'], $options['path'], $options['domain'], $options['secure'], $options['httponly']);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get cookie-domain and other cookie parameters used by EGroupware
|
|
*
|
|
* @param string& $path =null on return cookie path, by default "/", but can be configured
|
|
* @param bool& $secure =null on return
|
|
* @return string domain-name used (either configured one or current one with a leading dot eg. ".example.org")
|
|
*/
|
|
public static function getCookieDomain(&$path=null, &$secure=null)
|
|
{
|
|
if (empty(self::$cookie_domain) || empty(self::$cookie_path))
|
|
{
|
|
self::set_cookiedomain();
|
|
}
|
|
$path = self::$cookie_path;
|
|
$secure = self::$cookie_secure;
|
|
|
|
return self::$cookie_domain;
|
|
}
|
|
|
|
/**
|
|
* Set the domain and path used for cookies
|
|
*/
|
|
private static function set_cookiedomain()
|
|
{
|
|
if (PHP_SAPI === "cli") return; // gives warnings and has no benefit
|
|
|
|
if (!empty($GLOBALS['egw_info']['server']['cookiedomain']))
|
|
{
|
|
// Admin set domain, eg. .domain.com to allow egw.domain.com and www.domain.com
|
|
self::$cookie_domain = $GLOBALS['egw_info']['server']['cookiedomain'];
|
|
}
|
|
else
|
|
{
|
|
// Use HTTP_X_FORWARDED_HOST if set, which is the case behind a none-transparent proxy
|
|
self::$cookie_domain = Header\Http::host();
|
|
}
|
|
// remove port from HTTP_HOST
|
|
$arr = null;
|
|
if (preg_match("/^(.*):(.*)$/",self::$cookie_domain,$arr))
|
|
{
|
|
self::$cookie_domain = $arr[1];
|
|
}
|
|
if (count(explode('.',self::$cookie_domain)) <= 1)
|
|
{
|
|
// setcookie dont likes domains without dots, leaving it empty, gets setcookie to fill the domain in
|
|
self::$cookie_domain = '';
|
|
}
|
|
if (empty($GLOBALS['egw_info']['server']['cookiepath']) ||
|
|
!(self::$cookie_path = parse_url($GLOBALS['egw_info']['server']['webserver_url'],PHP_URL_PATH)))
|
|
{
|
|
self::$cookie_path = '/';
|
|
}
|
|
|
|
// if called via HTTPS, only send cookie for https and only allow cookie access via HTTP (true)
|
|
self::$cookie_secure = empty($GLOBALS['egw_info']['server']['insecure_cookies']) && Header\Http::schema() === 'https';
|
|
|
|
session_set_cookie_params(0, self::$cookie_path, self::$cookie_domain, self::$cookie_secure, true);
|
|
}
|
|
|
|
/**
|
|
* Search the instance matching the request
|
|
*
|
|
* @param string $login on login $_POST['login'], $_SERVER['PHP_AUTH_USER'] or $_SERVER['REMOTE_USER']
|
|
* @param string $domain_requested usually self::get_request('domain')
|
|
* @param string &$default_domain usually $default_domain get's set eg. by sitemgr
|
|
* @param string|array $server_names usually array($_SERVER['HTTP_HOST'], $_SERVER['SERVER_NAME'])
|
|
* @param array $domains =null defaults to $GLOBALS['egw_domain'] from the header
|
|
* @return string $GLOBALS['egw_info']['user']['domain'] set with the domain/instance to use
|
|
*/
|
|
public static function search_instance($login,$domain_requested,&$default_domain,$server_names,array $domains=null)
|
|
{
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."('$login','$domain_requested',".array2string($default_domain).".".array2string($server_names).".".array2string($domains).")");
|
|
|
|
if (is_null($domains)) $domains = $GLOBALS['egw_domain'];
|
|
|
|
if (!isset($default_domain) || !isset($domains[$default_domain])) // allow to overwrite the default domain
|
|
{
|
|
foreach((array)$server_names as $server_name)
|
|
{
|
|
list($server_name) = explode(':', $server_name); // remove port from HTTP_HOST
|
|
if(isset($domains[$server_name]))
|
|
{
|
|
$default_domain = $server_name;
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
$parts = explode('.', $server_name);
|
|
array_shift($parts);
|
|
$domain_part = implode('.', $parts);
|
|
if(isset($domains[$domain_part]))
|
|
{
|
|
$default_domain = $domain_part;
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
reset($domains);
|
|
$default_domain = key($domains);
|
|
}
|
|
unset($domain_part);
|
|
}
|
|
}
|
|
}
|
|
if (isset($login)) // on login
|
|
{
|
|
if (strpos($login,'@') === false || count($domains) == 1)
|
|
{
|
|
$login .= '@' . (isset($_POST['logindomain']) ? $_POST['logindomain'] : $default_domain);
|
|
}
|
|
$parts = explode('@',$login);
|
|
$domain = array_pop($parts);
|
|
$GLOBALS['login'] = $login;
|
|
}
|
|
else // on "normal" pageview
|
|
{
|
|
$domain = $domain_requested;
|
|
}
|
|
if (!isset($domains[$domain]))
|
|
{
|
|
$domain = $default_domain;
|
|
}
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."() default_domain=".array2string($default_domain).', login='.array2string($login)." returning ".array2string($domain));
|
|
|
|
return $domain;
|
|
}
|
|
|
|
/**
|
|
* Set action logged in access-log
|
|
*
|
|
* Non-ascii chars in $action get transliterate to ascii, as our session_action column allows only ascii.
|
|
*
|
|
* @param string $action
|
|
*/
|
|
public function set_action($action)
|
|
{
|
|
if (preg_match('/[^\x20-\x7f]/', $action))
|
|
{
|
|
$action = Translation::to_ascii($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)
|
|
*
|
|
* @param boolean $update_access_log =false false: dont update egw_access_log table, but set $this->action
|
|
* @return string action as written to egw_access_log.session_action
|
|
*/
|
|
private function update_dla($update_access_log=false)
|
|
{
|
|
// This way XML-RPC users aren't always listed as xmlrpc.php
|
|
if (isset($_GET['menuaction']) && strpos($_GET['menuaction'], '.ajax_exec.template.') !== false)
|
|
{
|
|
list(, $action) = explode('.ajax_exec.template.', $_GET['menuaction']);
|
|
|
|
if (empty($action)) $action = $_GET['menuaction'];
|
|
}
|
|
else
|
|
{
|
|
$action = $_SERVER['PHP_SELF'];
|
|
// remove EGroupware path, if not installed in webroot
|
|
$egw_path = $GLOBALS['egw_info']['server']['webserver_url'];
|
|
if ($egw_path[0] != '/') $egw_path = parse_url($egw_path,PHP_URL_PATH);
|
|
if ($action == '/Microsoft-Server-ActiveSync')
|
|
{
|
|
$action .= '?Cmd='.($_GET['Cmd']??null).'&DeviceId='.($_GET['DeviceId']??null);
|
|
}
|
|
elseif ($egw_path)
|
|
{
|
|
list(,$action) = explode($egw_path,$action,2);
|
|
}
|
|
}
|
|
$this->set_action($action);
|
|
|
|
// update dla in access-log table, if we have an access-log row (non-anonymous session)
|
|
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
|
|
(!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))
|
|
{
|
|
$_SESSION[self::EGW_SESSION_VAR]['session_logged_dla'] = time();
|
|
|
|
$GLOBALS['egw']->db->update(self::ACCESS_LOG_TABLE,array(
|
|
'session_dla' => time(),
|
|
'session_action' => $this->action,
|
|
) + ($this->action === '/logout.php' ? array() : array(
|
|
'lo' => null, // just in case it was (automatic) timed out before
|
|
)),array(
|
|
'sessionid' => $this->sessionid_access_log,
|
|
),__LINE__,__FILE__);
|
|
}
|
|
|
|
$_SESSION[self::EGW_SESSION_VAR]['session_dla'] = time();
|
|
$_SESSION[self::EGW_SESSION_VAR]['session_action'] = $this->action;
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__.'() _SESSION['.self::EGW_SESSION_VAR.']='.array2string($_SESSION[self::EGW_SESSION_VAR]));
|
|
|
|
return $this->action;
|
|
}
|
|
|
|
/**
|
|
* Update notification_heartbeat time of session
|
|
*/
|
|
private function update_notification_heartbeat()
|
|
{
|
|
// update dla in access-log table, if we have an access-log row (non-anonymous session)
|
|
if ($this->sessionid_access_log)
|
|
{
|
|
$GLOBALS['egw']->db->update(self::ACCESS_LOG_TABLE,array(
|
|
'notification_heartbeat' => time(),
|
|
),array(
|
|
'sessionid' => $this->sessionid_access_log,
|
|
'lo IS NULL',
|
|
),__LINE__,__FILE__);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Read the diverse repositories / init classes with data from the just loged in user
|
|
*
|
|
* @return array used to assign to $GLOBALS['egw_info']['user']
|
|
*/
|
|
public function read_repositories()
|
|
{
|
|
$GLOBALS['egw']->acl->__construct($this->account_id);
|
|
$GLOBALS['egw']->preferences->__construct($this->account_id);
|
|
$GLOBALS['egw']->applications->__construct($this->account_id);
|
|
|
|
$user = $GLOBALS['egw']->accounts->read($this->account_id);
|
|
// set homedirectory from auth_ldap or auth_ads, to be able to use it in vfs
|
|
if (!isset($user['homedirectory']))
|
|
{
|
|
// authentication happens in login.php, which does NOT yet create egw-object in session
|
|
// --> need to store homedirectory in session
|
|
if(isset($GLOBALS['auto_create_acct']['homedirectory']))
|
|
{
|
|
Cache::setSession(__CLASS__, 'homedirectory',
|
|
$user['homedirectory'] = $GLOBALS['auto_create_acct']['homedirectory']);
|
|
}
|
|
else
|
|
{
|
|
$user['homedirectory'] = Cache::getSession(__CLASS__, 'homedirectory');
|
|
}
|
|
}
|
|
$user['preferences'] = $GLOBALS['egw']->preferences->read_repository();
|
|
if (is_object($GLOBALS['egw']->datetime))
|
|
{
|
|
$GLOBALS['egw']->datetime->__construct(); // to set tz_offset from the now read prefs
|
|
}
|
|
$user['apps'] = $GLOBALS['egw']->applications->read_repository();
|
|
if (!empty($this->limits))
|
|
{
|
|
$user['apps'] = array_intersect_key($user['apps'], array_filter($this->limits));
|
|
}
|
|
$user['domain'] = $this->account_domain;
|
|
$user['sessionid'] = $this->sessionid;
|
|
$user['kp3'] = $this->kp3;
|
|
$user['session_ip'] = $this->getuser_ip();
|
|
$user['session_lid'] = $this->account_lid.'@'.$this->account_domain;
|
|
$user['account_id'] = $this->account_id;
|
|
$user['account_lid'] = $this->account_lid;
|
|
$user['userid'] = $this->account_lid;
|
|
$user['passwd'] = $this->passwd;
|
|
|
|
return $user;
|
|
}
|
|
|
|
/**
|
|
* Splits a login-name into account_lid and eGW-domain/-instance
|
|
*
|
|
* @param string $login login-name (ie. user@default)
|
|
* @param string &$account_lid returned account_lid (ie. user)
|
|
* @param string &$domain returned domain (ie. domain)
|
|
*/
|
|
private function split_login_domain($login,&$account_lid,&$domain)
|
|
{
|
|
$parts = explode('@',$login);
|
|
|
|
//conference - for strings like vinicius@thyamad.com@default ,
|
|
//allows that user have a login that is his e-mail. (viniciuscb)
|
|
if (count($parts) > 1)
|
|
{
|
|
$probable_domain = array_pop($parts);
|
|
//Last part of login string, when separated by @, is a domain name
|
|
if (in_array($probable_domain,$this->egw_domains))
|
|
{
|
|
$got_login = true;
|
|
$domain = $probable_domain;
|
|
$account_lid = implode('@',$parts);
|
|
}
|
|
}
|
|
|
|
if (empty($got_login))
|
|
{
|
|
$domain = $GLOBALS['egw_info']['server']['default_domain'];
|
|
$account_lid = $login;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Initialise the used session handler
|
|
*
|
|
* @param string? $sessionid =null default use self::get_sessionid()
|
|
* @return boolean true if we have a session, false otherwise
|
|
* @throws \ErrorException if there is no PHP session support
|
|
*/
|
|
public static function init_handler($sessionid=null)
|
|
{
|
|
switch(session_status())
|
|
{
|
|
case PHP_SESSION_DISABLED:
|
|
throw new \ErrorException('EGroupware requires PHP session extension!');
|
|
case PHP_SESSION_NONE:
|
|
if (headers_sent()) return false; // only gives warnings
|
|
ini_set('session.use_cookies',0); // disable the automatic use of cookies, as it uses the path / by default
|
|
session_name(self::EGW_SESSION_NAME);
|
|
if (isset($sessionid) || ($sessionid = self::get_sessionid()))
|
|
{
|
|
session_id($sessionid);
|
|
self::cache_control();
|
|
$ok = session_start();
|
|
self::decrypt();
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."() sessionid=$sessionid, _SESSION[".self::EGW_SESSION_VAR.']='.array2string($_SESSION[self::EGW_SESSION_VAR]));
|
|
return $ok;
|
|
}
|
|
break;
|
|
case PHP_SESSION_ACTIVE:
|
|
return true; // session created by MServer
|
|
}
|
|
if (self::ERROR_LOG_DEBUG) error_log(__METHOD__."() no active session!");
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Controling caching and expires header
|
|
*
|
|
* Headers are send based on given parameters or $GLOBALS['egw_info']['flags']['nocachecontrol']:
|
|
* - not set of false --> no caching (default)
|
|
* - true --> private caching by browser (no expires header)
|
|
* - "public" or integer --> public caching with given cache_expire in minutes or php.ini default session_cache_expire
|
|
*
|
|
* @param int $expire =null expiration time in seconds, default $GLOBALS['egw_info']['flags']['nocachecontrol'] or php.ini session.cache_expire
|
|
* @param int $private =null allows to set private caching with given expiration time, by setting it to true
|
|
*/
|
|
public static function cache_control($expire=null, $private=null)
|
|
{
|
|
if (is_null($expire) && isset($GLOBALS['egw_info']['flags']['nocachecontrol']) && is_int($GLOBALS['egw_info']['flags']['nocachecontrol']))
|
|
{
|
|
$expire = $GLOBALS['egw_info']['flags']['nocachecontrol'];
|
|
}
|
|
// session not yet started: use PHP session_cache_limiter() and session_cache_expires() functions
|
|
if (!isset($_SESSION))
|
|
{
|
|
// controling caching and expires header
|
|
if(!isset($expire) && (!isset($GLOBALS['egw_info']['flags']['nocachecontrol']) ||
|
|
!$GLOBALS['egw_info']['flags']['nocachecontrol']))
|
|
{
|
|
session_cache_limiter('nocache');
|
|
}
|
|
elseif (isset($expire) || $GLOBALS['egw_info']['flags']['nocachecontrol'] === 'public' || is_int($GLOBALS['egw_info']['flags']['nocachecontrol']))
|
|
{
|
|
// allow public caching: proxys, cdns, ...
|
|
if (isset($expire))
|
|
{
|
|
session_cache_expire((int)ceil($expire/60)); // in minutes
|
|
}
|
|
session_cache_limiter($private ? 'private' : 'public');
|
|
}
|
|
else
|
|
{
|
|
// allow caching by browser
|
|
session_cache_limiter('private_no_expire');
|
|
}
|
|
}
|
|
// session already started
|
|
if (isset($_SESSION))
|
|
{
|
|
if ($expire && (session_cache_limiter() !== ($expire===true?'private_no_expire':'public') ||
|
|
is_int($expire) && $expire/60 !== session_cache_expire()))
|
|
{
|
|
$file = $line = null;
|
|
if (headers_sent($file, $line))
|
|
{
|
|
error_log(__METHOD__."($expire) called, but header already sent in $file: $line");
|
|
return;
|
|
}
|
|
if($expire === true) // same behavior as session_cache_limiter('private_no_expire')
|
|
{
|
|
header('Cache-Control: private, max-age='.(60*session_cache_expire()));
|
|
header_remove('Expires');
|
|
}
|
|
elseif ($private)
|
|
{
|
|
header('Cache-Control: private, max-age='.$expire);
|
|
header('Expires: ' . gmdate('D, d M Y H:i:s', time()+$expire) . ' GMT');
|
|
}
|
|
else
|
|
{
|
|
header('Cache-Control: public, max-age='.$expire);
|
|
header('Expires: ' . gmdate('D, d M Y H:i:s', time()+$expire) . ' GMT');
|
|
}
|
|
// remove Pragma header, might be set by old header
|
|
if (function_exists('header_remove')) // PHP 5.3+
|
|
{
|
|
header_remove('Pragma');
|
|
}
|
|
else
|
|
{
|
|
header('Pragma:');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get a session list (of the current instance)
|
|
*
|
|
* @param int $start
|
|
* @param string $sort ='DESC' ASC or DESC
|
|
* @param string $order ='session_dla' session_lid, session_id, session_started, session_logintime, session_action, or (default) session_dla
|
|
* @param boolean $all_no_sort =False skip sorting and limiting to maxmatchs if set to true
|
|
* @param array $filter =array() extra filter for sessions
|
|
* @return array with sessions (values for keys as in $sort)
|
|
*/
|
|
public static function session_list($start,$sort='DESC',$order='session_dla',$all_no_sort=False,array $filter=array())
|
|
{
|
|
$sessions = array();
|
|
if (!preg_match('/^[a-z0-9_ ,]+$/i',$order_by=$order.' '.$sort) || $order_by == ' ')
|
|
{
|
|
$order_by = 'session_dla DESC';
|
|
}
|
|
$filter['lo'] = null;
|
|
$filter[] = 'account_id>0';
|
|
$filter[] = 'session_dla > '.(int)(time() - $GLOBALS['egw_info']['server']['sessions_timeout']);
|
|
$filter[] = '(notification_heartbeat IS NULL OR notification_heartbeat > '.self::heartbeat_limit().')';
|
|
foreach($GLOBALS['egw']->db->select(self::ACCESS_LOG_TABLE, '*', $filter, __LINE__, __FILE__,
|
|
$all_no_sort ? false : $start, 'ORDER BY '.$order_by) as $row)
|
|
{
|
|
$sessions[$row['sessionid']] = $row;
|
|
}
|
|
return $sessions;
|
|
}
|
|
|
|
/**
|
|
* Query number of sessions (not more then once every N secs)
|
|
*
|
|
* @param array $filter =array() extra filter for sessions
|
|
* @return int number of active sessions
|
|
*/
|
|
public static function session_count(array $filter=array())
|
|
{
|
|
$filter['lo'] = null;
|
|
$filter[] = 'account_id>0';
|
|
$filter[] = 'session_dla > '.(int)(time() - $GLOBALS['egw_info']['server']['sessions_timeout']);
|
|
$filter[] = '(notification_heartbeat IS NULL OR notification_heartbeat > '.self::heartbeat_limit().')';
|
|
return $GLOBALS['egw']->db->select(self::ACCESS_LOG_TABLE, 'COUNT(*)', $filter, __LINE__, __FILE__)->fetchColumn();
|
|
}
|
|
|
|
/**
|
|
* Get limit / latest time of heartbeat for session to be active
|
|
*
|
|
* @return int TS in server-time
|
|
*/
|
|
public static function heartbeat_limit()
|
|
{
|
|
static $limit=null;
|
|
|
|
if (is_null($limit))
|
|
{
|
|
$config = Config::read('notifications');
|
|
if (!($popup_poll_interval = $config['popup_poll_interval']))
|
|
{
|
|
$popup_poll_interval = 60;
|
|
}
|
|
$limit = (int)(time() - $popup_poll_interval-10); // 10s grace periode
|
|
}
|
|
return $limit;
|
|
}
|
|
|
|
/**
|
|
* Check if given user can be reached via notifications
|
|
*
|
|
* Checks if notifications callback checked in not more then heartbeat_limit() seconds ago
|
|
*
|
|
* @param int $account_id
|
|
* @param int number of active sessions of given user with notifications running
|
|
*/
|
|
public static function notifications_active($account_id)
|
|
{
|
|
return $GLOBALS['egw']->db->select(self::ACCESS_LOG_TABLE, 'COUNT(*)', array(
|
|
'lo' => null,
|
|
'session_dla > '.(int)(time() - $GLOBALS['egw_info']['server']['sessions_timeout']),
|
|
'account_id' => $account_id,
|
|
'notification_heartbeat > '.self::heartbeat_limit(),
|
|
), __LINE__, __FILE__)->fetchColumn();
|
|
}
|
|
} |