nextcloud/lib/files/cache/upgrade.php

158 lines
4.2 KiB
PHP
Raw Normal View History

<?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;
class Upgrade {
2013-01-03 03:26:13 +04:00
/**
* @var Legacy $legacy
*/
private $legacy;
2013-01-03 03:26:13 +04:00
private $permissionsCaches = array();
2013-01-03 03:26:13 +04:00
private $numericIds = array();
2013-01-03 03:26:13 +04:00
private $mimeTypeIds = array();
/**
* @param Legacy $legacy
*/
public function __construct($legacy) {
$this->legacy = $legacy;
}
/**
* Preform a shallow upgrade
*
* @param string $path
* @param int $mode
*/
function upgradePath($path, $mode = Scanner::SCAN_RECURSIVE) {
if (!$this->legacy->hasItems()) {
return;
}
2013-01-03 03:26:13 +04:00
\OC_Hook::emit('\OC\Files\Cache\Upgrade', 'migrate_path', $path);
2013-01-03 03:26:13 +04:00
if ($row = $this->legacy->get($path)) {
$data = $this->getNewData($row);
$this->insert($data);
2013-01-03 03:26:13 +04:00
$children = $this->legacy->getChildren($data['id']);
foreach ($children as $child) {
if ($mode == Scanner::SCAN_SHALLOW) {
$childData = $this->getNewData($child);
\OC_Hook::emit('\OC\Files\Cache\Upgrade', 'migrate_path', $child['path']);
$this->insert($childData);
} else {
$this->upgradePath($child['path']);
}
}
2013-01-03 03:26:13 +04:00
}
}
2013-01-03 03:26:13 +04:00
/**
* @param array $data the data for the new cache
*/
function insert($data) {
$insertQuery = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache`
( `fileid`, `storage`, `path`, `path_hash`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`, `encrypted` )
VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)');
2013-01-03 03:26:13 +04:00
$insertQuery->execute(array($data['id'], $data['storage'], $data['path'], $data['path_hash'], $data['parent'], $data['name'],
$data['mimetype'], $data['mimepart'], $data['size'], $data['mtime'], $data['encrypted']));
2013-01-03 03:26:13 +04:00
$permissionsCache = $this->getPermissionsCache($data['storage_object']);
$permissionsCache->set($data['id'], $data['user'], $data['permissions']);
}
/**
* get the new data array from the old one
*
* @param array $data the data from the old cache
* @return array
*/
function getNewData($data) {
$newData = $data;
list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($data['path']);
/**
* @var \OC\Files\Storage\Storage $storage
* @var string $internalPath;
*/
$newData['path_hash'] = md5($internalPath);
$newData['path'] = $internalPath;
$newData['storage'] = $this->getNumericId($storage);
$newData['parent'] = ($internalPath === '') ? -1 : $data['parent'];
$newData['permissions'] = ($data['writable']) ? \OCP\PERMISSION_ALL : \OCP\PERMISSION_READ;
$newData['storage_object'] = $storage;
$newData['mimetype'] = $this->getMimetypeId($newData['mimetype'], $storage);
$newData['mimepart'] = $this->getMimetypeId($newData['mimepart'], $storage);
return $newData;
}
/**
* @param \OC\Files\Storage\Storage $storage
* @return Permissions
*/
2013-01-03 03:26:13 +04:00
function getPermissionsCache($storage) {
$storageId = $storage->getId();
2013-01-03 03:26:13 +04:00
if (!isset($this->permissionsCaches[$storageId])) {
$this->permissionsCaches[$storageId] = $storage->getPermissionsCache();
}
2013-01-03 03:26:13 +04:00
return $this->permissionsCaches[$storageId];
}
/**
* get the numeric storage id
*
* @param \OC\Files\Storage\Storage $storage
* @return int
*/
2013-01-03 03:26:13 +04:00
function getNumericId($storage) {
$storageId = $storage->getId();
2013-01-03 03:26:13 +04:00
if (!isset($this->numericIds[$storageId])) {
$cache = $storage->getCache();
$this->numericIds[$storageId] = $cache->getNumericStorageId();
}
return $this->numericIds[$storageId];
}
/**
* @param string $mimetype
* @param \OC\Files\Storage\Storage $storage
* @return int
*/
function getMimetypeId($mimetype, $storage) {
if (!isset($this->mimeTypeIds[$mimetype])) {
$cache = new Cache($storage);
2013-01-03 03:26:13 +04:00
$this->mimeTypeIds[$mimetype] = $cache->getMimetypeId($mimetype);
}
2013-01-03 03:26:13 +04:00
return $this->mimeTypeIds[$mimetype];
}
/**
* check if a cache upgrade is required for $user
*
* @param string $user
* @return bool
*/
static function needUpgrade($user) {
$cacheVersion = (int)\OCP\Config::getUserValue($user, 'files', 'cache_version', 4);
return $cacheVersion < 5;
}
/**
* mark the filecache as upgrade
*
* @param string $user
*/
static function upgradeDone($user) {
\OCP\Config::setUserValue($user, 'files', 'cache_version', 5);
}
}