Validate path in getChild

This commit is contained in:
Vincent Petry 2015-06-05 12:08:18 +02:00
parent c747a58978
commit 06dda427f3
1 changed files with 3 additions and 0 deletions

View File

@ -150,9 +150,12 @@ class Directory extends \OC\Connector\Sabre\Node
$path = $this->path . '/' . $name;
if (is_null($info)) {
try {
$this->fileView->verifyPath($this->path, $name);
$info = $this->fileView->getFileInfo($path);
} catch (\OCP\Files\StorageNotAvailableException $e) {
throw new \Sabre\DAV\Exception\ServiceUnavailable($e->getMessage());
} catch (\OCP\Files\InvalidPathException $ex) {
throw new InvalidPath($ex->getMessage());
}
}