IMountProviderCollection.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Morris Jobke <hey@morrisjobke.de>
  6. * @author Robin Appelman <robin@icewind.nl>
  7. *
  8. * @license AGPL-3.0
  9. *
  10. * This code is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License, version 3,
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License, version 3,
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>
  21. *
  22. */
  23. namespace OCP\Files\Config;
  24. use OCP\IUser;
  25. /**
  26. * Manages the different mount providers
  27. * @since 8.0.0
  28. */
  29. interface IMountProviderCollection {
  30. /**
  31. * Get all configured mount points for the user
  32. *
  33. * @param \OCP\IUser $user
  34. * @return \OCP\Files\Mount\IMountPoint[]
  35. * @since 8.0.0
  36. */
  37. public function getMountsForUser(IUser $user);
  38. /**
  39. * Get the configured mount points for the user from a specific mount provider
  40. *
  41. * @param \OCP\IUser $user
  42. * @param class-string<IMountProvider>[] $mountProviderClasses
  43. * @return \OCP\Files\Mount\IMountPoint[]
  44. * @since 24.0.0
  45. */
  46. public function getUserMountsForProviderClasses(IUser $user, array $mountProviderClasses): array;
  47. /**
  48. * Get the configured home mount for this user
  49. *
  50. * @param \OCP\IUser $user
  51. * @return \OCP\Files\Mount\IMountPoint
  52. * @since 9.1.0
  53. */
  54. public function getHomeMountForUser(IUser $user);
  55. /**
  56. * Add a provider for mount points
  57. *
  58. * @param \OCP\Files\Config\IMountProvider $provider
  59. * @since 8.0.0
  60. */
  61. public function registerProvider(IMountProvider $provider);
  62. /**
  63. * Add a filter for mounts
  64. *
  65. * @param callable $filter (IMountPoint $mountPoint, IUser $user) => boolean
  66. * @since 14.0.0
  67. */
  68. public function registerMountFilter(callable $filter);
  69. /**
  70. * Add a provider for home mount points
  71. *
  72. * @param \OCP\Files\Config\IHomeMountProvider $provider
  73. * @since 9.1.0
  74. */
  75. public function registerHomeProvider(IHomeMountProvider $provider);
  76. /**
  77. * Get the mount cache which can be used to search for mounts without setting up the filesystem
  78. *
  79. * @return IUserMountCache
  80. * @since 9.0.0
  81. */
  82. public function getMountCache();
  83. /**
  84. * Get all root mountpoints
  85. *
  86. * @return \OCP\Files\Mount\IMountPoint[]
  87. * @since 20.0.0
  88. */
  89. public function getRootMounts(): array;
  90. }