2015-01-21 02:11:15 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-01-21 02:11:15 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2015-01-21 02:11:15 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2015-02-23 13:28:53 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2015-01-21 02:11:15 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-01-21 02:11:15 +03:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2015-01-21 02:11:15 +03:00
|
|
|
namespace OCA\Files_Sharing;
|
|
|
|
|
2015-03-18 17:26:04 +03:00
|
|
|
use OC\Files\Filesystem;
|
2016-02-25 22:46:01 +03:00
|
|
|
use OCA\FederatedFileSharing\DiscoveryManager;
|
2015-03-18 17:26:04 +03:00
|
|
|
|
2015-01-21 02:11:15 +03:00
|
|
|
class Hooks {
|
|
|
|
|
|
|
|
public static function deleteUser($params) {
|
|
|
|
$manager = new External\Manager(
|
|
|
|
\OC::$server->getDatabaseConnection(),
|
|
|
|
\OC\Files\Filesystem::getMountManager(),
|
|
|
|
\OC\Files\Filesystem::getLoader(),
|
2016-08-23 10:10:53 +03:00
|
|
|
\OC::$server->getHTTPClientService(),
|
2015-09-01 19:56:09 +03:00
|
|
|
\OC::$server->getNotificationManager(),
|
2017-04-05 23:35:59 +03:00
|
|
|
\OC::$server->query(\OCP\OCS\IDiscoveryService::class),
|
2015-01-20 19:00:29 +03:00
|
|
|
$params['uid']);
|
2015-01-21 02:11:15 +03:00
|
|
|
|
|
|
|
$manager->removeUserShares($params['uid']);
|
|
|
|
}
|
|
|
|
|
2015-03-18 17:26:04 +03:00
|
|
|
public static function unshareChildren($params) {
|
|
|
|
$path = Filesystem::getView()->getAbsolutePath($params['path']);
|
|
|
|
$view = new \OC\Files\View('/');
|
|
|
|
|
|
|
|
// find share mount points within $path and unmount them
|
|
|
|
$mountManager = \OC\Files\Filesystem::getMountManager();
|
|
|
|
$mountedShares = $mountManager->findIn($path);
|
|
|
|
foreach ($mountedShares as $mount) {
|
|
|
|
if ($mount->getStorage()->instanceOfStorage('OCA\Files_Sharing\ISharedStorage')) {
|
|
|
|
$mountPoint = $mount->getMountPoint();
|
|
|
|
$view->unlink($mountPoint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-21 02:11:15 +03:00
|
|
|
}
|