2017-08-30 11:56:02 +03:00
|
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
|
2019-02-26 16:16:59 +03:00
|
|
|
|
declare(strict_types=1);
|
2019-12-03 21:57:53 +03:00
|
|
|
|
|
2017-08-30 11:56:02 +03:00
|
|
|
|
/**
|
|
|
|
|
* @copyright Copyright (c) 2017 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
|
*
|
|
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2020-04-29 12:57:22 +03:00
|
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2019-12-03 21:57:53 +03:00
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2017-08-30 11:56:02 +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
|
2019-12-03 21:57:53 +03:00
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-08-30 11:56:02 +03:00
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace OC\Core\Controller;
|
|
|
|
|
|
|
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
2019-11-22 22:52:10 +03:00
|
|
|
|
use OCP\AppFramework\OCSController as Controller;
|
2019-02-26 16:16:59 +03:00
|
|
|
|
use OCP\Collaboration\AutoComplete\AutoCompleteEvent;
|
2017-08-30 11:56:02 +03:00
|
|
|
|
use OCP\Collaboration\AutoComplete\IManager;
|
|
|
|
|
use OCP\Collaboration\Collaborators\ISearch;
|
2020-06-16 22:14:42 +03:00
|
|
|
|
use OCP\EventDispatcher\IEventDispatcher;
|
2017-08-30 11:56:02 +03:00
|
|
|
|
use OCP\IRequest;
|
2020-06-24 17:49:16 +03:00
|
|
|
|
use OCP\Share\IShare;
|
2017-08-30 11:56:02 +03:00
|
|
|
|
|
|
|
|
|
class AutoCompleteController extends Controller {
|
|
|
|
|
/** @var ISearch */
|
|
|
|
|
private $collaboratorSearch;
|
|
|
|
|
/** @var IManager */
|
|
|
|
|
private $autoCompleteManager;
|
2020-06-16 22:14:42 +03:00
|
|
|
|
/** @var IEventDispatcher */
|
2019-02-26 16:16:59 +03:00
|
|
|
|
private $dispatcher;
|
2017-08-30 11:56:02 +03:00
|
|
|
|
|
2017-10-25 18:26:50 +03:00
|
|
|
|
public function __construct(
|
2019-02-26 16:16:59 +03:00
|
|
|
|
string $appName,
|
2017-10-25 18:26:50 +03:00
|
|
|
|
IRequest $request,
|
|
|
|
|
ISearch $collaboratorSearch,
|
2019-02-26 16:16:59 +03:00
|
|
|
|
IManager $autoCompleteManager,
|
2020-06-16 22:14:42 +03:00
|
|
|
|
IEventDispatcher $dispatcher
|
2017-10-25 18:26:50 +03:00
|
|
|
|
) {
|
2017-08-30 11:56:02 +03:00
|
|
|
|
parent::__construct($appName, $request);
|
|
|
|
|
|
|
|
|
|
$this->collaboratorSearch = $collaboratorSearch;
|
|
|
|
|
$this->autoCompleteManager = $autoCompleteManager;
|
2019-02-26 16:16:59 +03:00
|
|
|
|
$this->dispatcher = $dispatcher;
|
2017-08-30 11:56:02 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @NoAdminRequired
|
|
|
|
|
*
|
2017-10-25 18:26:50 +03:00
|
|
|
|
* @param string $search
|
2017-08-30 11:56:02 +03:00
|
|
|
|
* @param string $itemType
|
|
|
|
|
* @param string $itemId
|
|
|
|
|
* @param string|null $sorter can be piped, top prio first, e.g.: "commenters|share-recipients"
|
|
|
|
|
* @param array $shareTypes
|
2017-10-27 14:50:38 +03:00
|
|
|
|
* @param int $limit
|
2017-08-30 11:56:02 +03:00
|
|
|
|
* @return DataResponse
|
|
|
|
|
*/
|
2020-06-24 17:49:16 +03:00
|
|
|
|
public function get($search, $itemType, $itemId, $sorter = null, $shareTypes = [IShare::TYPE_USER], $limit = 10): DataResponse {
|
2017-08-30 11:56:02 +03:00
|
|
|
|
// if enumeration/user listings are disabled, we'll receive an empty
|
|
|
|
|
// result from search() – thus nothing else to do here.
|
2019-02-26 16:16:59 +03:00
|
|
|
|
[$results,] = $this->collaboratorSearch->search($search, $shareTypes, false, $limit, 0);
|
|
|
|
|
|
|
|
|
|
$event = new AutoCompleteEvent([
|
|
|
|
|
'search' => $search,
|
|
|
|
|
'results' => $results,
|
|
|
|
|
'itemType' => $itemType,
|
|
|
|
|
'itemId' => $itemId,
|
|
|
|
|
'sorter' => $sorter,
|
|
|
|
|
'shareTypes' => $shareTypes,
|
|
|
|
|
'limit' => $limit,
|
|
|
|
|
]);
|
|
|
|
|
$this->dispatcher->dispatch(IManager::class . '::filterResults', $event);
|
|
|
|
|
$results = $event->getResults();
|
2017-08-30 11:56:02 +03:00
|
|
|
|
|
2017-10-31 16:58:48 +03:00
|
|
|
|
$exactMatches = $results['exact'];
|
2017-08-30 11:56:02 +03:00
|
|
|
|
unset($results['exact']);
|
2017-10-31 16:58:48 +03:00
|
|
|
|
$results = array_merge_recursive($exactMatches, $results);
|
2017-08-30 11:56:02 +03:00
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
|
if ($sorter !== null) {
|
2017-11-28 15:30:51 +03:00
|
|
|
|
$sorters = array_reverse(explode('|', $sorter));
|
|
|
|
|
$this->autoCompleteManager->runSorters($sorters, $results, [
|
|
|
|
|
'itemType' => $itemType,
|
|
|
|
|
'itemId' => $itemId,
|
|
|
|
|
]);
|
|
|
|
|
}
|
2017-08-30 11:56:02 +03:00
|
|
|
|
|
|
|
|
|
// transform to expected format
|
|
|
|
|
$results = $this->prepareResultArray($results);
|
|
|
|
|
|
|
|
|
|
return new DataResponse($results);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-02-26 16:16:59 +03:00
|
|
|
|
protected function prepareResultArray(array $results): array {
|
2017-08-30 11:56:02 +03:00
|
|
|
|
$output = [];
|
|
|
|
|
foreach ($results as $type => $subResult) {
|
|
|
|
|
foreach ($subResult as $result) {
|
|
|
|
|
$output[] = [
|
2019-11-19 18:43:46 +03:00
|
|
|
|
'id' => (string) $result['value']['shareWith'],
|
2017-08-30 11:56:02 +03:00
|
|
|
|
'label' => $result['label'],
|
|
|
|
|
'source' => $type,
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $output;
|
|
|
|
|
}
|
|
|
|
|
}
|