diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-07-14 17:10:52 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-07-14 19:12:06 +0200 |
commit | eea5c2ee0a847a80746aef3ecda1687edc962b27 (patch) | |
tree | d9f6fc790ac72bdcc53b056bfe4744cafd0c0055 /lib/private/search | |
parent | 3f093974f9c5d9e739ba8e18098bef05bee1621f (diff) | |
download | nextcloud-server-eea5c2ee0a847a80746aef3ecda1687edc962b27.tar.gz nextcloud-server-eea5c2ee0a847a80746aef3ecda1687edc962b27.zip |
return relative path
Diffstat (limited to 'lib/private/search')
-rw-r--r-- | lib/private/search/result/file.php | 42 |
1 files changed, 15 insertions, 27 deletions
diff --git a/lib/private/search/result/file.php b/lib/private/search/result/file.php index 82c425adb15..38acac48ed7 100644 --- a/lib/private/search/result/file.php +++ b/lib/private/search/result/file.php @@ -65,10 +65,13 @@ class File extends \OCP\Search\Result { /** * Create a new file search result - * @param array $data file data given by provider + * @param FileInfo $data file data given by provider */ public function __construct(FileInfo $data) { - $info = pathinfo($data->getPath()); + + $path = $this->getRelativePath($data->getPath()); + + $info = pathinfo($path); $this->id = $data->getId(); $this->name = $info['basename']; $this->link = \OCP\Util::linkTo( @@ -76,38 +79,23 @@ class File extends \OCP\Search\Result { 'index.php', array('dir' => $info['dirname'], 'file' => $info['basename']) ); - $this->permissions = self::get_permissions($data->getPath()); - $this->path = (strpos($data->getPath(), 'files') === 0) ? substr($data->getPath(), 5) : $data->getPath(); + $this->permissions = $data->getPermissions(); + $this->path = $path; $this->size = $data->getSize(); $this->modified = $data->getMtime(); $this->mime_type = $data->getMimetype(); } /** - * Determine permissions for a given file path + * converts a path relative to the users files folder + * eg /user/files/foo.txt -> /foo.txt * @param string $path - * @return int + * @return string relative path */ - function get_permissions($path) { - // add read permissions - $permissions = \OCP\PERMISSION_READ; - // get directory - $fileinfo = pathinfo($path); - $dir = $fileinfo['dirname'] . '/'; - // add update permissions - if (Filesystem::isUpdatable($dir)) { - $permissions |= \OCP\PERMISSION_UPDATE; - } - // add delete permissions - if (Filesystem::isDeletable($dir)) { - $permissions |= \OCP\PERMISSION_DELETE; - } - // add share permissions - if (Filesystem::isSharable($dir)) { - $permissions |= \OCP\PERMISSION_SHARE; - } - // return - return $permissions; + function getRelativePath ($path) { + $root = \OC::$server->getUserFolder(); + return $root->getRelativePath($path); + } - + } |