Use Cache->clear to cleanup the filecache for removed users

This commit is contained in:
Robin Appelman 2014-01-22 13:00:45 +01:00
parent 374e3475c9
commit 5a5b6f187e
1 changed files with 10 additions and 5 deletions

View File

@ -205,8 +205,13 @@ class OC_User {
// Delete user files in /data/
OC_Helper::rmdirr(\OC_User::getHome($uid));
// Delete the users entry in the storage table
\OC\Files\Cache\Storage::remove('home::' . $uid);
// Cleanup the filecache
$mount = \OC\Files\Filesystem::getMountByStorageId('home::' . $uid);
if (count($mount) > 0) {
$mount = $mount[0];
$cache = $mount->getStorage()->getCache();
$cache->clear();
}
// Remove it from the Cache
self::getManager()->delete($uid);
@ -243,15 +248,15 @@ class OC_User {
$uid = $backend->getCurrentUserId();
$run = true;
OC_Hook::emit( "OC_User", "pre_login", array( "run" => &$run, "uid" => $uid ));
OC_Hook::emit("OC_User", "pre_login", array("run" => &$run, "uid" => $uid));
if($uid) {
if ($uid) {
session_regenerate_id(true);
self::setUserId($uid);
self::setDisplayName($uid);
self::getUserSession()->setLoginName($uid);
OC_Hook::emit( "OC_User", "post_login", array( "uid" => $uid, 'password'=>'' ));
OC_Hook::emit("OC_User", "post_login", array("uid" => $uid, 'password' => ''));
return true;
}
return false;