From 51724a35a4c6cec0fbb758b64239a13fc9b3381a Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 24 May 2018 14:17:53 +0200 Subject: [PATCH] use getUserFolder instead of getFileInfo when constructing FilesHome Signed-off-by: Robin Appelman --- apps/dav/lib/Files/FilesHome.php | 9 +++------ apps/dav/lib/Files/RootCollection.php | 7 ++++++- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/apps/dav/lib/Files/FilesHome.php b/apps/dav/lib/Files/FilesHome.php index 63e7916edc..1ff918aabb 100644 --- a/apps/dav/lib/Files/FilesHome.php +++ b/apps/dav/lib/Files/FilesHome.php @@ -39,15 +39,12 @@ class FilesHome extends Directory { * FilesHome constructor. * * @param array $principalInfo + * @param FileInfo $userFolder */ - public function __construct($principalInfo) { + public function __construct($principalInfo, FileInfo $userFolder) { $this->principalInfo = $principalInfo; $view = \OC\Files\Filesystem::getView(); - $rootInfo = $view->getFileInfo(''); - if (!($rootInfo instanceof FileInfo)) { - throw new \Exception('Home does not exist'); - } - parent::__construct($view, $rootInfo); + parent::__construct($view, $userFolder); } function delete() { diff --git a/apps/dav/lib/Files/RootCollection.php b/apps/dav/lib/Files/RootCollection.php index 59b6690a02..f5544693f2 100644 --- a/apps/dav/lib/Files/RootCollection.php +++ b/apps/dav/lib/Files/RootCollection.php @@ -23,6 +23,7 @@ */ namespace OCA\DAV\Files; +use OCP\Files\FileInfo; use Sabre\DAV\INode; use Sabre\DAVACL\AbstractPrincipalCollection; use Sabre\DAV\SimpleCollection; @@ -48,7 +49,11 @@ class RootCollection extends AbstractPrincipalCollection { // in the future this could be considered to be used for accessing shared files return new SimpleCollection($name); } - return new FilesHome($principalInfo); + $userFolder = \OC::$server->getUserFolder(); + if (!($userFolder instanceof FileInfo)) { + throw new \Exception('Home does not exist'); + } + return new FilesHome($principalInfo, $userFolder); } function getName() {