diff options
author | Robin Appelman <robin@icewind.nl> | 2018-05-24 14:17:53 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2018-05-24 14:17:53 +0200 |
commit | 51724a35a4c6cec0fbb758b64239a13fc9b3381a (patch) | |
tree | b133dbb00f31689404cc19398c61958b3ad7a486 | |
parent | fd4a7bf72a0c8a69325b1d63e6983021ac6651f8 (diff) | |
download | nextcloud-server-51724a35a4c6cec0fbb758b64239a13fc9b3381a.tar.gz nextcloud-server-51724a35a4c6cec0fbb758b64239a13fc9b3381a.zip |
use getUserFolder instead of getFileInfo when constructing FilesHome
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r-- | apps/dav/lib/Files/FilesHome.php | 9 | ||||
-rw-r--r-- | 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 63e7916edcf..1ff918aabbb 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 59b6690a026..f5544693f2c 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() { |