2014-04-30 18:56:09 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Bjoern Schiessle
|
|
|
|
* @copyright 2014 Bjoern Schiessle <schiessle@owncloud.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* 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 along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Files\Share;
|
2014-07-02 16:40:22 +04:00
|
|
|
use OCA\Files_Sharing\Helper;
|
2014-04-30 18:56:09 +04:00
|
|
|
|
|
|
|
class Proxy extends \OC_FileProxy {
|
|
|
|
|
|
|
|
/**
|
2014-07-02 16:40:22 +04:00
|
|
|
* check if the deleted folder contains share mount points and unshare them
|
2014-04-30 18:56:09 +04:00
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
|
|
|
public function preUnlink($path) {
|
2014-07-02 16:40:22 +04:00
|
|
|
$this->unshareChildren($path);
|
2014-04-30 18:56:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-07-02 16:40:22 +04:00
|
|
|
* check if the deleted folder contains share mount points and unshare them
|
2014-04-30 18:56:09 +04:00
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
|
|
|
public function preRmdir($path) {
|
2014-07-02 16:40:22 +04:00
|
|
|
$this->unshareChildren($path);
|
2014-04-30 18:56:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-07-02 16:40:22 +04:00
|
|
|
* unshare shared items below the deleted folder
|
2014-04-30 18:56:09 +04:00
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
2014-07-02 16:40:22 +04:00
|
|
|
private function unshareChildren($path) {
|
2014-04-30 18:56:09 +04:00
|
|
|
$view = new \OC\Files\View('/');
|
|
|
|
|
2014-07-02 16:40:22 +04:00
|
|
|
// find share mount points within $path and unmount them
|
2014-04-30 18:56:09 +04:00
|
|
|
$mountManager = \OC\Files\Filesystem::getMountManager();
|
|
|
|
$mountedShares = $mountManager->findIn($path);
|
|
|
|
foreach ($mountedShares as $mount) {
|
2014-07-02 16:40:22 +04:00
|
|
|
if ($mount->getStorage()->instanceOfStorage('OCA\Files_Sharing\ISharedStorage')) {
|
2014-04-30 18:56:09 +04:00
|
|
|
$mountPoint = $mount->getMountPoint();
|
2014-07-02 16:40:22 +04:00
|
|
|
$view->unlink($mountPoint);
|
2014-04-30 18:56:09 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|