2015-03-09 18:20:18 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2015-03-09 18:20:18 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Files_Sharing\Propagation;
|
|
|
|
|
|
|
|
use OC\Files\Cache\ChangePropagator;
|
2015-04-16 16:13:00 +03:00
|
|
|
use OC\Files\View;
|
2015-03-09 18:20:18 +03:00
|
|
|
use OC\Share\Share;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Propagate etags for share recipients
|
|
|
|
*/
|
|
|
|
class RecipientPropagator {
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $userId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OC\Files\Cache\ChangePropagator
|
|
|
|
*/
|
|
|
|
protected $changePropagator;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \OCP\IConfig
|
|
|
|
*/
|
|
|
|
protected $config;
|
|
|
|
|
2015-06-23 15:52:31 +03:00
|
|
|
/**
|
|
|
|
* @var PropagationManager
|
|
|
|
*/
|
|
|
|
private $manager;
|
|
|
|
|
2015-03-09 18:20:18 +03:00
|
|
|
/**
|
|
|
|
* @param string $userId current user, must match the propagator's
|
|
|
|
* user
|
|
|
|
* @param \OC\Files\Cache\ChangePropagator $changePropagator change propagator
|
|
|
|
* initialized with a view for $user
|
|
|
|
* @param \OCP\IConfig $config
|
2015-06-23 15:52:31 +03:00
|
|
|
* @param PropagationManager $manager
|
2015-03-09 18:20:18 +03:00
|
|
|
*/
|
2015-06-23 15:52:31 +03:00
|
|
|
public function __construct($userId, $changePropagator, $config, PropagationManager $manager) {
|
2015-03-09 18:20:18 +03:00
|
|
|
$this->userId = $userId;
|
|
|
|
$this->changePropagator = $changePropagator;
|
|
|
|
$this->config = $config;
|
2015-06-23 15:52:31 +03:00
|
|
|
$this->manager = $manager;
|
2015-03-09 18:20:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Propagate the etag changes for all shares marked as dirty and mark the shares as clean
|
|
|
|
*
|
|
|
|
* @param array $shares the shares for the users
|
|
|
|
* @param int $time
|
|
|
|
*/
|
|
|
|
public function propagateDirtyMountPoints(array $shares, $time = null) {
|
|
|
|
if ($time === null) {
|
2015-04-23 19:34:06 +03:00
|
|
|
$time = microtime(true);
|
2015-03-09 18:20:18 +03:00
|
|
|
}
|
|
|
|
$dirtyShares = $this->getDirtyShares($shares);
|
|
|
|
foreach ($dirtyShares as $share) {
|
|
|
|
$this->changePropagator->addChange($share['file_target']);
|
|
|
|
}
|
|
|
|
if (count($dirtyShares)) {
|
|
|
|
$this->config->setUserValue($this->userId, 'files_sharing', 'last_propagate', $time);
|
2015-04-27 16:18:13 +03:00
|
|
|
$this->changePropagator->propagateChanges(floor($time));
|
2015-03-09 18:20:18 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all shares we need to update the etag for
|
|
|
|
*
|
|
|
|
* @param array $shares the shares for the users
|
|
|
|
* @return string[]
|
|
|
|
*/
|
|
|
|
protected function getDirtyShares($shares) {
|
|
|
|
$dirty = [];
|
|
|
|
$userTime = $this->config->getUserValue($this->userId, 'files_sharing', 'last_propagate', 0);
|
|
|
|
foreach ($shares as $share) {
|
|
|
|
$updateTime = $this->config->getAppValue('files_sharing', $share['id'], 0);
|
|
|
|
if ($updateTime >= $userTime) {
|
|
|
|
$dirty[] = $share;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $dirty;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param array $share
|
|
|
|
* @param int $time
|
|
|
|
*/
|
|
|
|
public function markDirty($share, $time = null) {
|
|
|
|
if ($time === null) {
|
2015-04-23 19:34:06 +03:00
|
|
|
$time = microtime(true);
|
2015-03-09 18:20:18 +03:00
|
|
|
}
|
|
|
|
$this->config->setAppValue('files_sharing', $share['id'], $time);
|
|
|
|
}
|
2015-04-16 16:13:00 +03:00
|
|
|
|
2015-03-09 18:20:18 +03:00
|
|
|
/**
|
|
|
|
* Listen on the propagator for updates made to shares owned by a user
|
|
|
|
*
|
|
|
|
* @param \OC\Files\Cache\ChangePropagator $propagator
|
|
|
|
* @param string $owner
|
|
|
|
*/
|
|
|
|
public function attachToPropagator(ChangePropagator $propagator, $owner) {
|
|
|
|
$propagator->listen('\OC\Files', 'propagate', function ($path, $entry) use ($owner) {
|
2015-06-23 15:52:31 +03:00
|
|
|
$this->propagateById($entry['fileid']);
|
|
|
|
});
|
|
|
|
}
|
2015-04-16 16:13:00 +03:00
|
|
|
|
2015-09-04 17:17:27 +03:00
|
|
|
protected $propagatingIds = [];
|
|
|
|
|
2015-06-23 15:52:31 +03:00
|
|
|
public function propagateById($id) {
|
2015-09-04 17:17:27 +03:00
|
|
|
if (isset($this->propagatingIds[$id])) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$this->propagatingIds[$id] = true;
|
2015-06-23 15:52:31 +03:00
|
|
|
$shares = Share::getAllSharesForFileId($id);
|
|
|
|
foreach ($shares as $share) {
|
|
|
|
// propagate down the share tree
|
|
|
|
$this->markDirty($share, microtime(true));
|
|
|
|
|
|
|
|
// propagate up the share tree
|
2015-08-03 18:33:12 +03:00
|
|
|
if ($share['share_with'] === $this->userId) {
|
|
|
|
$user = $share['uid_owner'];
|
2015-04-16 16:13:00 +03:00
|
|
|
$view = new View('/' . $user . '/files');
|
|
|
|
$path = $view->getPath($share['file_source']);
|
2015-06-23 15:52:31 +03:00
|
|
|
$watcher = new ChangeWatcher($view, $this->manager->getSharePropagator($user));
|
2015-04-16 16:13:00 +03:00
|
|
|
$watcher->writeHook(['path' => $path]);
|
2015-03-09 18:20:18 +03:00
|
|
|
}
|
2015-06-23 15:52:31 +03:00
|
|
|
}
|
2015-09-04 17:17:27 +03:00
|
|
|
|
|
|
|
unset($this->propagatingIds[$id]);
|
2015-03-09 18:20:18 +03:00
|
|
|
}
|
|
|
|
}
|