2013-04-26 02:00:18 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Storage
|
|
|
|
*
|
|
|
|
* cache storage specific data
|
|
|
|
*
|
|
|
|
* @package OC\Files\Cache
|
|
|
|
*/
|
|
|
|
class Storage {
|
|
|
|
private $storageId;
|
|
|
|
private $numericId;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \OC\Files\Storage\Storage|string $storage
|
|
|
|
*/
|
|
|
|
public function __construct($storage) {
|
|
|
|
if ($storage instanceof \OC\Files\Storage\Storage) {
|
|
|
|
$this->storageId = $storage->getId();
|
|
|
|
} else {
|
|
|
|
$this->storageId = $storage;
|
|
|
|
}
|
|
|
|
if (strlen($this->storageId) > 64) {
|
|
|
|
$this->storageId = md5($this->storageId);
|
|
|
|
}
|
|
|
|
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `numeric_id` FROM `*PREFIX*storages` WHERE `id` = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($this->storageId));
|
2013-04-26 02:00:18 +04:00
|
|
|
if ($row = $result->fetchRow()) {
|
|
|
|
$this->numericId = $row['numeric_id'];
|
|
|
|
} else {
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'INSERT INTO `*PREFIX*storages` (`id`) VALUES(?)';
|
|
|
|
\OC_DB::executeAudited($sql, array($this->storageId));
|
2013-04-26 02:00:18 +04:00
|
|
|
$this->numericId = \OC_DB::insertid('*PREFIX*storages');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getNumericId() {
|
|
|
|
return $this->numericId;
|
|
|
|
}
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-04-26 02:00:18 +04:00
|
|
|
public static function getStorageId($numericId) {
|
2013-10-29 03:26:35 +04:00
|
|
|
|
2013-06-07 16:11:05 +04:00
|
|
|
$sql = 'SELECT `id` FROM `*PREFIX*storages` WHERE `numeric_id` = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($numericId));
|
2013-04-26 02:00:18 +04:00
|
|
|
if ($row = $result->fetchRow()) {
|
|
|
|
return $row['id'];
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2013-10-29 03:26:35 +04:00
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
|
|
|
* @param string $storageId
|
|
|
|
*/
|
2013-10-29 03:26:35 +04:00
|
|
|
public static function exists($storageId) {
|
|
|
|
if (strlen($storageId) > 64) {
|
|
|
|
$storageId = md5($storageId);
|
|
|
|
}
|
|
|
|
$sql = 'SELECT `numeric_id` FROM `*PREFIX*storages` WHERE `id` = ?';
|
|
|
|
$result = \OC_DB::executeAudited($sql, array($storageId));
|
|
|
|
if ($row = $result->fetchRow()) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2014-01-22 02:58:48 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* remove the entry for the storage
|
|
|
|
*
|
|
|
|
* @param string $storageId
|
|
|
|
*/
|
|
|
|
public static function remove($storageId) {
|
2014-02-03 19:36:21 +04:00
|
|
|
$storageCache = new Storage($storageId);
|
|
|
|
$numericId = $storageCache->getNumericId();
|
|
|
|
|
2014-01-22 02:58:48 +04:00
|
|
|
if (strlen($storageId) > 64) {
|
|
|
|
$storageId = md5($storageId);
|
|
|
|
}
|
|
|
|
$sql = 'DELETE FROM `*PREFIX*storages` WHERE `id` = ?';
|
|
|
|
\OC_DB::executeAudited($sql, array($storageId));
|
2014-02-03 19:36:21 +04:00
|
|
|
|
|
|
|
$sql = 'DELETE FROM `*PREFIX*filecache` WHERE `storage` = ?';
|
|
|
|
\OC_DB::executeAudited($sql, array($numericId));
|
2014-01-22 02:58:48 +04:00
|
|
|
}
|
2013-04-26 02:00:18 +04:00
|
|
|
}
|