2016-01-19 14:04:34 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-19 14:04:34 +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/>
|
2016-01-19 14:04:34 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-10 15:38:48 +03:00
|
|
|
namespace OC\Files\Cache;
|
2016-01-19 14:04:34 +03:00
|
|
|
|
2016-02-04 18:41:27 +03:00
|
|
|
use OCP\Constants;
|
2016-01-19 14:04:34 +03:00
|
|
|
use OCP\Files\Cache\ICache;
|
2021-03-08 21:27:39 +03:00
|
|
|
use OCP\Files\Cache\ICacheEntry;
|
2017-02-02 20:20:08 +03:00
|
|
|
use OCP\Files\Search\ISearchQuery;
|
2016-01-19 14:04:34 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Storage placeholder to represent a missing precondition, storage unavailable
|
|
|
|
*/
|
|
|
|
class FailedCache implements ICache {
|
2016-03-10 15:38:48 +03:00
|
|
|
/** @var bool whether to show the failed storage in the ui */
|
2016-03-09 18:44:57 +03:00
|
|
|
private $visible;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* FailedCache constructor.
|
|
|
|
*
|
|
|
|
* @param bool $visible
|
|
|
|
*/
|
|
|
|
public function __construct($visible = true) {
|
|
|
|
$this->visible = $visible;
|
|
|
|
}
|
|
|
|
|
2016-01-19 14:04:34 +03:00
|
|
|
|
|
|
|
public function getNumericStorageId() {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get($file) {
|
|
|
|
if ($file === '') {
|
|
|
|
return new CacheEntry([
|
|
|
|
'fileid' => -1,
|
|
|
|
'size' => 0,
|
|
|
|
'mimetype' => 'httpd/unix-directory',
|
|
|
|
'mimepart' => 'httpd',
|
2016-03-09 18:44:57 +03:00
|
|
|
'permissions' => $this->visible ? Constants::PERMISSION_READ : 0,
|
2016-01-19 14:04:34 +03:00
|
|
|
'mtime' => time()
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getFolderContents($folder) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getFolderContentsById($fileId) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function put($file, array $data) {
|
|
|
|
}
|
|
|
|
|
2016-02-03 20:29:24 +03:00
|
|
|
public function insert($file, array $data) {
|
|
|
|
}
|
|
|
|
|
2016-01-19 14:04:34 +03:00
|
|
|
public function update($id, array $data) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getId($file) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getParentId($file) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function inCache($file) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function remove($file) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function move($source, $target) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function moveFromCache(ICache $sourceCache, $sourcePath, $targetPath) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function clear() {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getStatus($file) {
|
|
|
|
return ICache::NOT_FOUND;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function search($pattern) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function searchByMime($mimetype) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2017-02-02 20:20:08 +03:00
|
|
|
public function searchQuery(ISearchQuery $query) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2016-01-19 14:04:34 +03:00
|
|
|
public function getAll() {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getIncomplete() {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPathById($id) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function normalize($path) {
|
|
|
|
return $path;
|
|
|
|
}
|
2021-03-08 21:27:39 +03:00
|
|
|
|
|
|
|
public function copyFromCache(ICache $sourceCache, ICacheEntry $sourceEntry, string $targetPath): int {
|
|
|
|
throw new \Exception("Invalid cache");
|
|
|
|
}
|
2016-01-19 14:04:34 +03:00
|
|
|
}
|