Files
oc-server3/htdocs/okapi/lib/oc_session.php
2014-10-08 10:06:07 +02:00

30 lines
933 B
PHP

<?
namespace okapi;
/**
* Use this class to access OC session variables. This is especially useful if
* you want to determine which user is currently logged in to OC.
*/
class OCSession
{
/** Return ID of currently logged in user or NULL if no user is logged in. */
public static function get_user_id()
{
static $cached_result = false;
if ($cached_result !== false)
return $cached_result;
$cookie_name = Settings::get('OC_COOKIE_NAME');
if (!isset($_COOKIE[$cookie_name]))
return null;
$OC_data = unserialize(base64_decode($_COOKIE[$cookie_name]));
if (!isset($OC_data['sessionid']))
return null;
$OC_sessionid = $OC_data['sessionid'];
if (!$OC_sessionid)
return null;
return Db::select_value("select user_id from sys_sessions where uuid='".mysql_real_escape_string($OC_sessionid)."'");
}
}