IMountProviderCollection.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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\Files\Mount\IMountPoint;
  25. use OCP\IUser;
  26. /**
  27. * Manages the different mount providers
  28. * @since 8.0.0
  29. */
  30. interface IMountProviderCollection {
  31. /**
  32. * Get all configured mount points for the user
  33. *
  34. * @param \OCP\IUser $user
  35. * @return \OCP\Files\Mount\IMountPoint[]
  36. * @since 8.0.0
  37. */
  38. public function getMountsForUser(IUser $user);
  39. /**
  40. * Get the configured home mount for this user
  41. *
  42. * @param \OCP\IUser $user
  43. * @return \OCP\Files\Mount\IMountPoint
  44. * @since 9.1.0
  45. */
  46. public function getHomeMountForUser(IUser $user);
  47. /**
  48. * Add a provider for mount points
  49. *
  50. * @param \OCP\Files\Config\IMountProvider $provider
  51. * @since 8.0.0
  52. */
  53. public function registerProvider(IMountProvider $provider);
  54. /**
  55. * Add a provider for home mount points
  56. *
  57. * @param \OCP\Files\Config\IHomeMountProvider $provider
  58. * @since 9.1.0
  59. */
  60. public function registerHomeProvider(IHomeMountProvider $provider);
  61. /**
  62. * Get the mount cache which can be used to search for mounts without setting up the filesystem
  63. *
  64. * @return IUserMountCache
  65. * @since 9.0.0
  66. */
  67. public function getMountCache();
  68. }