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>
|
|
|
|
* @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
|
|
|
|
2016-01-22 15:01:37 +03:00
|
|
|
use OC\Files\Cache\Wrapper\CacheJail;
|
2015-12-02 16:59:13 +03:00
|
|
|
use OCP\Files\Cache\ICacheEntry;
|
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();
|
2016-01-22 15:01:37 +03:00
|
|
|
parent::__construct(
|
2016-11-17 16:18:08 +03:00
|
|
|
null,
|
2016-01-22 15:01:37 +03:00
|
|
|
$this->sourceRootInfo->getPath()
|
|
|
|
);
|
2012-12-16 04:44:46 +04:00
|
|
|
}
|
|
|
|
|
2016-11-17 16:18:08 +03:00
|
|
|
public function getCache() {
|
|
|
|
if (is_null($this->cache)) {
|
2017-06-19 15:00:27 +03:00
|
|
|
$this->cache = $this->storage->getSourceStorage()->getCache();
|
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())) {
|
|
|
|
return $this->formatCacheEntry(clone $this->sourceRootInfo);
|
|
|
|
}
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2016-01-22 15:01:37 +03:00
|
|
|
protected function formatCacheEntry($entry) {
|
2016-06-06 18:01:55 +03:00
|
|
|
$path = isset($entry['path']) ? $entry['path'] : '';
|
2016-01-22 15:01:37 +03:00
|
|
|
$entry = parent::formatCacheEntry($entry);
|
|
|
|
$sharePermissions = $this->storage->getPermissions($path);
|
|
|
|
if (isset($entry['permissions'])) {
|
|
|
|
$entry['permissions'] &= $sharePermissions;
|
|
|
|
} else {
|
|
|
|
$entry['permissions'] = $sharePermissions;
|
2013-01-08 05:52:51 +04:00
|
|
|
}
|
2016-01-22 15:01:37 +03:00
|
|
|
$entry['uid_owner'] = $this->storage->getOwner($path);
|
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
|
|
|
}
|