hooks.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /**
  3. * @author Björn Schießle <schiessle@owncloud.com>
  4. * @author Morris Jobke <hey@morrisjobke.de>
  5. *
  6. * @copyright Copyright (c) 2015, ownCloud, Inc.
  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\Files_Sharing;
  23. use OC\Files\Filesystem;
  24. class Hooks {
  25. public static function deleteUser($params) {
  26. $manager = new External\Manager(
  27. \OC::$server->getDatabaseConnection(),
  28. \OC\Files\Filesystem::getMountManager(),
  29. \OC\Files\Filesystem::getLoader(),
  30. \OC::$server->getHTTPHelper(),
  31. $params['uid']);
  32. $manager->removeUserShares($params['uid']);
  33. }
  34. public static function unshareChildren($params) {
  35. $path = Filesystem::getView()->getAbsolutePath($params['path']);
  36. $view = new \OC\Files\View('/');
  37. // find share mount points within $path and unmount them
  38. $mountManager = \OC\Files\Filesystem::getMountManager();
  39. $mountedShares = $mountManager->findIn($path);
  40. foreach ($mountedShares as $mount) {
  41. if ($mount->getStorage()->instanceOfStorage('OCA\Files_Sharing\ISharedStorage')) {
  42. $mountPoint = $mount->getMountPoint();
  43. $view->unlink($mountPoint);
  44. }
  45. }
  46. }
  47. }