2011-07-29 23:03:53 +04:00
|
|
|
<?php
|
2013-08-23 07:04:06 +04:00
|
|
|
/**
|
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>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2013-08-23 07:04:06 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-08-23 07:04:06 +04:00
|
|
|
*
|
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,
|
2013-08-23 07:04:06 +04:00
|
|
|
* 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.
|
2013-08-23 07:04:06 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-08-23 07:04:06 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-08-23 07:04:06 +04:00
|
|
|
namespace OC\Search\Provider;
|
2020-04-09 12:48:10 +03:00
|
|
|
|
2021-03-19 16:47:30 +03:00
|
|
|
use OC\Files\Search\SearchComparison;
|
|
|
|
use OC\Files\Search\SearchOrder;
|
|
|
|
use OC\Files\Search\SearchQuery;
|
|
|
|
use OCP\Files\FileInfo;
|
|
|
|
use OCP\Files\IRootFolder;
|
|
|
|
use OCP\Files\Search\ISearchComparison;
|
|
|
|
use OCP\Files\Search\ISearchOrder;
|
|
|
|
use OCP\IUserSession;
|
2021-03-11 19:10:24 +03:00
|
|
|
use OCP\Search\PagedProvider;
|
2012-09-28 23:14:59 +04:00
|
|
|
|
2013-08-23 07:04:06 +04:00
|
|
|
/**
|
|
|
|
* Provide search results from the 'files' app
|
2020-06-22 11:57:40 +03:00
|
|
|
* @deprecated 20.0.0
|
2013-08-23 07:04:06 +04:00
|
|
|
*/
|
2021-03-11 19:10:24 +03:00
|
|
|
class File extends PagedProvider {
|
2013-08-26 16:12:06 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Search for files and folders matching the given query
|
2021-03-10 20:46:18 +03:00
|
|
|
*
|
2013-08-26 16:12:06 +04:00
|
|
|
* @param string $query
|
2021-03-10 20:46:18 +03:00
|
|
|
* @param int|null $limit
|
|
|
|
* @param int|null $offset
|
2020-08-04 11:00:27 +03:00
|
|
|
* @return \OCP\Search\Result[]
|
2020-06-22 11:57:40 +03:00
|
|
|
* @deprecated 20.0.0
|
2013-08-26 16:12:06 +04:00
|
|
|
*/
|
2021-03-10 20:46:18 +03:00
|
|
|
public function search($query, int $limit = null, int $offset = null) {
|
2021-03-19 16:47:30 +03:00
|
|
|
/** @var IRootFolder $rootFolder */
|
|
|
|
$rootFolder = \OC::$server->query(IRootFolder::class);
|
|
|
|
/** @var IUserSession $userSession */
|
|
|
|
$userSession = \OC::$server->query(IUserSession::class);
|
|
|
|
$user = $userSession->getUser();
|
|
|
|
if (!$user) {
|
|
|
|
return [];
|
2021-03-10 20:46:18 +03:00
|
|
|
}
|
2021-03-19 16:47:30 +03:00
|
|
|
$userFolder = $rootFolder->getUserFolder($user->getUID());
|
|
|
|
$fileQuery = new SearchQuery(
|
|
|
|
new SearchComparison(ISearchComparison::COMPARE_LIKE, 'name', '%' . $query . '%'),
|
|
|
|
(int)$limit,
|
|
|
|
(int)$offset,
|
|
|
|
[
|
|
|
|
new SearchOrder(ISearchOrder::DIRECTION_DESCENDING, 'mtime'),
|
|
|
|
],
|
|
|
|
$user
|
|
|
|
);
|
|
|
|
$files = $userFolder->search($fileQuery);
|
2020-03-26 11:30:18 +03:00
|
|
|
$results = [];
|
2013-08-26 16:12:06 +04:00
|
|
|
// edit results
|
|
|
|
foreach ($files as $fileData) {
|
2013-09-07 01:42:21 +04:00
|
|
|
// create audio result
|
2021-03-19 16:47:30 +03:00
|
|
|
if ($fileData->getMimePart() === 'audio') {
|
2013-09-07 01:42:21 +04:00
|
|
|
$result = new \OC\Search\Result\Audio($fileData);
|
|
|
|
}
|
|
|
|
// create image result
|
2021-03-19 16:47:30 +03:00
|
|
|
elseif ($fileData->getMimePart() === 'image') {
|
2013-09-07 01:42:21 +04:00
|
|
|
$result = new \OC\Search\Result\Image($fileData);
|
|
|
|
}
|
2013-09-07 01:42:21 +04:00
|
|
|
// create folder result
|
2021-03-19 16:47:30 +03:00
|
|
|
elseif ($fileData->getMimetype() === FileInfo::MIMETYPE_FOLDER) {
|
2013-08-26 16:12:06 +04:00
|
|
|
$result = new \OC\Search\Result\Folder($fileData);
|
|
|
|
}
|
|
|
|
// or create file result
|
2020-04-10 15:19:56 +03:00
|
|
|
else {
|
2013-08-26 16:12:06 +04:00
|
|
|
$result = new \OC\Search\Result\File($fileData);
|
|
|
|
}
|
|
|
|
// add to results
|
|
|
|
$results[] = $result;
|
|
|
|
}
|
|
|
|
// return
|
|
|
|
return $results;
|
|
|
|
}
|
2021-03-11 19:10:24 +03:00
|
|
|
|
|
|
|
public function searchPaged($query, $page, $size) {
|
|
|
|
if ($size === 0) {
|
|
|
|
return $this->search($query);
|
|
|
|
} else {
|
|
|
|
return $this->search($query, $size, ($page - 1) * $size);
|
|
|
|
}
|
|
|
|
}
|
2011-07-29 23:03:53 +04:00
|
|
|
}
|