2013-02-26 10:21:48 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Michael Gapczynski
|
|
|
|
* @copyright 2013 Michael Gapczynski mtgap@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 OC\Files\Cache;
|
|
|
|
|
|
|
|
class Shared_Updater {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Correct the parent folders' ETags for all users shared the file at $target
|
|
|
|
*
|
|
|
|
* @param string $target
|
|
|
|
*/
|
|
|
|
static public function correctFolders($target) {
|
|
|
|
$uid = \OCP\User::getUser();
|
|
|
|
$uidOwner = \OC\Files\Filesystem::getOwner($target);
|
|
|
|
$info = \OC\Files\Filesystem::getFileInfo($target);
|
2013-10-18 19:35:56 +04:00
|
|
|
$checkedUser = array($uidOwner);
|
2013-02-26 10:21:48 +04:00
|
|
|
// Correct Shared folders of other users shared with
|
2013-10-18 19:48:35 +04:00
|
|
|
$users = \OCP\Share::getUsersItemShared('file', $info['fileid'], $uidOwner, true);
|
2013-02-26 10:21:48 +04:00
|
|
|
if (!empty($users)) {
|
2013-03-07 02:33:27 +04:00
|
|
|
while (!empty($users)) {
|
|
|
|
$reshareUsers = array();
|
|
|
|
foreach ($users as $user) {
|
2013-10-18 19:47:01 +04:00
|
|
|
if ( !in_array($user, $checkedUser) ) {
|
2013-03-20 15:58:39 +04:00
|
|
|
$etag = \OC\Files\Filesystem::getETag('');
|
|
|
|
\OCP\Config::setUserValue($user, 'files_sharing', 'etag', $etag);
|
|
|
|
// Look for reshares
|
|
|
|
$reshareUsers = array_merge($reshareUsers, \OCP\Share::getUsersItemShared('file', $info['fileid'], $user, true));
|
2013-10-18 19:35:56 +04:00
|
|
|
$checkedUser[] = $user;
|
2013-03-20 15:58:39 +04:00
|
|
|
}
|
2013-02-26 10:21:48 +04:00
|
|
|
}
|
2013-03-07 02:33:27 +04:00
|
|
|
$users = $reshareUsers;
|
2013-02-26 10:21:48 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-04 18:50:53 +04:00
|
|
|
/**
|
|
|
|
* @brief remove all shares for a given file if the file was deleted
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
*/
|
2013-10-02 15:26:38 +04:00
|
|
|
private static function removeShare($path) {
|
|
|
|
$fileInfo = \OC\Files\Filesystem::getFileInfo($path);
|
|
|
|
$fileSource = $fileInfo['fileid'];
|
|
|
|
|
|
|
|
$query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `file_source`=?');
|
2013-10-07 13:06:24 +04:00
|
|
|
try {
|
|
|
|
\OC_DB::executeAudited($query, array($fileSource));
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
\OCP\Util::writeLog('files_sharing', "can't remove share: " . $e->getMessage(), \OCP\Util::WARN);
|
|
|
|
}
|
2013-10-02 15:26:38 +04:00
|
|
|
}
|
|
|
|
|
2013-02-26 10:21:48 +04:00
|
|
|
/**
|
|
|
|
* @param array $params
|
|
|
|
*/
|
|
|
|
static public function writeHook($params) {
|
|
|
|
self::correctFolders($params['path']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $params
|
|
|
|
*/
|
|
|
|
static public function renameHook($params) {
|
|
|
|
self::correctFolders($params['newpath']);
|
2013-03-22 19:20:40 +04:00
|
|
|
self::correctFolders(pathinfo($params['oldpath'], PATHINFO_DIRNAME));
|
2013-02-26 10:21:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $params
|
|
|
|
*/
|
|
|
|
static public function deleteHook($params) {
|
|
|
|
self::correctFolders($params['path']);
|
2013-10-02 15:26:38 +04:00
|
|
|
self::removeShare($params['path']);
|
2013-02-26 10:21:48 +04:00
|
|
|
}
|
|
|
|
|
2013-10-02 15:26:38 +04:00
|
|
|
|
2013-03-02 21:57:29 +04:00
|
|
|
/**
|
|
|
|
* @param array $params
|
|
|
|
*/
|
|
|
|
static public function shareHook($params) {
|
2013-03-02 22:11:57 +04:00
|
|
|
if ($params['itemType'] === 'file' || $params['itemType'] === 'folder') {
|
2013-03-08 19:59:22 +04:00
|
|
|
$uidOwner = \OCP\User::getUser();
|
2013-03-08 20:32:04 +04:00
|
|
|
$users = \OCP\Share::getUsersItemShared($params['itemType'], $params['fileSource'], $uidOwner, true);
|
2013-03-08 19:59:22 +04:00
|
|
|
if (!empty($users)) {
|
|
|
|
while (!empty($users)) {
|
|
|
|
$reshareUsers = array();
|
|
|
|
foreach ($users as $user) {
|
2013-03-20 15:58:39 +04:00
|
|
|
if ($user !== $uidOwner) {
|
|
|
|
$etag = \OC\Files\Filesystem::getETag('');
|
|
|
|
\OCP\Config::setUserValue($user, 'files_sharing', 'etag', $etag);
|
|
|
|
// Look for reshares
|
|
|
|
$reshareUsers = array_merge($reshareUsers, \OCP\Share::getUsersItemShared('file', $params['fileSource'], $user, true));
|
|
|
|
}
|
2013-03-08 19:59:22 +04:00
|
|
|
}
|
|
|
|
$users = $reshareUsers;
|
|
|
|
}
|
|
|
|
}
|
2013-03-02 21:57:29 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-07 19:00:03 +04:00
|
|
|
}
|