2014-04-30 14:56:09 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-23 10:28:53 +00:00
|
|
|
* @author Bjoern Schiessle <schiessle@owncloud.com>
|
2014-04-30 14:56:09 +00:00
|
|
|
*
|
2015-02-23 10:28:53 +00:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
2014-04-30 14:56:09 +00:00
|
|
|
*
|
2015-02-23 10:28:53 +00: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.
|
2014-04-30 14:56:09 +00:00
|
|
|
*
|
2015-02-23 10:28:53 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-04-30 14:56:09 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-02-23 10:28:53 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2014-04-30 14:56:09 +00:00
|
|
|
*
|
2015-02-23 10:28:53 +00:00
|
|
|
* 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/>
|
2014-04-30 14:56:09 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
namespace OCA\Files\Share;
|
2014-07-02 12:40:22 +00:00
|
|
|
use OCA\Files_Sharing\Helper;
|
2014-04-30 14:56:09 +00:00
|
|
|
|
|
|
|
class Proxy extends \OC_FileProxy {
|
|
|
|
|
|
|
|
/**
|
2014-07-02 12:40:22 +00:00
|
|
|
* check if the deleted folder contains share mount points and unshare them
|
2014-04-30 14:56:09 +00:00
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
|
|
|
public function preUnlink($path) {
|
2014-07-02 12:40:22 +00:00
|
|
|
$this->unshareChildren($path);
|
2014-04-30 14:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-07-02 12:40:22 +00:00
|
|
|
* check if the deleted folder contains share mount points and unshare them
|
2014-04-30 14:56:09 +00:00
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
|
|
|
public function preRmdir($path) {
|
2014-07-02 12:40:22 +00:00
|
|
|
$this->unshareChildren($path);
|
2014-04-30 14:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-07-02 12:40:22 +00:00
|
|
|
* unshare shared items below the deleted folder
|
2014-04-30 14:56:09 +00:00
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
2014-07-02 12:40:22 +00:00
|
|
|
private function unshareChildren($path) {
|
2014-04-30 14:56:09 +00:00
|
|
|
$view = new \OC\Files\View('/');
|
|
|
|
|
2014-07-02 12:40:22 +00:00
|
|
|
// find share mount points within $path and unmount them
|
2014-04-30 14:56:09 +00:00
|
|
|
$mountManager = \OC\Files\Filesystem::getMountManager();
|
|
|
|
$mountedShares = $mountManager->findIn($path);
|
|
|
|
foreach ($mountedShares as $mount) {
|
2014-07-02 12:40:22 +00:00
|
|
|
if ($mount->getStorage()->instanceOfStorage('OCA\Files_Sharing\ISharedStorage')) {
|
2014-04-30 14:56:09 +00:00
|
|
|
$mountPoint = $mount->getMountPoint();
|
2014-07-02 12:40:22 +00:00
|
|
|
$view->unlink($mountPoint);
|
2014-04-30 14:56:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|