2011-07-29 23:03:53 +04:00
|
|
|
<?php
|
2013-08-23 07:04:06 +04:00
|
|
|
/**
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
2011-07-29 23:03:53 +04:00
|
|
|
|
2013-08-23 07:04:06 +04:00
|
|
|
namespace OC\Search\Provider;
|
2014-06-05 21:35:24 +04:00
|
|
|
use OC\Files\Filesystem;
|
2012-09-28 23:14:59 +04:00
|
|
|
|
2013-08-23 07:04:06 +04:00
|
|
|
/**
|
|
|
|
* Provide search results from the 'files' app
|
|
|
|
*/
|
2014-06-06 03:17:02 +04:00
|
|
|
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
|
2014-06-06 03:17:02 +04:00
|
|
|
* @return \OCP\Search\Result
|
2013-08-26 16:12:06 +04:00
|
|
|
*/
|
|
|
|
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
|
|
|
}
|