nextcloud/lib/private/search/result/file.php

112 lines
2.5 KiB
PHP
Raw Normal View History

<?php
/**
* ownCloud
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OC\Search\Result;
2014-06-05 21:35:24 +04:00
use \OC\Files\Filesystem;
/**
* A found file
*/
class File extends \OCP\Search\Result {
2013-08-26 16:12:06 +04:00
/**
* Type name; translated in templates
* @var string
*/
public $type = 'file';
2013-08-26 16:12:06 +04:00
/**
* Path to file
* @var string
*/
public $path;
2013-08-26 16:12:06 +04:00
/**
* Size, in bytes
* @var int
*/
public $size;
2013-08-26 16:12:06 +04:00
/**
* Date modified, in human readable form
* @var string
*/
public $modified;
2013-08-26 16:12:06 +04:00
/**
* File mime type
* @var string
*/
public $mime_type;
2013-08-26 16:12:06 +04:00
/**
* File permissions:
*
* @var string
*/
public $permissions;
2013-08-26 16:12:06 +04:00
/**
* Create a new file search result
* @param array $data file data given by provider
*/
public function __construct(array $data = null) {
$info = pathinfo($data['path']);
$this->id = $data['fileid'];
$this->name = $info['basename'];
$this->link = \OCP\Util::linkTo(
'files',
'index.php',
array('dir' => $info['dirname'], 'file' => $info['basename'])
);
$this->permissions = self::get_permissions($data['path']);
$this->path = (strpos($data['path'], 'files') === 0) ? substr($data['path'], 5) : $data['path'];
$this->size = $data['size'];
$this->modified = $data['mtime'];
$this->mime_type = $data['mimetype'];
}
/**
* Determine permissions for a given file path
* @param string $path
* @return int
*/
function get_permissions($path) {
// add read permissions
$permissions = \OCP\PERMISSION_READ;
// get directory
$fileinfo = pathinfo($path);
$dir = $fileinfo['dirname'] . '/';
// add update permissions
2014-06-05 21:35:24 +04:00
if (Filesystem::isUpdatable($dir)) {
2013-08-26 16:12:06 +04:00
$permissions |= \OCP\PERMISSION_UPDATE;
}
// add delete permissions
2014-06-05 21:35:24 +04:00
if (Filesystem::isDeletable($dir)) {
2013-08-26 16:12:06 +04:00
$permissions |= \OCP\PERMISSION_DELETE;
}
// add share permissions
2014-06-05 21:35:24 +04:00
if (Filesystem::isSharable($dir)) {
2013-08-26 16:12:06 +04:00
$permissions |= \OCP\PERMISSION_SHARE;
}
// return
return $permissions;
}
}