Merge pull request #12290 from owncloud/ext-preventbreakageduetobugs2

Show warning when invalid user was passed
This commit is contained in:
Lukas Reschke 2014-11-19 14:27:32 +01:00
commit 284ba5b688
1 changed files with 8 additions and 0 deletions

View File

@ -121,6 +121,14 @@ class OC_Mount_Config {
if ($data['user']) {
$user = \OC::$server->getUserManager()->get($data['user']);
if (!$user) {
\OC_Log::write(
'files_external',
'Cannot init external mount points for non-existant user "' . $data['user'] . '".',
\OC_Log::WARN
);
return;
}
$userView = new \OC\Files\View('/' . $user->getUID() . '/files');
$changePropagator = new \OC\Files\Cache\ChangePropagator($userView);
$etagPropagator = new \OCA\Files_External\EtagPropagator($user, $changePropagator, \OC::$server->getConfig());