From: Robin Appelman Date: Mon, 16 Jun 2014 14:20:40 +0000 (+0200) Subject: Fix permission for movable storage root X-Git-Tag: v7.0.0alpha2~16^2~7 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=0532f5c39abfa8109fd1aacee93e244ac31cd42f;p=nextcloud-server.git Fix permission for movable storage root --- diff --git a/lib/private/files/view.php b/lib/private/files/view.php index afccdf9f733..b168d177ab2 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -836,11 +836,10 @@ class View { return $data; } $path = Filesystem::normalizePath($this->fakeRoot . '/' . $path); - /** - * @var \OC\Files\Storage\Storage $storage - * @var string $internalPath - */ - list($storage, $internalPath) = Filesystem::resolvePath($path); + + $mount = Filesystem::getMountManager()->find($path); + $storage = $mount->getStorage(); + $internalPath = $mount->getInternalPath($path); $data = null; if ($storage) { $cache = $storage->getCache($internalPath); @@ -888,6 +887,10 @@ class View { return false; } + if ($mount instanceof MoveableMount) { + $data['permissions'] |= \OCP\PERMISSION_DELETE | \OCP\PERMISSION_UPDATE; + } + $data = \OC_FileProxy::runPostProxies('getFileInfo', $path, $data); return new FileInfo($path, $storage, $internalPath, $data);