remove deprecated \OC:$session

This commit is contained in:
Thomas Müller 2014-11-26 13:16:22 +01:00
parent a2457b5fb9
commit 5097d4dc05
2 changed files with 2 additions and 27 deletions

View File

@ -66,16 +66,10 @@ class OC {
public static $REQUESTEDAPP = '';
/**
* check if owncloud runs in cli mode
* check if ownCloud runs in cli mode
*/
public static $CLI = false;
/**
* @deprecated use \OC::$server->getSession() instead
* @var \OC\Session\Session
*/
public static $session = null;
/**
* @var \OC\Autoloader $loader
*/
@ -531,9 +525,7 @@ class OC {
\OC::$server->getEventLogger()->start('init_session', 'Initialize session');
OC_App::loadApps(array('session'));
if (self::$CLI) {
self::$session = new \OC\Session\Memory('');
} else {
if (!self::$CLI) {
self::initSession();
}
\OC::$server->getEventLogger()->end('init_session');

View File

@ -88,15 +88,6 @@ class Session implements IUserSession, Emitter {
* @return \OCP\ISession
*/
public function getSession() {
// fetch the deprecated \OC::$session if it changed for backwards compatibility
if (isset(\OC::$session) && \OC::$session !== $this->session) {
\OC::$server->getLogger()->warning(
'One of your installed apps still seems to use the deprecated ' .
'\OC::$session and has replaced it with a new instance. Please file a bug against it.' .
'Closing and replacing session in UserSession instance.'
);
$this->setSession(\OC::$session);
}
return $this->session;
}
@ -111,14 +102,6 @@ class Session implements IUserSession, Emitter {
}
$this->session = $session;
$this->activeUser = null;
// maintain deprecated \OC::$session
if (\OC::$session !== $this->session) {
if (\OC::$session instanceof \OCP\ISession) {
\OC::$session->close();
}
\OC::$session = $session;
}
}
/**