2020-05-11 11:35:54 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @copyright 2020 Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
*
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
2020-05-11 11:35:54 +03:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
2020-08-24 15:54:25 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2020-05-11 11:35:54 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Core\Controller;
|
|
|
|
|
|
|
|
use OC\Search\SearchComposer;
|
|
|
|
use OC\Search\SearchQuery;
|
2020-09-07 11:47:10 +03:00
|
|
|
use OCP\AppFramework\OCSController;
|
2020-05-11 11:35:54 +03:00
|
|
|
use OCP\AppFramework\Http;
|
2020-09-07 11:47:10 +03:00
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
2020-05-11 11:35:54 +03:00
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\IUserSession;
|
2020-08-05 10:49:18 +03:00
|
|
|
use OCP\Route\IRouter;
|
2020-05-11 11:35:54 +03:00
|
|
|
use OCP\Search\ISearchQuery;
|
2020-08-05 10:49:18 +03:00
|
|
|
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
|
2020-05-11 11:35:54 +03:00
|
|
|
|
2020-09-07 11:47:10 +03:00
|
|
|
class UnifiedSearchController extends OCSController {
|
2020-05-11 11:35:54 +03:00
|
|
|
|
|
|
|
/** @var SearchComposer */
|
|
|
|
private $composer;
|
|
|
|
|
|
|
|
/** @var IUserSession */
|
|
|
|
private $userSession;
|
|
|
|
|
2020-08-05 10:49:18 +03:00
|
|
|
/** @var IRouter */
|
|
|
|
private $router;
|
|
|
|
|
2020-05-11 11:35:54 +03:00
|
|
|
public function __construct(IRequest $request,
|
|
|
|
IUserSession $userSession,
|
2020-08-05 10:49:18 +03:00
|
|
|
SearchComposer $composer,
|
|
|
|
IRouter $router) {
|
2020-05-11 11:35:54 +03:00
|
|
|
parent::__construct('core', $request);
|
|
|
|
|
|
|
|
$this->composer = $composer;
|
|
|
|
$this->userSession = $userSession;
|
2020-08-05 10:49:18 +03:00
|
|
|
$this->router = $router;
|
2020-05-11 11:35:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
* @NoCSRFRequired
|
2020-08-05 10:49:18 +03:00
|
|
|
*
|
2020-08-04 19:15:09 +03:00
|
|
|
* @param string $from the url the user is currently at
|
2020-08-05 10:49:18 +03:00
|
|
|
*
|
2020-09-07 11:47:10 +03:00
|
|
|
* @return DataResponse
|
2020-05-11 11:35:54 +03:00
|
|
|
*/
|
2020-09-07 11:47:10 +03:00
|
|
|
public function getProviders(string $from = ''): DataResponse {
|
2020-08-05 10:49:18 +03:00
|
|
|
[$route, $parameters] = $this->getRouteInformation($from);
|
|
|
|
|
2020-09-15 10:19:53 +03:00
|
|
|
$result = $this->composer->getProviders($route, $parameters);
|
|
|
|
$response = new DataResponse($result);
|
|
|
|
$response->setETag(md5(json_encode($result)));
|
|
|
|
return $response;
|
2020-05-11 11:35:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
* @NoCSRFRequired
|
|
|
|
*
|
|
|
|
* @param string $providerId
|
|
|
|
* @param string $term
|
|
|
|
* @param int|null $sortOrder
|
|
|
|
* @param int|null $limit
|
|
|
|
* @param int|string|null $cursor
|
2020-08-05 10:49:18 +03:00
|
|
|
* @param string $from
|
2020-05-11 11:35:54 +03:00
|
|
|
*
|
2020-09-07 11:47:10 +03:00
|
|
|
* @return DataResponse
|
2020-05-11 11:35:54 +03:00
|
|
|
*/
|
|
|
|
public function search(string $providerId,
|
|
|
|
string $term = '',
|
|
|
|
?int $sortOrder = null,
|
|
|
|
?int $limit = null,
|
2020-08-05 10:49:18 +03:00
|
|
|
$cursor = null,
|
2020-09-07 11:47:10 +03:00
|
|
|
string $from = ''): DataResponse {
|
2020-08-03 13:54:37 +03:00
|
|
|
if (empty(trim($term))) {
|
2020-09-07 11:47:10 +03:00
|
|
|
return new DataResponse(null, Http::STATUS_BAD_REQUEST);
|
2020-05-11 11:35:54 +03:00
|
|
|
}
|
2020-08-05 10:49:18 +03:00
|
|
|
[$route, $routeParameters] = $this->getRouteInformation($from);
|
2020-05-11 11:35:54 +03:00
|
|
|
|
2020-09-07 11:47:10 +03:00
|
|
|
return new DataResponse(
|
2020-05-11 11:35:54 +03:00
|
|
|
$this->composer->search(
|
|
|
|
$this->userSession->getUser(),
|
|
|
|
$providerId,
|
|
|
|
new SearchQuery(
|
|
|
|
$term,
|
|
|
|
$sortOrder ?? ISearchQuery::SORT_DATE_DESC,
|
|
|
|
$limit ?? SearchQuery::LIMIT_DEFAULT,
|
2020-08-05 10:49:18 +03:00
|
|
|
$cursor,
|
|
|
|
$route,
|
|
|
|
$routeParameters
|
2020-05-11 11:35:54 +03:00
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2020-08-05 10:49:18 +03:00
|
|
|
|
|
|
|
protected function getRouteInformation(string $url): array {
|
|
|
|
$routeStr = '';
|
|
|
|
$parameters = [];
|
|
|
|
|
|
|
|
if ($url !== '') {
|
|
|
|
$urlParts = parse_url($url);
|
|
|
|
|
|
|
|
try {
|
|
|
|
$parameters = $this->router->findMatchingRoute($urlParts['path']);
|
|
|
|
|
|
|
|
// contacts.PageController.index => contacts.Page.index
|
|
|
|
$route = $parameters['caller'];
|
|
|
|
if (substr($route[1], -10) === 'Controller') {
|
|
|
|
$route[1] = substr($route[1], 0, -10);
|
|
|
|
}
|
|
|
|
$routeStr = implode('.', $route);
|
|
|
|
|
|
|
|
// cleanup
|
|
|
|
unset($parameters['_route'], $parameters['action'], $parameters['caller']);
|
|
|
|
} catch (ResourceNotFoundException $exception) {
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($urlParts['query'])) {
|
|
|
|
parse_str($urlParts['query'], $queryParameters);
|
|
|
|
$parameters = array_merge($parameters, $queryParameters);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
|
|
|
$routeStr,
|
|
|
|
$parameters,
|
|
|
|
];
|
|
|
|
}
|
2020-05-11 11:35:54 +03:00
|
|
|
}
|