IRootFolder.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Bernhard Posselt <dev@bernhard-posselt.com>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Julius Härtl <jus@bitgrid.net>
  8. * @author Morris Jobke <hey@morrisjobke.de>
  9. *
  10. * @license AGPL-3.0
  11. *
  12. * This code is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License, version 3,
  14. * as published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License, version 3,
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>
  23. *
  24. */
  25. namespace OCP\Files;
  26. use OC\Hooks\Emitter;
  27. use OC\User\NoUserException;
  28. use OCP\Files\Mount\IMountPoint;
  29. /**
  30. * Interface IRootFolder
  31. *
  32. * @since 8.0.0
  33. */
  34. interface IRootFolder extends Folder, Emitter {
  35. /**
  36. * Returns a view to user's files folder
  37. *
  38. * @param string $userId user ID
  39. * @return Folder
  40. * @throws NoUserException
  41. * @throws NotPermittedException
  42. *
  43. * @since 8.2.0
  44. */
  45. public function getUserFolder($userId);
  46. /**
  47. * Get a file or folder by fileid, inside a parent path
  48. *
  49. * @param int $id
  50. * @param string $path
  51. * @return Node[]
  52. *
  53. * @since 24.0.0
  54. */
  55. public function getByIdInPath(int $id, string $path);
  56. /**
  57. * @return IMountPoint[]
  58. *
  59. * @since 27.0.1
  60. */
  61. public function getMountsIn(string $mountPoint): array;
  62. /**
  63. * @since 27.0.1
  64. */
  65. public function getMount(string $mountPoint): IMountPoint;
  66. }