2015-06-05 15:21:17 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Sebastian Wessalowski <sebastian@wessalowski.org>
|
2015-06-05 15:21:17 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2015-06-05 15:21:17 +03:00
|
|
|
*
|
|
|
|
* @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-06-05 15:21:17 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Cache;
|
|
|
|
|
|
|
|
use OC\Files\Filesystem;
|
|
|
|
use OC\Files\View;
|
2015-06-29 23:43:18 +03:00
|
|
|
use OCP\ICache;
|
2018-04-25 16:22:28 +03:00
|
|
|
use OCP\ILogger;
|
2015-06-05 15:21:17 +03:00
|
|
|
use OCP\Security\ISecureRandom;
|
|
|
|
|
2015-06-29 23:43:18 +03:00
|
|
|
class File implements ICache {
|
|
|
|
|
|
|
|
/** @var View */
|
2015-06-05 15:21:17 +03:00
|
|
|
protected $storage;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the cache storage for the logged in user
|
|
|
|
*
|
|
|
|
* @return \OC\Files\View cache storage
|
2015-06-17 12:57:12 +03:00
|
|
|
* @throws \OC\ForbiddenException
|
|
|
|
* @throws \OC\User\NoUserException
|
2015-06-05 15:21:17 +03:00
|
|
|
*/
|
|
|
|
protected function getStorage() {
|
|
|
|
if (isset($this->storage)) {
|
|
|
|
return $this->storage;
|
|
|
|
}
|
2017-03-02 18:52:05 +03:00
|
|
|
if (\OC::$server->getUserSession()->isLoggedIn()) {
|
2015-06-05 15:21:17 +03:00
|
|
|
$rootView = new View();
|
|
|
|
$user = \OC::$server->getUserSession()->getUser();
|
|
|
|
Filesystem::initMountPoints($user->getUID());
|
|
|
|
if (!$rootView->file_exists('/' . $user->getUID() . '/cache')) {
|
|
|
|
$rootView->mkdir('/' . $user->getUID() . '/cache');
|
|
|
|
}
|
|
|
|
$this->storage = new View('/' . $user->getUID() . '/cache');
|
|
|
|
return $this->storage;
|
|
|
|
} else {
|
2018-04-25 16:22:28 +03:00
|
|
|
\OCP\Util::writeLog('core', 'Can\'t get cache storage, user not logged in', ILogger::ERROR);
|
2015-06-05 15:21:17 +03:00
|
|
|
throw new \OC\ForbiddenException('Can\t get cache storage, user not logged in');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
2015-06-17 12:57:12 +03:00
|
|
|
* @return mixed|null
|
|
|
|
* @throws \OC\ForbiddenException
|
2015-06-05 15:21:17 +03:00
|
|
|
*/
|
|
|
|
public function get($key) {
|
|
|
|
$result = null;
|
|
|
|
if ($this->hasKey($key)) {
|
|
|
|
$storage = $this->getStorage();
|
|
|
|
$result = $storage->file_get_contents($key);
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the size of the stored/cached data
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function size($key) {
|
|
|
|
$result = 0;
|
|
|
|
if ($this->hasKey($key)) {
|
|
|
|
$storage = $this->getStorage();
|
|
|
|
$result = $storage->filesize($key);
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
2015-06-17 12:57:12 +03:00
|
|
|
* @param mixed $value
|
|
|
|
* @param int $ttl
|
|
|
|
* @return bool|mixed
|
|
|
|
* @throws \OC\ForbiddenException
|
2015-06-05 15:21:17 +03:00
|
|
|
*/
|
|
|
|
public function set($key, $value, $ttl = 0) {
|
|
|
|
$storage = $this->getStorage();
|
|
|
|
$result = false;
|
|
|
|
// unique id to avoid chunk collision, just in case
|
2016-01-11 21:59:15 +03:00
|
|
|
$uniqueId = \OC::$server->getSecureRandom()->generate(
|
2015-06-05 15:21:17 +03:00
|
|
|
16,
|
|
|
|
ISecureRandom::CHAR_DIGITS . ISecureRandom::CHAR_LOWER . ISecureRandom::CHAR_UPPER
|
|
|
|
);
|
|
|
|
|
|
|
|
// use part file to prevent hasKey() to find the key
|
|
|
|
// while it is being written
|
|
|
|
$keyPart = $key . '.' . $uniqueId . '.part';
|
|
|
|
if ($storage and $storage->file_put_contents($keyPart, $value)) {
|
|
|
|
if ($ttl === 0) {
|
|
|
|
$ttl = 86400; // 60*60*24
|
|
|
|
}
|
|
|
|
$result = $storage->touch($keyPart, time() + $ttl);
|
|
|
|
$result &= $storage->rename($keyPart, $key);
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2015-06-17 12:57:12 +03:00
|
|
|
/**
|
|
|
|
* @param string $key
|
|
|
|
* @return bool
|
|
|
|
* @throws \OC\ForbiddenException
|
|
|
|
*/
|
2015-06-05 15:21:17 +03:00
|
|
|
public function hasKey($key) {
|
|
|
|
$storage = $this->getStorage();
|
|
|
|
if ($storage && $storage->is_file($key) && $storage->isReadable($key)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key
|
2015-06-17 12:57:12 +03:00
|
|
|
* @return bool|mixed
|
|
|
|
* @throws \OC\ForbiddenException
|
2015-06-05 15:21:17 +03:00
|
|
|
*/
|
|
|
|
public function remove($key) {
|
|
|
|
$storage = $this->getStorage();
|
|
|
|
if (!$storage) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return $storage->unlink($key);
|
|
|
|
}
|
|
|
|
|
2015-06-17 12:57:12 +03:00
|
|
|
/**
|
|
|
|
* @param string $prefix
|
|
|
|
* @return bool
|
|
|
|
* @throws \OC\ForbiddenException
|
|
|
|
*/
|
2015-06-05 15:21:17 +03:00
|
|
|
public function clear($prefix = '') {
|
|
|
|
$storage = $this->getStorage();
|
|
|
|
if ($storage and $storage->is_dir('/')) {
|
|
|
|
$dh = $storage->opendir('/');
|
|
|
|
if (is_resource($dh)) {
|
|
|
|
while (($file = readdir($dh)) !== false) {
|
|
|
|
if ($file != '.' and $file != '..' and ($prefix === '' || strpos($file, $prefix) === 0)) {
|
|
|
|
$storage->unlink('/' . $file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-17 12:57:12 +03:00
|
|
|
/**
|
|
|
|
* Runs GC
|
|
|
|
* @throws \OC\ForbiddenException
|
|
|
|
*/
|
2015-06-05 15:21:17 +03:00
|
|
|
public function gc() {
|
|
|
|
$storage = $this->getStorage();
|
2018-05-24 15:24:10 +03:00
|
|
|
if ($storage) {
|
2016-05-17 18:03:42 +03:00
|
|
|
// extra hour safety, in case of stray part chunks that take longer to write,
|
|
|
|
// because touch() is only called after the chunk was finished
|
|
|
|
$now = time() - 3600;
|
2015-06-05 15:21:17 +03:00
|
|
|
$dh = $storage->opendir('/');
|
|
|
|
if (!is_resource($dh)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
while (($file = readdir($dh)) !== false) {
|
|
|
|
if ($file != '.' and $file != '..') {
|
2015-06-30 18:00:46 +03:00
|
|
|
try {
|
|
|
|
$mtime = $storage->filemtime('/' . $file);
|
|
|
|
if ($mtime < $now) {
|
|
|
|
$storage->unlink('/' . $file);
|
|
|
|
}
|
|
|
|
} catch (\OCP\Lock\LockedException $e) {
|
|
|
|
// ignore locked chunks
|
2020-03-26 11:30:18 +03:00
|
|
|
\OC::$server->getLogger()->debug('Could not cleanup locked chunk "' . $file . '"', ['app' => 'core']);
|
2015-11-13 16:13:16 +03:00
|
|
|
} catch (\OCP\Files\ForbiddenException $e) {
|
2020-03-26 11:30:18 +03:00
|
|
|
\OC::$server->getLogger()->debug('Could not cleanup forbidden chunk "' . $file . '"', ['app' => 'core']);
|
2015-06-30 18:00:46 +03:00
|
|
|
} catch (\OCP\Files\LockNotAcquiredException $e) {
|
2020-03-26 11:30:18 +03:00
|
|
|
\OC::$server->getLogger()->debug('Could not cleanup locked chunk "' . $file . '"', ['app' => 'core']);
|
2015-06-05 15:21:17 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|