nextcloud/lib/private/Search/Provider/File.php

78 lines
2.2 KiB
PHP
Raw Normal View History

2011-07-29 23:03:53 +04:00
<?php
/**
2016-07-21 18:07:57 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
2015-03-26 13:44:34 +03:00
* @author Andrew Brown <andrew@casabrown.com>
* @author Bart Visscher <bartv@thisnet.nl>
* @author Jakob Sack <mail@jakobsack.de>
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Roeland Jago Douma <roeland@famdouma.nl>
*
2015-03-26 13:44:34 +03:00
* @license AGPL-3.0
*
2015-03-26 13:44:34 +03:00
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2015-03-26 13:44:34 +03:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
2015-03-26 13:44:34 +03:00
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OC\Search\Provider;
2014-06-05 21:35:24 +04:00
use OC\Files\Filesystem;
/**
* Provide search results from the 'files' app
*/
class File extends \OCP\Search\Provider {
2013-08-26 16:12:06 +04:00
/**
* Search for files and folders matching the given query
* @param string $query
* @return \OCP\Search\Result
2013-08-26 16:12:06 +04:00
*/
public function search($query) {
2014-06-05 21:35:24 +04:00
$files = Filesystem::search($query);
2013-08-26 16:12:06 +04:00
$results = array();
// edit results
foreach ($files as $fileData) {
// skip versions
if (strpos($fileData['path'], '_versions') === 0) {
continue;
}
// skip top-level folder
if ($fileData['name'] === 'files' && $fileData['parent'] === -1) {
continue;
}
2013-09-07 01:42:21 +04:00
// create audio result
2013-09-07 01:42:21 +04:00
if($fileData['mimepart'] === 'audio'){
$result = new \OC\Search\Result\Audio($fileData);
}
// create image result
elseif($fileData['mimepart'] === 'image'){
$result = new \OC\Search\Result\Image($fileData);
}
2013-09-07 01:42:21 +04:00
// create folder result
2013-09-07 01:42:21 +04:00
elseif($fileData['mimetype'] === 'httpd/unix-directory'){
2013-08-26 16:12:06 +04:00
$result = new \OC\Search\Result\Folder($fileData);
}
// or create file result
else{
$result = new \OC\Search\Result\File($fileData);
}
// add to results
$results[] = $result;
}
// return
return $results;
}
2011-07-29 23:03:53 +04:00
}