RootCollection.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Thomas Müller <thomas.mueller@tmit.eu>
  6. *
  7. * @license AGPL-3.0
  8. *
  9. * This code is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License, version 3,
  11. * as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Affero General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License, version 3,
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>
  20. *
  21. */
  22. namespace OCA\DAV\Files;
  23. use Sabre\DAV\INode;
  24. use Sabre\DAVACL\AbstractPrincipalCollection;
  25. use Sabre\HTTP\URLUtil;
  26. use Sabre\DAV\SimpleCollection;
  27. class RootCollection extends AbstractPrincipalCollection {
  28. /**
  29. * This method returns a node for a principal.
  30. *
  31. * The passed array contains principal information, and is guaranteed to
  32. * at least contain a uri item. Other properties may or may not be
  33. * supplied by the authentication backend.
  34. *
  35. * @param array $principalInfo
  36. * @return INode
  37. */
  38. function getChildForPrincipal(array $principalInfo) {
  39. list(,$name) = URLUtil::splitPath($principalInfo['uri']);
  40. $user = \OC::$server->getUserSession()->getUser();
  41. if (is_null($user) || $name !== $user->getUID()) {
  42. // a user is only allowed to see their own home contents, so in case another collection
  43. // is accessed, we return a simple empty collection for now
  44. // in the future this could be considered to be used for accessing shared files
  45. return new SimpleCollection($name);
  46. }
  47. return new FilesHome($principalInfo);
  48. }
  49. function getName() {
  50. return 'files';
  51. }
  52. }