Merge pull request #7935 from owncloud/getpath-shared
Make getPath work for shared files
This commit is contained in:
commit
d811026ec9
|
@ -20,6 +20,7 @@
|
|||
*/
|
||||
|
||||
namespace OC\Files\Cache;
|
||||
|
||||
use OCP\Share_Backend_Collection;
|
||||
|
||||
/**
|
||||
|
@ -50,7 +51,7 @@ class Shared_Cache extends Cache {
|
|||
\OC\Files\Filesystem::initMountPoints($source['fileOwner']);
|
||||
$mount = \OC\Files\Filesystem::getMountByNumericId($source['storage']);
|
||||
if (is_array($mount)) {
|
||||
$fullPath = $mount[key($mount)]->getMountPoint().$source['path'];
|
||||
$fullPath = $mount[key($mount)]->getMountPoint() . $source['path'];
|
||||
list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($fullPath);
|
||||
if ($storage) {
|
||||
$this->files[$target] = $internalPath;
|
||||
|
@ -75,7 +76,7 @@ class Shared_Cache extends Cache {
|
|||
/**
|
||||
* get the stored metadata of a file or folder
|
||||
*
|
||||
* @param string/int $file
|
||||
* @param string /int $file
|
||||
* @return array
|
||||
*/
|
||||
public function get($file) {
|
||||
|
@ -95,8 +96,8 @@ class Shared_Cache extends Cache {
|
|||
} else {
|
||||
$query = \OC_DB::prepare(
|
||||
'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`,'
|
||||
.' `size`, `mtime`, `encrypted`, `unencrypted_size`'
|
||||
.' FROM `*PREFIX*filecache` WHERE `fileid` = ?');
|
||||
. ' `size`, `mtime`, `encrypted`, `unencrypted_size`'
|
||||
. ' FROM `*PREFIX*filecache` WHERE `fileid` = ?');
|
||||
$result = $query->execute(array($file));
|
||||
$data = $result->fetchRow();
|
||||
$data['fileid'] = (int)$data['fileid'];
|
||||
|
@ -288,8 +289,7 @@ class Shared_Cache extends Cache {
|
|||
foreach ($files as $file) {
|
||||
if ($file['mimetype'] === 'httpd/unix-directory') {
|
||||
$exploreDirs[] = ltrim($dir . '/' . $file['name'], '/');
|
||||
}
|
||||
else if (($mimepart && $file['mimepart'] === $mimepart) || ($mimetype && $file['mimetype'] === $mimetype)) {
|
||||
} else if (($mimepart && $file['mimepart'] === $mimepart) || ($mimetype && $file['mimetype'] === $mimetype)) {
|
||||
// usersPath not reliable
|
||||
//$file['path'] = $file['usersPath'];
|
||||
$file['path'] = ltrim($dir . '/' . $file['name'], '/');
|
||||
|
@ -344,8 +344,6 @@ class Shared_Cache extends Cache {
|
|||
if ($row['encrypted'] or ($row['unencrypted_size'] > 0 and $row['mimetype'] === 'httpd/unix-directory')) {
|
||||
$row['encrypted_size'] = $row['size'];
|
||||
$row['size'] = $row['unencrypted_size'];
|
||||
} else {
|
||||
$row['size'] = $row['size'];
|
||||
}
|
||||
$files[] = $row;
|
||||
}
|
||||
|
@ -402,4 +400,48 @@ class Shared_Cache extends Cache {
|
|||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* get the path of a file on this storage by it's id
|
||||
*
|
||||
* @param int $id
|
||||
* @param string $pathEnd (optional) used internally for recursive calls
|
||||
* @return string | null
|
||||
*/
|
||||
public function getPathById($id, $pathEnd = '') {
|
||||
// direct shares are easy
|
||||
if ($path = $this->getShareById($id)) {
|
||||
return $path . $pathEnd;
|
||||
} else {
|
||||
// if the item is a direct share we try and get the path of the parent and append the name of the item to it
|
||||
list($parent, $name) = $this->getParentInfo($id);
|
||||
if ($parent > 0) {
|
||||
return $this->getPathById($parent, '/' . $name . $pathEnd);
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private function getShareById($id) {
|
||||
$item = \OCP\Share::getItemSharedWithBySource('file', $id);
|
||||
if ($item) {
|
||||
return trim($item['file_target'], '/');
|
||||
}
|
||||
$item = \OCP\Share::getItemSharedWithBySource('folder', $id);
|
||||
if ($item) {
|
||||
return trim($item['file_target'], '/');
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
private function getParentInfo($id) {
|
||||
$sql = 'SELECT `parent`, `name` FROM `*PREFIX*filecache` WHERE `fileid` = ?';
|
||||
$query = \OC_DB::prepare($sql);
|
||||
$result = $query->execute(array($id));
|
||||
if ($row = $result->fetchRow()) {
|
||||
return array($row['parent'], $row['name']);
|
||||
} else {
|
||||
return array(-1, '');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -246,4 +246,43 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base {
|
|||
}
|
||||
}
|
||||
|
||||
public function testGetPathByIdDirectShare() {
|
||||
self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
|
||||
\OC\Files\Filesystem::file_put_contents('test.txt', 'foo');
|
||||
$info = \OC\Files\Filesystem::getFileInfo('test.txt');
|
||||
\OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER2, \OCP\PERMISSION_ALL);
|
||||
\OC_Util::tearDownFS();
|
||||
|
||||
self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
|
||||
$this->assertTrue(\OC\Files\Filesystem::file_exists('/Shared/test.txt'));
|
||||
list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/Shared/test.txt');
|
||||
/**
|
||||
* @var \OC\Files\Storage\Shared $sharedStorage
|
||||
*/
|
||||
|
||||
$sharedCache = $sharedStorage->getCache();
|
||||
$this->assertEquals('test.txt', $sharedCache->getPathById($info->getId()));
|
||||
}
|
||||
|
||||
public function testGetPathByIdShareSubFolder() {
|
||||
self::loginHelper(self::TEST_FILES_SHARING_API_USER1);
|
||||
\OC\Files\Filesystem::mkdir('foo');
|
||||
\OC\Files\Filesystem::mkdir('foo/bar');
|
||||
\OC\Files\Filesystem::touch('foo/bar/test.txt', 'bar');
|
||||
$folderInfo = \OC\Files\Filesystem::getFileInfo('foo');
|
||||
$fileInfo = \OC\Files\Filesystem::getFileInfo('foo/bar/test.txt');
|
||||
\OCP\Share::shareItem('folder', $folderInfo->getId(), \OCP\Share::SHARE_TYPE_USER, self::TEST_FILES_SHARING_API_USER2, \OCP\PERMISSION_ALL);
|
||||
\OC_Util::tearDownFS();
|
||||
|
||||
self::loginHelper(self::TEST_FILES_SHARING_API_USER2);
|
||||
$this->assertTrue(\OC\Files\Filesystem::file_exists('/Shared/foo'));
|
||||
list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/Shared/foo');
|
||||
/**
|
||||
* @var \OC\Files\Storage\Shared $sharedStorage
|
||||
*/
|
||||
|
||||
$sharedCache = $sharedStorage->getCache();
|
||||
$this->assertEquals('foo', $sharedCache->getPathById($folderInfo->getId()));
|
||||
$this->assertEquals('foo/bar/test.txt', $sharedCache->getPathById($fileInfo->getId()));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -593,8 +593,26 @@ class Cache {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* get the path of a file on this storage by it's id
|
||||
*
|
||||
* @param int $id
|
||||
* @return string | null
|
||||
*/
|
||||
public function getPathById($id) {
|
||||
$sql = 'SELECT `path` FROM `*PREFIX*filecache` WHERE `fileid` = ? AND `storage` = ?';
|
||||
$result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId()));
|
||||
if ($row = $result->fetchRow()) {
|
||||
return $row['path'];
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* get the storage id of the storage for a file and the internal path of the file
|
||||
* unlike getPathById this does not limit the search to files on this storage and
|
||||
* instead does a global search in the cache table
|
||||
*
|
||||
* @param int $id
|
||||
* @return array, first element holding the storage id, second the path
|
||||
|
|
|
@ -1129,17 +1129,24 @@ class View {
|
|||
* @return string
|
||||
*/
|
||||
public function getPath($id) {
|
||||
list($storage, $internalPath) = Cache\Cache::getById($id);
|
||||
$mounts = Filesystem::getMountByStorageId($storage);
|
||||
$manager = Filesystem::getMountManager();
|
||||
$mounts = $manager->findIn($this->fakeRoot);
|
||||
$mounts[] = $manager->find($this->fakeRoot);
|
||||
// reverse the array so we start with the storage this view is in
|
||||
// which is the most likely to contain the file we're looking for
|
||||
$mounts = array_reverse($mounts);
|
||||
foreach ($mounts as $mount) {
|
||||
/**
|
||||
* @var \OC\Files\Mount $mount
|
||||
* @var \OC\Files\Mount\Mount $mount
|
||||
*/
|
||||
$cache = $mount->getStorage()->getCache();
|
||||
if ($internalPath = $cache->getPathById($id)) {
|
||||
$fullPath = $mount->getMountPoint() . $internalPath;
|
||||
if (!is_null($path = $this->getRelativePath($fullPath))) {
|
||||
return $path;
|
||||
}
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue