2013-02-26 06:21:48 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2015-10-05 18:54:56 +00:00
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2015-10-26 12:54:55 +00:00
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2013-02-26 06:21:48 +00:00
|
|
|
*
|
2016-01-12 14:02:16 +00:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-03-26 10:44:34 +00:00
|
|
|
* @license AGPL-3.0
|
2013-02-26 06:21:48 +00:00
|
|
|
*
|
2015-03-26 10:44:34 +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.
|
2013-02-26 06:21:48 +00:00
|
|
|
*
|
2015-03-26 10:44:34 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-02-26 06:21:48 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 10:44:34 +00: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/>
|
2013-02-26 06:21:48 +00:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 10:37:37 +00:00
|
|
|
|
2013-02-26 06:21:48 +00:00
|
|
|
namespace OC\Files\Cache;
|
|
|
|
|
|
|
|
class Shared_Updater {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $params
|
|
|
|
*/
|
|
|
|
static public function renameHook($params) {
|
2014-07-02 13:35:15 +00:00
|
|
|
self::renameChildren($params['oldpath'], $params['newpath']);
|
2015-12-07 12:24:16 +00:00
|
|
|
self::moveShareToShare($params['newpath']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fix for https://github.com/owncloud/core/issues/20769
|
|
|
|
*
|
|
|
|
* The owner is allowed to move their files (if they are shared) into a receiving folder
|
|
|
|
* In this case we need to update the parent of the moved share. Since they are
|
|
|
|
* effectively handing over ownership of the file the rest of the code needs to know
|
|
|
|
* they need to build up the reshare tree.
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
|
|
|
static private function moveShareToShare($path) {
|
|
|
|
$userFolder = \OC::$server->getUserFolder();
|
2016-02-05 12:57:57 +00:00
|
|
|
|
|
|
|
// If the user folder can't be constructed (e.g. link share) just return.
|
|
|
|
if ($userFolder === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-12-07 12:24:16 +00:00
|
|
|
$src = $userFolder->get($path);
|
|
|
|
|
2016-04-15 07:01:10 +00:00
|
|
|
$shareManager = \OC::$server->getShareManager();
|
|
|
|
|
|
|
|
$shares = $shareManager->getSharesBy($userFolder->getOwner()->getUID(), \OCP\Share::SHARE_TYPE_USER, $src, false, -1);
|
|
|
|
$shares = array_merge($shares, $shareManager->getSharesBy($userFolder->getOwner()->getUID(), \OCP\Share::SHARE_TYPE_GROUP, $src, false, -1));
|
2015-12-07 12:24:16 +00:00
|
|
|
|
|
|
|
// If the path we move is not a share we don't care
|
|
|
|
if (empty($shares)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the destination is inside a share
|
|
|
|
$mountManager = \OC::$server->getMountManager();
|
|
|
|
$dstMount = $mountManager->find($src->getPath());
|
|
|
|
if (!($dstMount instanceof \OCA\Files_Sharing\SharedMount)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-04-15 07:01:10 +00:00
|
|
|
$newOwner = $dstMount->getShare()->getShareOwner();
|
2015-12-07 12:24:16 +00:00
|
|
|
|
2016-04-15 07:01:10 +00:00
|
|
|
//Ownership is moved over
|
2015-12-07 12:24:16 +00:00
|
|
|
foreach ($shares as $share) {
|
2016-04-15 07:01:10 +00:00
|
|
|
/** @var \OCP\Share\IShare $share */
|
|
|
|
$share->setShareOwner($newOwner);
|
|
|
|
$shareManager->updateShare($share);
|
2015-12-07 12:24:16 +00:00
|
|
|
}
|
2013-02-26 06:21:48 +00:00
|
|
|
}
|
|
|
|
|
2014-02-20 14:21:53 +00:00
|
|
|
/**
|
|
|
|
* clean up oc_share table from files which are no longer exists
|
|
|
|
*
|
|
|
|
* This fixes issues from updates from files_sharing < 0.3.5.6 (ownCloud 4.5)
|
|
|
|
* It will just be called during the update of the app
|
|
|
|
*/
|
|
|
|
static public function fixBrokenSharesOnAppUpdate() {
|
|
|
|
// delete all shares where the original file no longer exists
|
2015-04-08 13:21:52 +00:00
|
|
|
$findAndRemoveShares = \OCP\DB::prepare('DELETE FROM `*PREFIX*share` ' .
|
2014-07-08 10:51:32 +00:00
|
|
|
'WHERE `item_type` IN (\'file\', \'folder\') ' .
|
|
|
|
'AND `file_source` NOT IN (SELECT `fileid` FROM `*PREFIX*filecache`)'
|
2014-03-03 18:59:25 +00:00
|
|
|
);
|
|
|
|
$findAndRemoveShares->execute(array());
|
2014-02-20 14:21:53 +00:00
|
|
|
}
|
|
|
|
|
2014-07-02 13:35:15 +00:00
|
|
|
/**
|
|
|
|
* rename mount point from the children if the parent was renamed
|
2014-12-04 18:51:04 +00:00
|
|
|
*
|
2014-07-02 13:35:15 +00:00
|
|
|
* @param string $oldPath old path relative to data/user/files
|
|
|
|
* @param string $newPath new path relative to data/user/files
|
|
|
|
*/
|
|
|
|
static private function renameChildren($oldPath, $newPath) {
|
|
|
|
|
|
|
|
$absNewPath = \OC\Files\Filesystem::normalizePath('/' . \OCP\User::getUser() . '/files/' . $newPath);
|
|
|
|
$absOldPath = \OC\Files\Filesystem::normalizePath('/' . \OCP\User::getUser() . '/files/' . $oldPath);
|
|
|
|
|
|
|
|
$mountManager = \OC\Files\Filesystem::getMountManager();
|
|
|
|
$mountedShares = $mountManager->findIn('/' . \OCP\User::getUser() . '/files/' . $oldPath);
|
|
|
|
foreach ($mountedShares as $mount) {
|
|
|
|
if ($mount->getStorage()->instanceOfStorage('OCA\Files_Sharing\ISharedStorage')) {
|
|
|
|
$mountPoint = $mount->getMountPoint();
|
|
|
|
$target = str_replace($absOldPath, $absNewPath, $mountPoint);
|
|
|
|
$mount->moveMount($target);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-07 15:00:03 +00:00
|
|
|
}
|