2023-09-13 04:43:45 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
/**
|
2023-10-11 15:17:49 -04:00
|
|
|
* @copyright Copyright (c) 2023 Stephan Orbaugh <stephan.orbaugh@nextcloud.com>
|
2023-09-13 04:43:45 -04:00
|
|
|
*
|
|
|
|
|
* @author Stephan Orbaugh <stephan.orbaugh@nextcloud.com>
|
2023-11-21 12:16:01 -05:00
|
|
|
* @author Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
|
2023-09-13 04:43:45 -04: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
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
namespace OCA\Settings\Search;
|
|
|
|
|
|
|
|
|
|
use OCP\IL10N;
|
|
|
|
|
use OCP\IUser;
|
|
|
|
|
use OCP\Search\IProvider;
|
|
|
|
|
use OCP\Search\ISearchQuery;
|
|
|
|
|
use OCP\Search\SearchResult;
|
|
|
|
|
|
|
|
|
|
class UserSearch implements IProvider {
|
2023-10-11 06:23:14 -04:00
|
|
|
public function __construct(
|
2023-11-21 12:16:01 -05:00
|
|
|
private IL10N $l,
|
|
|
|
|
) {
|
2023-09-13 04:43:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getId(): string {
|
|
|
|
|
return 'users';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getName(): string {
|
|
|
|
|
return $this->l->t('Users');
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-21 12:16:01 -05:00
|
|
|
public function getOrder(string $route, array $routeParameters): ?int {
|
|
|
|
|
return $route === 'settings.Users.usersList'
|
|
|
|
|
? 300
|
|
|
|
|
: null;
|
2023-09-13 04:43:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function search(IUser $user, ISearchQuery $query): SearchResult {
|
2023-11-21 12:16:01 -05:00
|
|
|
return SearchResult::complete($this->l->t('Users'), []);
|
2023-09-13 04:43:45 -04:00
|
|
|
}
|
|
|
|
|
}
|