2012-12-16 04:44:46 +04:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2017-11-06 17:56:42 +03:00
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
|
* @author Michael Gapczynski <GapczynskiM@gmail.com>
|
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 17:49:16 +03:00
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2013-01-29 00:25:19 +04:00
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
|
* @license AGPL-3.0
|
2013-01-29 00:25:19 +04:00
|
|
|
|
*
|
2015-03-26 13:44:34 +03: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-01-29 00:25:19 +04:00
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-01-29 00:25:19 +04:00
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03: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-01-29 00:25:19 +04:00
|
|
|
|
*
|
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
2016-05-02 16:16:20 +03:00
|
|
|
|
namespace OCA\Files_Sharing;
|
2014-03-28 18:26:15 +04:00
|
|
|
|
|
2017-05-24 14:56:09 +03:00
|
|
|
|
use OC\Files\Cache\FailedCache;
|
2016-01-22 15:01:37 +03:00
|
|
|
|
use OC\Files\Cache\Wrapper\CacheJail;
|
2017-11-10 19:02:35 +03:00
|
|
|
|
use OC\Files\Storage\Wrapper\Jail;
|
2015-12-02 16:59:13 +03:00
|
|
|
|
use OCP\Files\Cache\ICacheEntry;
|
2018-09-26 11:43:40 +03:00
|
|
|
|
use OCP\Files\StorageNotAvailableException;
|
2012-12-16 04:44:46 +04:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Metadata cache for shared files
|
|
|
|
|
*
|
|
|
|
|
* don't use this class directly if you need to get metadata, use \OC\Files\Filesystem::getFileInfo instead
|
|
|
|
|
*/
|
2016-05-02 16:16:20 +03:00
|
|
|
|
class Cache extends CacheJail {
|
2014-02-06 19:30:58 +04:00
|
|
|
|
/**
|
2016-06-01 15:29:31 +03:00
|
|
|
|
* @var \OCA\Files_Sharing\SharedStorage
|
2014-02-06 19:30:58 +04:00
|
|
|
|
*/
|
2016-01-22 15:01:37 +03:00
|
|
|
|
private $storage;
|
2012-12-29 00:06:12 +04:00
|
|
|
|
|
2012-12-16 04:44:46 +04:00
|
|
|
|
/**
|
2016-01-22 15:01:37 +03:00
|
|
|
|
* @var ICacheEntry
|
2012-12-16 04:44:46 +04:00
|
|
|
|
*/
|
2016-01-22 15:01:37 +03:00
|
|
|
|
private $sourceRootInfo;
|
2012-12-16 04:44:46 +04:00
|
|
|
|
|
2016-11-17 13:48:29 +03:00
|
|
|
|
private $rootUnchanged = true;
|
|
|
|
|
|
2016-11-18 13:21:45 +03:00
|
|
|
|
private $ownerDisplayName;
|
|
|
|
|
|
2017-03-27 15:05:01 +03:00
|
|
|
|
private $numericId;
|
|
|
|
|
|
2012-12-16 04:44:46 +04:00
|
|
|
|
/**
|
2016-06-01 15:29:31 +03:00
|
|
|
|
* @param \OCA\Files_Sharing\SharedStorage $storage
|
2016-01-22 15:01:37 +03:00
|
|
|
|
* @param ICacheEntry $sourceRootInfo
|
2012-12-16 04:44:46 +04:00
|
|
|
|
*/
|
2016-11-17 16:18:08 +03:00
|
|
|
|
public function __construct($storage, ICacheEntry $sourceRootInfo) {
|
2016-01-22 15:01:37 +03:00
|
|
|
|
$this->storage = $storage;
|
|
|
|
|
$this->sourceRootInfo = $sourceRootInfo;
|
2017-03-27 15:05:01 +03:00
|
|
|
|
$this->numericId = $sourceRootInfo->getStorageId();
|
2017-11-10 19:02:35 +03:00
|
|
|
|
|
2016-01-22 15:01:37 +03:00
|
|
|
|
parent::__construct(
|
2016-11-17 16:18:08 +03:00
|
|
|
|
null,
|
2019-09-04 10:28:58 +03:00
|
|
|
|
''
|
2016-01-22 15:01:37 +03:00
|
|
|
|
);
|
2012-12-16 04:44:46 +04:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-04 17:16:39 +03:00
|
|
|
|
protected function getRoot() {
|
2019-09-04 10:28:58 +03:00
|
|
|
|
if ($this->root === '') {
|
2017-12-04 17:16:39 +03:00
|
|
|
|
$absoluteRoot = $this->sourceRootInfo->getPath();
|
|
|
|
|
|
|
|
|
|
// the sourceRootInfo path is the absolute path of the folder in the "real" storage
|
|
|
|
|
// in the case where a folder is shared from a Jail we need to ensure that the share Jail
|
|
|
|
|
// has it's root set relative to the source Jail
|
|
|
|
|
$currentStorage = $this->storage->getSourceStorage();
|
|
|
|
|
if ($currentStorage->instanceOfStorage(Jail::class)) {
|
|
|
|
|
/** @var Jail $currentStorage */
|
|
|
|
|
$absoluteRoot = $currentStorage->getJailedPath($absoluteRoot);
|
|
|
|
|
}
|
|
|
|
|
$this->root = $absoluteRoot;
|
|
|
|
|
}
|
|
|
|
|
return $this->root;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-17 16:18:08 +03:00
|
|
|
|
public function getCache() {
|
|
|
|
|
if (is_null($this->cache)) {
|
2017-05-24 14:56:09 +03:00
|
|
|
|
$sourceStorage = $this->storage->getSourceStorage();
|
|
|
|
|
if ($sourceStorage) {
|
|
|
|
|
$this->cache = $sourceStorage->getCache();
|
|
|
|
|
} else {
|
|
|
|
|
// don't set $this->cache here since sourceStorage will be set later
|
|
|
|
|
return new FailedCache();
|
|
|
|
|
}
|
2016-11-17 16:18:08 +03:00
|
|
|
|
}
|
|
|
|
|
return $this->cache;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-23 22:10:43 +03:00
|
|
|
|
public function getNumericStorageId() {
|
|
|
|
|
if (isset($this->numericId)) {
|
|
|
|
|
return $this->numericId;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-17 13:48:29 +03:00
|
|
|
|
public function get($file) {
|
|
|
|
|
if ($this->rootUnchanged && ($file === '' || $file === $this->sourceRootInfo->getId())) {
|
2017-12-04 17:16:39 +03:00
|
|
|
|
return $this->formatCacheEntry(clone $this->sourceRootInfo, '');
|
2016-11-17 13:48:29 +03:00
|
|
|
|
}
|
|
|
|
|
return parent::get($file);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function update($id, array $data) {
|
|
|
|
|
$this->rootUnchanged = false;
|
|
|
|
|
parent::update($id, $data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function insert($file, array $data) {
|
|
|
|
|
$this->rootUnchanged = false;
|
|
|
|
|
return parent::insert($file, $data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function remove($file) {
|
|
|
|
|
$this->rootUnchanged = false;
|
|
|
|
|
parent::remove($file);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function moveFromCache(\OCP\Files\Cache\ICache $sourceCache, $sourcePath, $targetPath) {
|
|
|
|
|
$this->rootUnchanged = false;
|
|
|
|
|
return parent::moveFromCache($sourceCache, $sourcePath, $targetPath);
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-04 17:16:39 +03:00
|
|
|
|
protected function formatCacheEntry($entry, $path = null) {
|
|
|
|
|
if (is_null($path)) {
|
2019-09-04 10:28:58 +03:00
|
|
|
|
$path = $entry['path'] ?? '';
|
2017-12-04 17:16:39 +03:00
|
|
|
|
$entry['path'] = $this->getJailedPath($path);
|
|
|
|
|
} else {
|
|
|
|
|
$entry['path'] = $path;
|
|
|
|
|
}
|
2018-09-26 11:43:40 +03:00
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$sharePermissions = $this->storage->getPermissions($entry['path']);
|
|
|
|
|
} catch (StorageNotAvailableException $e) {
|
|
|
|
|
// thrown by FailedStorage e.g. when the sharer does not exist anymore
|
|
|
|
|
// (IDE may say the exception is never thrown – false negative)
|
|
|
|
|
$sharePermissions = 0;
|
|
|
|
|
}
|
2016-01-22 15:01:37 +03:00
|
|
|
|
if (isset($entry['permissions'])) {
|
|
|
|
|
$entry['permissions'] &= $sharePermissions;
|
|
|
|
|
} else {
|
|
|
|
|
$entry['permissions'] = $sharePermissions;
|
2013-01-08 05:52:51 +04:00
|
|
|
|
}
|
2017-12-04 17:16:39 +03:00
|
|
|
|
$entry['uid_owner'] = $this->storage->getOwner('');
|
2016-11-18 13:21:45 +03:00
|
|
|
|
$entry['displayname_owner'] = $this->getOwnerDisplayName();
|
2016-01-22 15:01:37 +03:00
|
|
|
|
if ($path === '') {
|
|
|
|
|
$entry['is_share_mount_point'] = true;
|
2012-12-16 04:44:46 +04:00
|
|
|
|
}
|
2016-01-22 15:01:37 +03:00
|
|
|
|
return $entry;
|
2012-12-16 04:44:46 +04:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-18 13:21:45 +03:00
|
|
|
|
private function getOwnerDisplayName() {
|
|
|
|
|
if (!$this->ownerDisplayName) {
|
|
|
|
|
$this->ownerDisplayName = \OC_User::getDisplayName($this->storage->getOwner(''));
|
|
|
|
|
}
|
|
|
|
|
return $this->ownerDisplayName;
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-16 04:44:46 +04:00
|
|
|
|
/**
|
|
|
|
|
* remove all entries for files that are stored on the storage from the cache
|
|
|
|
|
*/
|
|
|
|
|
public function clear() {
|
|
|
|
|
// Not a valid action for Shared Cache
|
|
|
|
|
}
|
2013-08-18 13:02:08 +04:00
|
|
|
|
}
|