2012-11-09 00:12:40 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Daniel Jagszent <daniel@jagszent.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @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>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2012-11-09 00:12:40 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2012-11-09 00:12:40 +04:00
|
|
|
namespace OC\Files\Cache;
|
2016-06-14 18:17:43 +03:00
|
|
|
|
2020-07-23 21:31:35 +03:00
|
|
|
use OC\Files\FileInfo;
|
2016-06-14 18:17:43 +03:00
|
|
|
use OCP\Files\Cache\ICacheEntry;
|
2015-12-02 17:11:09 +03:00
|
|
|
use OCP\Files\Cache\IUpdater;
|
2015-12-04 16:26:47 +03:00
|
|
|
use OCP\Files\Storage\IStorage;
|
2013-10-29 17:18:57 +04:00
|
|
|
|
2012-11-09 00:12:40 +04:00
|
|
|
/**
|
2014-08-04 16:29:46 +04:00
|
|
|
* Update the cache and propagate changes
|
2015-05-05 17:06:28 +03:00
|
|
|
*
|
2012-11-09 00:12:40 +04:00
|
|
|
*/
|
2015-12-02 17:11:09 +03:00
|
|
|
class Updater implements IUpdater {
|
2015-02-27 16:14:42 +03:00
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
protected $enabled = true;
|
|
|
|
|
2014-08-04 16:29:46 +04:00
|
|
|
/**
|
2015-11-25 15:53:31 +03:00
|
|
|
* @var \OC\Files\Storage\Storage
|
2014-08-04 16:29:46 +04:00
|
|
|
*/
|
2015-11-25 15:53:31 +03:00
|
|
|
protected $storage;
|
2012-11-09 00:12:40 +04:00
|
|
|
|
|
|
|
/**
|
2015-11-25 15:53:31 +03:00
|
|
|
* @var \OC\Files\Cache\Propagator
|
2014-08-04 16:29:46 +04:00
|
|
|
*/
|
|
|
|
protected $propagator;
|
|
|
|
|
|
|
|
/**
|
2015-11-25 15:53:31 +03:00
|
|
|
* @var Scanner
|
2012-11-09 00:12:40 +04:00
|
|
|
*/
|
2015-11-25 15:53:31 +03:00
|
|
|
protected $scanner;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Cache
|
|
|
|
*/
|
|
|
|
protected $cache;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \OC\Files\Storage\Storage $storage
|
|
|
|
*/
|
|
|
|
public function __construct(\OC\Files\Storage\Storage $storage) {
|
|
|
|
$this->storage = $storage;
|
|
|
|
$this->propagator = $storage->getPropagator();
|
|
|
|
$this->scanner = $storage->getScanner();
|
|
|
|
$this->cache = $storage->getCache();
|
2012-11-09 00:12:40 +04:00
|
|
|
}
|
|
|
|
|
2015-05-05 17:06:28 +03:00
|
|
|
/**
|
|
|
|
* Disable updating the cache trough this updater
|
|
|
|
*/
|
2015-02-27 16:14:42 +03:00
|
|
|
public function disable() {
|
|
|
|
$this->enabled = false;
|
|
|
|
}
|
|
|
|
|
2015-05-05 17:06:28 +03:00
|
|
|
/**
|
|
|
|
* Re-enable the updating of the cache trough this updater
|
|
|
|
*/
|
2015-02-27 16:14:42 +03:00
|
|
|
public function enable() {
|
|
|
|
$this->enabled = true;
|
|
|
|
}
|
|
|
|
|
2015-05-05 17:06:28 +03:00
|
|
|
/**
|
|
|
|
* Get the propagator for etags and mtime for the view the updater works on
|
|
|
|
*
|
2015-11-25 15:53:31 +03:00
|
|
|
* @return Propagator
|
2015-05-05 17:06:28 +03:00
|
|
|
*/
|
2015-03-09 18:15:06 +03:00
|
|
|
public function getPropagator() {
|
|
|
|
return $this->propagator;
|
|
|
|
}
|
|
|
|
|
2015-05-05 17:06:28 +03:00
|
|
|
/**
|
|
|
|
* Propagate etag and mtime changes for the parent folders of $path up to the root of the filesystem
|
|
|
|
*
|
|
|
|
* @param string $path the path of the file to propagate the changes for
|
|
|
|
* @param int|null $time the timestamp to set as mtime for the parent folders, if left out the current time is used
|
|
|
|
*/
|
2014-10-14 19:15:46 +04:00
|
|
|
public function propagate($path, $time = null) {
|
2015-02-02 19:35:40 +03:00
|
|
|
if (Scanner::isPartialFile($path)) {
|
|
|
|
return;
|
|
|
|
}
|
2015-11-25 15:53:31 +03:00
|
|
|
$this->propagator->propagateChange($path, $time);
|
2014-10-14 19:15:46 +04:00
|
|
|
}
|
|
|
|
|
2013-03-24 05:06:50 +04:00
|
|
|
/**
|
2015-05-05 17:06:28 +03:00
|
|
|
* Update the cache for $path and update the size, etag and mtime of the parent folders
|
2013-03-24 05:06:50 +04:00
|
|
|
*
|
2014-08-04 16:29:46 +04:00
|
|
|
* @param string $path
|
2014-08-12 15:59:06 +04:00
|
|
|
* @param int $time
|
2013-03-24 05:06:50 +04:00
|
|
|
*/
|
2014-08-12 15:59:06 +04:00
|
|
|
public function update($path, $time = null) {
|
2015-02-27 16:14:42 +03:00
|
|
|
if (!$this->enabled or Scanner::isPartialFile($path)) {
|
2015-02-02 19:35:40 +03:00
|
|
|
return;
|
|
|
|
}
|
2015-11-25 15:53:31 +03:00
|
|
|
if (is_null($time)) {
|
|
|
|
$time = time();
|
2012-12-31 05:27:38 +04:00
|
|
|
}
|
2015-11-25 15:53:31 +03:00
|
|
|
|
|
|
|
$data = $this->scanner->scan($path, Scanner::SCAN_SHALLOW, -1, false);
|
2016-04-20 16:22:22 +03:00
|
|
|
if (
|
|
|
|
isset($data['oldSize']) && isset($data['size']) &&
|
|
|
|
!$data['encrypted'] // encryption is a pita and touches the cache itself
|
|
|
|
) {
|
2016-01-07 20:13:35 +03:00
|
|
|
$sizeDifference = $data['size'] - $data['oldSize'];
|
|
|
|
} else {
|
|
|
|
// scanner didn't provide size info, fallback to full size calculation
|
|
|
|
$sizeDifference = 0;
|
2016-04-15 18:33:02 +03:00
|
|
|
if ($this->cache instanceof Cache) {
|
|
|
|
$this->cache->correctFolderSize($path, $data);
|
|
|
|
}
|
2016-01-07 20:13:35 +03:00
|
|
|
}
|
2015-11-25 15:53:31 +03:00
|
|
|
$this->correctParentStorageMtime($path);
|
2016-01-07 20:13:35 +03:00
|
|
|
$this->propagator->propagateChange($path, $time, $sizeDifference);
|
2012-11-09 00:12:40 +04:00
|
|
|
}
|
|
|
|
|
2013-03-24 05:06:50 +04:00
|
|
|
/**
|
2015-05-05 17:06:28 +03:00
|
|
|
* Remove $path from the cache and update the size, etag and mtime of the parent folders
|
2013-03-24 05:06:50 +04:00
|
|
|
*
|
2014-08-04 16:29:46 +04:00
|
|
|
* @param string $path
|
2013-03-24 05:06:50 +04:00
|
|
|
*/
|
2014-08-04 16:29:46 +04:00
|
|
|
public function remove($path) {
|
2015-02-27 16:14:42 +03:00
|
|
|
if (!$this->enabled or Scanner::isPartialFile($path)) {
|
2015-02-02 19:35:40 +03:00
|
|
|
return;
|
|
|
|
}
|
2015-11-25 15:53:31 +03:00
|
|
|
|
|
|
|
$parent = dirname($path);
|
|
|
|
if ($parent === '.') {
|
|
|
|
$parent = '';
|
2012-12-31 06:26:48 +04:00
|
|
|
}
|
2015-11-25 15:53:31 +03:00
|
|
|
|
2016-06-14 18:17:43 +03:00
|
|
|
$entry = $this->cache->get($path);
|
|
|
|
|
2015-11-25 15:53:31 +03:00
|
|
|
$this->cache->remove($path);
|
2016-06-14 18:17:43 +03:00
|
|
|
|
2015-11-25 15:53:31 +03:00
|
|
|
$this->correctParentStorageMtime($path);
|
2016-06-14 18:17:43 +03:00
|
|
|
if ($entry instanceof ICacheEntry) {
|
|
|
|
$this->propagator->propagateChange($path, time(), -$entry->getSize());
|
|
|
|
} else {
|
|
|
|
$this->propagator->propagateChange($path, time());
|
|
|
|
if ($this->cache instanceof Cache) {
|
|
|
|
$this->cache->correctFolderSize($parent);
|
|
|
|
}
|
|
|
|
}
|
2012-12-31 04:54:51 +04:00
|
|
|
}
|
|
|
|
|
2013-03-24 05:06:50 +04:00
|
|
|
/**
|
2015-05-05 17:06:28 +03:00
|
|
|
* Rename a file or folder in the cache and update the size, etag and mtime of the parent folders
|
|
|
|
*
|
2015-12-04 16:26:47 +03:00
|
|
|
* @param IStorage $sourceStorage
|
2014-08-04 16:29:46 +04:00
|
|
|
* @param string $source
|
|
|
|
* @param string $target
|
2013-03-24 05:06:50 +04:00
|
|
|
*/
|
2015-12-04 16:26:47 +03:00
|
|
|
public function renameFromStorage(IStorage $sourceStorage, $source, $target) {
|
2015-02-27 16:14:42 +03:00
|
|
|
if (!$this->enabled or Scanner::isPartialFile($source) or Scanner::isPartialFile($target)) {
|
2015-02-02 19:35:40 +03:00
|
|
|
return;
|
|
|
|
}
|
2015-11-25 15:53:31 +03:00
|
|
|
|
|
|
|
$time = time();
|
|
|
|
|
2015-12-02 17:11:09 +03:00
|
|
|
$sourceCache = $sourceStorage->getCache();
|
2015-11-25 15:53:31 +03:00
|
|
|
$sourceUpdater = $sourceStorage->getUpdater();
|
|
|
|
$sourcePropagator = $sourceStorage->getPropagator();
|
|
|
|
|
2020-07-23 21:31:35 +03:00
|
|
|
$sourceInfo = $sourceCache->get($source);
|
|
|
|
|
|
|
|
if ($sourceInfo !== false) {
|
2015-11-25 15:53:31 +03:00
|
|
|
if ($this->cache->inCache($target)) {
|
|
|
|
$this->cache->remove($target);
|
2015-04-01 16:12:59 +03:00
|
|
|
}
|
|
|
|
|
2015-11-25 15:53:31 +03:00
|
|
|
if ($sourceStorage === $this->storage) {
|
|
|
|
$this->cache->move($source, $target);
|
|
|
|
} else {
|
|
|
|
$this->cache->moveFromCache($sourceCache, $source, $target);
|
2014-03-03 15:56:08 +04:00
|
|
|
}
|
2015-04-01 16:12:59 +03:00
|
|
|
|
2020-07-30 17:11:45 +03:00
|
|
|
$sourceExtension = pathinfo($source, PATHINFO_EXTENSION);
|
|
|
|
$targetExtension = pathinfo($target, PATHINFO_EXTENSION);
|
|
|
|
$targetIsTrash = preg_match("/d\d+/", $targetExtension);
|
|
|
|
|
|
|
|
if ($sourceExtension !== $targetExtension && $sourceInfo->getMimeType() !== FileInfo::MIMETYPE_FOLDER && !$targetIsTrash) {
|
2020-07-23 21:31:35 +03:00
|
|
|
// handle mime type change
|
|
|
|
$mimeType = $this->storage->getMimeType($target);
|
|
|
|
$fileId = $this->cache->getId($target);
|
|
|
|
$this->cache->update($fileId, ['mimetype' => $mimeType]);
|
|
|
|
}
|
2013-10-29 18:08:12 +04:00
|
|
|
}
|
2015-11-25 15:53:31 +03:00
|
|
|
|
2016-04-15 18:33:02 +03:00
|
|
|
if ($sourceCache instanceof Cache) {
|
|
|
|
$sourceCache->correctFolderSize($source);
|
|
|
|
}
|
|
|
|
if ($this->cache instanceof Cache) {
|
|
|
|
$this->cache->correctFolderSize($target);
|
|
|
|
}
|
2015-12-02 17:11:09 +03:00
|
|
|
if ($sourceUpdater instanceof Updater) {
|
|
|
|
$sourceUpdater->correctParentStorageMtime($source);
|
|
|
|
}
|
2015-11-25 15:53:31 +03:00
|
|
|
$this->correctParentStorageMtime($target);
|
|
|
|
$this->updateStorageMTimeOnly($target);
|
|
|
|
$sourcePropagator->propagateChange($source, $time);
|
|
|
|
$this->propagator->propagateChange($target, $time);
|
2013-10-29 18:08:12 +04:00
|
|
|
}
|
|
|
|
|
2015-11-25 15:53:31 +03:00
|
|
|
private function updateStorageMTimeOnly($internalPath) {
|
|
|
|
$fileId = $this->cache->getId($internalPath);
|
2015-10-16 19:28:45 +03:00
|
|
|
if ($fileId !== -1) {
|
2020-03-02 16:24:45 +03:00
|
|
|
$mtime = $this->storage->filemtime($internalPath);
|
|
|
|
if ($mtime !== false) {
|
|
|
|
$this->cache->update(
|
|
|
|
$fileId, [
|
|
|
|
'mtime' => null, // this magic tells it to not overwrite mtime
|
|
|
|
'storage_mtime' => $mtime
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
2015-10-16 19:28:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-29 17:18:57 +04:00
|
|
|
/**
|
2015-05-05 17:06:28 +03:00
|
|
|
* update the storage_mtime of the direct parent in the cache to the mtime from the storage
|
2013-10-29 17:18:57 +04:00
|
|
|
*
|
|
|
|
* @param string $internalPath
|
|
|
|
*/
|
2015-12-02 17:11:09 +03:00
|
|
|
private function correctParentStorageMtime($internalPath) {
|
2015-11-25 15:53:31 +03:00
|
|
|
$parentId = $this->cache->getParentId($internalPath);
|
2013-10-29 17:18:57 +04:00
|
|
|
$parent = dirname($internalPath);
|
|
|
|
if ($parentId != -1) {
|
2016-06-07 16:00:59 +03:00
|
|
|
$mtime = $this->storage->filemtime($parent);
|
|
|
|
if ($mtime !== false) {
|
2020-03-26 11:30:18 +03:00
|
|
|
$this->cache->update($parentId, ['storage_mtime' => $mtime]);
|
2016-06-07 16:00:59 +03:00
|
|
|
}
|
2013-10-29 17:18:57 +04:00
|
|
|
}
|
|
|
|
}
|
2012-11-09 00:12:40 +04:00
|
|
|
}
|