2012-09-16 18:52:32 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Files\Cache;
|
|
|
|
|
2012-10-26 14:30:25 +04:00
|
|
|
/**
|
|
|
|
* Metadata cache for the filesystem
|
|
|
|
*
|
|
|
|
* don't use this class directly if you need to get metadata, use \OC\Files\Filesystem::getFileInfo instead
|
|
|
|
*/
|
2012-09-16 18:52:32 +04:00
|
|
|
class Cache {
|
2012-10-08 16:58:21 +04:00
|
|
|
const NOT_FOUND = 0;
|
|
|
|
const PARTIAL = 1; //only partial data available, file not cached in the database
|
|
|
|
const SHALLOW = 2; //folder in cache, but not all child files are completely scanned
|
|
|
|
const COMPLETE = 3;
|
|
|
|
|
2012-09-16 18:52:32 +04:00
|
|
|
/**
|
|
|
|
* @var array partial data for the cache
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
private $partial = array();
|
|
|
|
|
2012-11-08 20:59:08 +04:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
private $storageId;
|
|
|
|
|
2012-12-16 02:28:07 +04:00
|
|
|
/**
|
2013-04-26 02:00:18 +04:00
|
|
|
* @var Storage $storageCache
|
2012-12-16 02:28:07 +04:00
|
|
|
*/
|
2013-04-26 02:00:18 +04:00
|
|
|
private $storageCache;
|
2012-12-16 02:28:07 +04:00
|
|
|
|
2013-01-07 04:40:09 +04:00
|
|
|
private $mimetypeIds = array();
|
|
|
|
private $mimetypes = array();
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
/**
|
2012-11-08 20:59:08 +04:00
|
|
|
* @param \OC\Files\Storage\Storage|string $storage
|
2012-09-26 19:52:02 +04:00
|
|
|
*/
|
2012-11-08 20:59:08 +04:00
|
|
|
public function __construct($storage) {
|
2012-11-23 03:17:18 +04:00
|
|
|
if ($storage instanceof \OC\Files\Storage\Storage) {
|
2012-11-08 20:59:08 +04:00
|
|
|
$this->storageId = $storage->getId();
|
2012-11-23 03:17:18 +04:00
|
|
|
} else {
|
2012-11-08 20:59:08 +04:00
|
|
|
$this->storageId = $storage;
|
|
|
|
}
|
2013-02-16 00:49:40 +04:00
|
|
|
if (strlen($this->storageId) > 64) {
|
|
|
|
$this->storageId = md5($this->storageId);
|
|
|
|
}
|
2012-12-16 02:28:07 +04:00
|
|
|
|
2013-04-26 02:00:18 +04:00
|
|
|
$this->storageCache = new Storage($storage);
|
2012-12-16 02:28:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getNumericStorageId() {
|
2013-04-26 02:00:18 +04:00
|
|
|
return $this->storageCache->getNumericId();
|
2012-09-26 19:52:02 +04:00
|
|
|
}
|
2012-09-16 18:52:32 +04:00
|
|
|
|
2013-01-07 04:40:09 +04:00
|
|
|
/**
|
|
|
|
* normalize mimetypes
|
|
|
|
*
|
|
|
|
* @param string $mime
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function getMimetypeId($mime) {
|
|
|
|
if (!isset($this->mimetypeIds[$mime])) {
|
2013-06-07 16:11:05 +04:00
|
|
|
$result = \OC_DB::executeAudited('SELECT `id` FROM `*PREFIX*mimetypes` WHERE `mimetype` = ?', array($mime));
|
2013-01-07 04:40:09 +04:00
|
|
|
if ($row = $result->fetchRow()) {
|
|
|
|
$this->mimetypeIds[$mime] = $row['id'];
|
|
|
|
} else {
|
2013-06-07 16:11:05 +04:00
|
|
|
$result = \OC_DB::executeAudited('INSERT INTO `*PREFIX*mimetypes`(`mimetype`) VALUES(?)', array($mime));
|
2013-01-07 04:40:09 +04:00
|
|
|
$this->mimetypeIds[$mime] = \OC_DB::insertid('*PREFIX*mimetypes');
|
|
|
|
}
|
|
|
|
$this->mimetypes[$this->mimetypeIds[$mime]] = $mime;
|
|
|
|
}
|
|
|
|
return $this->mimetypeIds[$mime];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getMimetype($id) {
|
|
|
|
if (!isset($this->mimetypes[$id])) {
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `mimetype` FROM `*PREFIX*mimetypes` WHERE `id` = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($id));
|
2013-01-07 04:40:09 +04:00
|
|
|
if ($row = $result->fetchRow()) {
|
|
|
|
$this->mimetypes[$id] = $row['mimetype'];
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $this->mimetypes[$id];
|
|
|
|
}
|
|
|
|
|
2012-09-16 18:52:32 +04:00
|
|
|
/**
|
|
|
|
* get the stored metadata of a file or folder
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string/int $file
|
2013-06-10 13:07:41 +04:00
|
|
|
* @return array | false
|
2012-09-16 18:52:32 +04:00
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function get($file) {
|
2012-11-25 19:30:57 +04:00
|
|
|
if (is_string($file) or $file == '') {
|
2013-05-23 22:29:46 +04:00
|
|
|
// normalize file
|
|
|
|
$file = $this->normalize($file);
|
|
|
|
|
2012-09-16 18:52:32 +04:00
|
|
|
$where = 'WHERE `storage` = ? AND `path_hash` = ?';
|
2013-04-26 02:00:18 +04:00
|
|
|
$params = array($this->getNumericStorageId(), md5($file));
|
2012-09-16 18:52:32 +04:00
|
|
|
} else { //file id
|
|
|
|
$where = 'WHERE `fileid` = ?';
|
|
|
|
$params = array($file);
|
|
|
|
}
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`,
|
|
|
|
`storage_mtime`, `encrypted`, `unencrypted_size`, `etag`
|
|
|
|
FROM `*PREFIX*filecache` ' . $where;
|
|
|
|
$result = \OC_DB::executeAudited($sql, $params);
|
2012-09-22 17:43:48 +04:00
|
|
|
$data = $result->fetchRow();
|
2012-09-22 16:40:04 +04:00
|
|
|
|
2013-06-10 13:07:41 +04:00
|
|
|
//FIXME hide this HACK in the next database layer, or just use doctrine and get rid of MDB2 and PDO
|
|
|
|
//PDO returns false, MDB2 returns null, oracle always uses MDB2, so convert null to false
|
|
|
|
if ($data === null) {
|
|
|
|
$data = false;
|
|
|
|
}
|
|
|
|
|
2012-09-22 16:40:04 +04:00
|
|
|
//merge partial data
|
2012-09-26 19:52:02 +04:00
|
|
|
if (!$data and is_string($file)) {
|
|
|
|
if (isset($this->partial[$file])) {
|
|
|
|
$data = $this->partial[$file];
|
2012-09-22 17:43:48 +04:00
|
|
|
}
|
2012-09-26 19:52:02 +04:00
|
|
|
} else {
|
|
|
|
//fix types
|
|
|
|
$data['fileid'] = (int)$data['fileid'];
|
|
|
|
$data['size'] = (int)$data['size'];
|
|
|
|
$data['mtime'] = (int)$data['mtime'];
|
2012-10-03 01:34:45 +04:00
|
|
|
$data['encrypted'] = (bool)$data['encrypted'];
|
2013-04-25 17:20:06 +04:00
|
|
|
$data['unencrypted_size'] = (int)$data['unencrypted_size'];
|
2013-01-22 01:01:22 +04:00
|
|
|
$data['storage'] = $this->storageId;
|
2013-01-07 04:40:09 +04:00
|
|
|
$data['mimetype'] = $this->getMimetype($data['mimetype']);
|
|
|
|
$data['mimepart'] = $this->getMimetype($data['mimepart']);
|
2013-02-10 15:27:35 +04:00
|
|
|
if ($data['storage_mtime'] == 0) {
|
|
|
|
$data['storage_mtime'] = $data['mtime'];
|
|
|
|
}
|
2012-09-22 16:40:04 +04:00
|
|
|
}
|
2012-09-26 19:52:02 +04:00
|
|
|
|
2012-09-22 17:43:48 +04:00
|
|
|
return $data;
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
|
2012-09-23 17:25:03 +04:00
|
|
|
/**
|
|
|
|
* get the metadata of all files stored in $folder
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string $folder
|
2012-09-23 17:25:03 +04:00
|
|
|
* @return array
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function getFolderContents($folder) {
|
|
|
|
$fileId = $this->getId($folder);
|
2012-09-23 17:25:03 +04:00
|
|
|
if ($fileId > -1) {
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`,
|
|
|
|
`storage_mtime`, `encrypted`, `unencrypted_size`, `etag`
|
|
|
|
FROM `*PREFIX*filecache` WHERE `parent` = ? ORDER BY `name` ASC';
|
|
|
|
$result = \OC_DB::executeAudited($sql,array($fileId));
|
2013-01-07 04:40:09 +04:00
|
|
|
$files = $result->fetchAll();
|
|
|
|
foreach ($files as &$file) {
|
|
|
|
$file['mimetype'] = $this->getMimetype($file['mimetype']);
|
|
|
|
$file['mimepart'] = $this->getMimetype($file['mimepart']);
|
2013-02-10 15:27:35 +04:00
|
|
|
if ($file['storage_mtime'] == 0) {
|
|
|
|
$file['storage_mtime'] = $file['mtime'];
|
|
|
|
}
|
2013-01-07 04:40:09 +04:00
|
|
|
}
|
|
|
|
return $files;
|
2012-09-23 17:25:03 +04:00
|
|
|
} else {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-16 18:52:32 +04:00
|
|
|
/**
|
|
|
|
* store meta data for a file or folder
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string $file
|
2012-09-16 18:52:32 +04:00
|
|
|
* @param array $data
|
|
|
|
*
|
|
|
|
* @return int file id
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function put($file, array $data) {
|
|
|
|
if (($id = $this->getId($file)) > -1) {
|
|
|
|
$this->update($id, $data);
|
2012-09-16 18:52:32 +04:00
|
|
|
return $id;
|
|
|
|
} else {
|
2013-05-23 22:29:46 +04:00
|
|
|
// normalize file
|
|
|
|
$file = $this->normalize($file);
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
if (isset($this->partial[$file])) { //add any saved partial data
|
|
|
|
$data = array_merge($this->partial[$file], $data);
|
|
|
|
unset($this->partial[$file]);
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$requiredFields = array('size', 'mtime', 'mimetype');
|
|
|
|
foreach ($requiredFields as $field) {
|
|
|
|
if (!isset($data[$field])) { //data not complete save as partial and return
|
2012-09-26 19:52:02 +04:00
|
|
|
$this->partial[$file] = $data;
|
2012-09-16 18:52:32 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
$data['path'] = $file;
|
|
|
|
$data['parent'] = $this->getParentId($file);
|
|
|
|
$data['name'] = basename($file);
|
2012-10-03 01:34:45 +04:00
|
|
|
$data['encrypted'] = isset($data['encrypted']) ? ((int)$data['encrypted']) : 0;
|
2012-09-16 18:52:32 +04:00
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
list($queryParts, $params) = $this->buildParts($data);
|
2012-09-16 18:52:32 +04:00
|
|
|
$queryParts[] = '`storage`';
|
2013-04-26 02:00:18 +04:00
|
|
|
$params[] = $this->getNumericStorageId();
|
2012-09-16 18:52:32 +04:00
|
|
|
$valuesPlaceholder = array_fill(0, count($queryParts), '?');
|
|
|
|
|
2013-06-12 23:23:34 +04:00
|
|
|
$sql = 'INSERT INTO `*PREFIX*filecache` (' . implode(', ', $queryParts) . ')'
|
|
|
|
. ' VALUES (' . implode(', ', $valuesPlaceholder) . ')';
|
|
|
|
\OC_DB::executeAudited($sql, $params);
|
2012-09-16 18:52:32 +04:00
|
|
|
|
2012-10-03 01:34:45 +04:00
|
|
|
return (int)\OC_DB::insertid('*PREFIX*filecache');
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* update the metadata in the cache
|
|
|
|
*
|
|
|
|
* @param int $id
|
|
|
|
* @param array $data
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function update($id, array $data) {
|
2013-05-25 22:35:12 +04:00
|
|
|
|
|
|
|
if(isset($data['path'])) {
|
|
|
|
// normalize path
|
|
|
|
$data['path'] = $this->normalize($data['path']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(isset($data['name'])) {
|
|
|
|
// normalize path
|
|
|
|
$data['name'] = $this->normalize($data['name']);
|
|
|
|
}
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
list($queryParts, $params) = $this->buildParts($data);
|
2012-09-16 18:52:32 +04:00
|
|
|
$params[] = $id;
|
|
|
|
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'UPDATE `*PREFIX*filecache` SET ' . implode(' = ?, ', $queryParts) . '=? WHERE `fileid` = ?';
|
2013-06-13 01:01:52 +04:00
|
|
|
\OC_DB::executeAudited($sql, $params);
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* extract query parts and params array from data array
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @return array
|
|
|
|
*/
|
2013-01-07 04:40:09 +04:00
|
|
|
function buildParts(array $data) {
|
2013-05-22 03:22:36 +04:00
|
|
|
$fields = array('path', 'parent', 'name', 'mimetype', 'size', 'mtime', 'storage_mtime', 'encrypted', 'unencrypted_size', 'etag');
|
2012-09-16 18:52:32 +04:00
|
|
|
$params = array();
|
|
|
|
$queryParts = array();
|
|
|
|
foreach ($data as $name => $value) {
|
|
|
|
if (array_search($name, $fields) !== false) {
|
|
|
|
if ($name === 'path') {
|
|
|
|
$params[] = md5($value);
|
|
|
|
$queryParts[] = '`path_hash`';
|
|
|
|
} elseif ($name === 'mimetype') {
|
2013-01-07 04:40:09 +04:00
|
|
|
$params[] = $this->getMimetypeId(substr($value, 0, strpos($value, '/')));
|
2012-09-16 18:52:32 +04:00
|
|
|
$queryParts[] = '`mimepart`';
|
2013-01-07 04:40:09 +04:00
|
|
|
$value = $this->getMimetypeId($value);
|
2013-02-10 15:27:35 +04:00
|
|
|
} elseif ($name === 'storage_mtime') {
|
|
|
|
if (!isset($data['mtime'])) {
|
|
|
|
$params[] = $value;
|
|
|
|
$queryParts[] = '`mtime`';
|
|
|
|
}
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
2013-01-07 04:40:09 +04:00
|
|
|
$params[] = $value;
|
|
|
|
$queryParts[] = '`' . $name . '`';
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return array($queryParts, $params);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the file id for a file
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string $file
|
2012-09-16 18:52:32 +04:00
|
|
|
* @return int
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function getId($file) {
|
2013-05-23 22:29:46 +04:00
|
|
|
// normalize file
|
|
|
|
$file = $this->normalize($file);
|
|
|
|
|
2012-09-26 19:52:02 +04:00
|
|
|
$pathHash = md5($file);
|
2012-09-16 18:52:32 +04:00
|
|
|
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `fileid` FROM `*PREFIX*filecache` WHERE `storage` = ? AND `path_hash` = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($this->getNumericStorageId(), $pathHash));
|
2012-09-16 18:52:32 +04:00
|
|
|
if ($row = $result->fetchRow()) {
|
2012-09-22 17:43:48 +04:00
|
|
|
return $row['fileid'];
|
2012-09-16 18:52:32 +04:00
|
|
|
} else {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the id of the parent folder of a file
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string $file
|
2012-09-22 17:48:39 +04:00
|
|
|
* @return int
|
2012-09-16 18:52:32 +04:00
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function getParentId($file) {
|
2012-10-03 13:23:33 +04:00
|
|
|
if ($file === '') {
|
2012-09-16 18:52:32 +04:00
|
|
|
return -1;
|
|
|
|
} else {
|
2012-10-03 13:23:33 +04:00
|
|
|
$parent = dirname($file);
|
|
|
|
if ($parent === '.') {
|
|
|
|
$parent = '';
|
|
|
|
}
|
|
|
|
return $this->getId($parent);
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* check if a file is available in the cache
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string $file
|
2012-09-16 18:52:32 +04:00
|
|
|
* @return bool
|
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function inCache($file) {
|
|
|
|
return $this->getId($file) != -1;
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* remove a file or folder from the cache
|
|
|
|
*
|
2012-09-26 19:52:02 +04:00
|
|
|
* @param string $file
|
2012-09-16 18:52:32 +04:00
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function remove($file) {
|
2012-10-27 20:05:40 +04:00
|
|
|
$entry = $this->get($file);
|
|
|
|
if ($entry['mimetype'] === 'httpd/unix-directory') {
|
|
|
|
$children = $this->getFolderContents($file);
|
2012-10-28 14:26:31 +04:00
|
|
|
foreach ($children as $child) {
|
2012-10-27 20:05:40 +04:00
|
|
|
$this->remove($child['path']);
|
|
|
|
}
|
|
|
|
}
|
2013-06-07 16:11:05 +04:00
|
|
|
|
|
|
|
$sql = 'DELETE FROM `*PREFIX*filecache` WHERE `fileid` = ?';
|
|
|
|
\OC_DB::executeAudited($sql, array($entry['fileid']));
|
2013-02-28 20:04:50 +04:00
|
|
|
|
|
|
|
$permissionsCache = new Permissions($this->storageId);
|
|
|
|
$permissionsCache->remove($entry['fileid']);
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
|
|
|
|
2012-11-03 01:25:33 +04:00
|
|
|
/**
|
|
|
|
* Move a file or folder in the cache
|
|
|
|
*
|
|
|
|
* @param string $source
|
|
|
|
* @param string $target
|
|
|
|
*/
|
|
|
|
public function move($source, $target) {
|
2013-05-25 16:56:00 +04:00
|
|
|
// normalize source and target
|
|
|
|
$source = $this->normalize($source);
|
|
|
|
$target = $this->normalize($target);
|
|
|
|
|
2013-04-19 17:03:59 +04:00
|
|
|
$sourceData = $this->get($source);
|
|
|
|
$sourceId = $sourceData['fileid'];
|
2012-11-03 01:25:33 +04:00
|
|
|
$newParentId = $this->getParentId($target);
|
|
|
|
|
2013-04-19 17:03:59 +04:00
|
|
|
if ($sourceData['mimetype'] === 'httpd/unix-directory') {
|
|
|
|
//find all child entries
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `path`, `fileid` FROM `*PREFIX*filecache` WHERE `storage` = ? AND `path` LIKE ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($this->getNumericStorageId(), $source . '/%'));
|
2013-04-19 17:03:59 +04:00
|
|
|
$childEntries = $result->fetchAll();
|
|
|
|
$sourceLength = strlen($source);
|
|
|
|
$query = \OC_DB::prepare('UPDATE `*PREFIX*filecache` SET `path` = ?, `path_hash` = ? WHERE `fileid` = ?');
|
|
|
|
|
|
|
|
foreach ($childEntries as $child) {
|
|
|
|
$targetPath = $target . substr($child['path'], $sourceLength);
|
2013-06-07 16:11:05 +04:00
|
|
|
\OC_DB::executeAudited($query, array($targetPath, md5($targetPath), $child['fileid']));
|
2013-04-19 17:03:59 +04:00
|
|
|
}
|
2012-11-03 01:25:33 +04:00
|
|
|
}
|
|
|
|
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'UPDATE `*PREFIX*filecache` SET `path` = ?, `path_hash` = ?, `name` = ?, `parent` =? WHERE `fileid` = ?';
|
|
|
|
\OC_DB::executeAudited($sql, array($target, md5($target), basename($target), $newParentId, $sourceId));
|
2012-11-03 01:25:33 +04:00
|
|
|
}
|
|
|
|
|
2012-09-16 18:52:32 +04:00
|
|
|
/**
|
2012-09-26 19:52:02 +04:00
|
|
|
* remove all entries for files that are stored on the storage from the cache
|
2012-09-16 18:52:32 +04:00
|
|
|
*/
|
2012-09-26 19:52:02 +04:00
|
|
|
public function clear() {
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'DELETE FROM `*PREFIX*filecache` WHERE `storage` = ?';
|
|
|
|
\OC_DB::executeAudited($sql, array($this->getNumericStorageId()));
|
2012-12-16 02:28:07 +04:00
|
|
|
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'DELETE FROM `*PREFIX*storages` WHERE `id` = ?';
|
|
|
|
\OC_DB::executeAudited($sql, array($this->storageId));
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|
2012-10-08 16:58:21 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $file
|
|
|
|
*
|
|
|
|
* @return int, Cache::NOT_FOUND, Cache::PARTIAL, Cache::SHALLOW or Cache::COMPLETE
|
|
|
|
*/
|
|
|
|
public function getStatus($file) {
|
2013-05-25 16:56:00 +04:00
|
|
|
// normalize file
|
|
|
|
$file = $this->normalize($file);
|
|
|
|
|
2012-10-08 16:58:21 +04:00
|
|
|
$pathHash = md5($file);
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `size` FROM `*PREFIX*filecache` WHERE `storage` = ? AND `path_hash` = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($this->getNumericStorageId(), $pathHash));
|
2012-10-08 16:58:21 +04:00
|
|
|
if ($row = $result->fetchRow()) {
|
|
|
|
if ((int)$row['size'] === -1) {
|
|
|
|
return self::SHALLOW;
|
|
|
|
} else {
|
|
|
|
return self::COMPLETE;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (isset($this->partial[$file])) {
|
|
|
|
return self::PARTIAL;
|
|
|
|
} else {
|
|
|
|
return self::NOT_FOUND;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-10-26 15:23:15 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* search for files matching $pattern
|
|
|
|
*
|
|
|
|
* @param string $pattern
|
|
|
|
* @return array of file data
|
|
|
|
*/
|
|
|
|
public function search($pattern) {
|
2013-05-25 22:35:12 +04:00
|
|
|
|
|
|
|
// normalize pattern
|
|
|
|
$pattern = $this->normalize($pattern);
|
|
|
|
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`, `encrypted`, `unencrypted_size`, `etag`
|
|
|
|
FROM `*PREFIX*filecache` WHERE `name` LIKE ? AND `storage` = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($pattern, $this->getNumericStorageId()));
|
2012-10-26 15:23:15 +04:00
|
|
|
$files = array();
|
|
|
|
while ($row = $result->fetchRow()) {
|
2013-01-07 04:40:09 +04:00
|
|
|
$row['mimetype'] = $this->getMimetype($row['mimetype']);
|
|
|
|
$row['mimepart'] = $this->getMimetype($row['mimepart']);
|
2012-10-26 15:23:15 +04:00
|
|
|
$files[] = $row;
|
|
|
|
}
|
|
|
|
return $files;
|
|
|
|
}
|
2012-10-27 12:01:20 +04:00
|
|
|
|
2012-10-27 12:34:25 +04:00
|
|
|
/**
|
|
|
|
* search for files by mimetype
|
|
|
|
*
|
2012-11-03 01:25:33 +04:00
|
|
|
* @param string $mimetype
|
2012-10-27 12:34:25 +04:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function searchByMime($mimetype) {
|
|
|
|
if (strpos($mimetype, '/')) {
|
|
|
|
$where = '`mimetype` = ?';
|
|
|
|
} else {
|
|
|
|
$where = '`mimepart` = ?';
|
|
|
|
}
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`, `encrypted`, `unencrypted_size`, `etag`
|
|
|
|
FROM `*PREFIX*filecache` WHERE ' . $where . ' AND `storage` = ?';
|
2013-01-07 04:40:09 +04:00
|
|
|
$mimetype = $this->getMimetypeId($mimetype);
|
2013-06-07 16:11:05 +04:00
|
|
|
$result = \OC_DB::executeAudited($sql, array($mimetype, $this->getNumericStorageId()));
|
2013-02-03 14:06:26 +04:00
|
|
|
$files = array();
|
|
|
|
while ($row = $result->fetchRow()) {
|
|
|
|
$row['mimetype'] = $this->getMimetype($row['mimetype']);
|
|
|
|
$row['mimepart'] = $this->getMimetype($row['mimepart']);
|
|
|
|
$files[] = $row;
|
|
|
|
}
|
|
|
|
return $files;
|
2012-10-27 12:34:25 +04:00
|
|
|
}
|
|
|
|
|
2012-11-08 21:10:54 +04:00
|
|
|
/**
|
|
|
|
* update the folder size and the size of all parent folders
|
|
|
|
*
|
|
|
|
* @param $path
|
|
|
|
*/
|
|
|
|
public function correctFolderSize($path) {
|
|
|
|
$this->calculateFolderSize($path);
|
|
|
|
if ($path !== '') {
|
|
|
|
$parent = dirname($path);
|
2013-04-29 17:43:48 +04:00
|
|
|
if ($parent === '.' or $parent === '/') {
|
2012-11-08 21:10:54 +04:00
|
|
|
$parent = '';
|
|
|
|
}
|
|
|
|
$this->correctFolderSize($parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-27 19:02:05 +04:00
|
|
|
/**
|
|
|
|
* get the size of a folder and set it in the cache
|
|
|
|
*
|
|
|
|
* @param string $path
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public function calculateFolderSize($path) {
|
|
|
|
$id = $this->getId($path);
|
2012-11-23 03:17:18 +04:00
|
|
|
if ($id === -1) {
|
2012-11-08 21:07:30 +04:00
|
|
|
return 0;
|
|
|
|
}
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `size` FROM `*PREFIX*filecache` WHERE `parent` = ? AND `storage` = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId()));
|
2012-10-27 19:02:05 +04:00
|
|
|
$totalSize = 0;
|
2012-10-28 14:26:31 +04:00
|
|
|
$hasChilds = 0;
|
2012-10-27 19:02:05 +04:00
|
|
|
while ($row = $result->fetchRow()) {
|
2012-10-28 14:26:31 +04:00
|
|
|
$hasChilds = true;
|
2012-10-27 19:02:05 +04:00
|
|
|
$size = (int)$row['size'];
|
|
|
|
if ($size === -1) {
|
|
|
|
$totalSize = -1;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
$totalSize += $size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-28 14:26:31 +04:00
|
|
|
if ($hasChilds) {
|
|
|
|
$this->update($id, array('size' => $totalSize));
|
|
|
|
}
|
2012-10-27 19:02:05 +04:00
|
|
|
return $totalSize;
|
|
|
|
}
|
|
|
|
|
2012-10-27 12:01:20 +04:00
|
|
|
/**
|
|
|
|
* get all file ids on the files on the storage
|
|
|
|
*
|
|
|
|
* @return int[]
|
|
|
|
*/
|
|
|
|
public function getAll() {
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `fileid` FROM `*PREFIX*filecache` WHERE `storage` = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($this->getNumericStorageId()));
|
2012-10-27 12:01:20 +04:00
|
|
|
$ids = array();
|
|
|
|
while ($row = $result->fetchRow()) {
|
|
|
|
$ids[] = $row['fileid'];
|
|
|
|
}
|
|
|
|
return $ids;
|
|
|
|
}
|
2012-11-22 02:02:43 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* find a folder in the cache which has not been fully scanned
|
|
|
|
*
|
|
|
|
* If multiply incomplete folders are in the cache, the one with the highest id will be returned,
|
|
|
|
* use the one with the highest id gives the best result with the background scanner, since that is most
|
|
|
|
* likely the folder where we stopped scanning previously
|
|
|
|
*
|
|
|
|
* @return string|bool the path of the folder or false when no folder matched
|
|
|
|
*/
|
2012-11-23 03:17:18 +04:00
|
|
|
public function getIncomplete() {
|
2013-02-11 20:44:02 +04:00
|
|
|
$query = \OC_DB::prepare('SELECT `path` FROM `*PREFIX*filecache`'
|
2013-04-29 14:25:27 +04:00
|
|
|
. ' WHERE `storage` = ? AND `size` = -1 ORDER BY `fileid` DESC',1);
|
2013-06-07 16:11:05 +04:00
|
|
|
$result = \OC_DB::executeAudited($query, array($this->getNumericStorageId()));
|
2013-02-15 00:59:24 +04:00
|
|
|
if ($row = $result->fetchRow()) {
|
2012-11-22 02:02:43 +04:00
|
|
|
return $row['path'];
|
2012-11-23 03:17:18 +04:00
|
|
|
} else {
|
2012-11-22 02:02:43 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2013-01-27 02:59:29 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get the storage id of the storage for a file and the internal path of the file
|
|
|
|
*
|
2013-04-26 02:00:18 +04:00
|
|
|
* @param int $id
|
2013-01-27 02:59:29 +04:00
|
|
|
* @return array, first element holding the storage id, second the path
|
|
|
|
*/
|
|
|
|
static public function getById($id) {
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `storage`, `path` FROM `*PREFIX*filecache` WHERE `fileid` = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($id));
|
2013-01-27 02:59:29 +04:00
|
|
|
if ($row = $result->fetchRow()) {
|
|
|
|
$numericId = $row['storage'];
|
|
|
|
$path = $row['path'];
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2013-04-26 02:00:18 +04:00
|
|
|
if ($id = Storage::getStorageId($numericId)) {
|
|
|
|
return array($id, $path);
|
2013-01-27 02:59:29 +04:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2013-05-23 22:29:46 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* normalize the given path
|
|
|
|
* @param $path
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function normalize($path) {
|
|
|
|
|
2013-05-24 22:36:20 +04:00
|
|
|
return \OC_Util::normalizeUnicode($path);
|
2013-05-23 22:29:46 +04:00
|
|
|
}
|
2012-09-16 18:52:32 +04:00
|
|
|
}
|