2020-08-03 18:03:06 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2020-08-24 15:54:25 +03:00
|
|
|
|
2020-08-03 18:03:06 +03:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2020 Joas Schilling <coding@schilljs.com>
|
|
|
|
*
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
2020-12-16 16:54:15 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2020-08-24 15:54:25 +03:00
|
|
|
*
|
2020-08-03 18:03:06 +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-08-03 18:03:06 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Settings\Search;
|
|
|
|
|
|
|
|
use OCP\IGroupManager;
|
|
|
|
use OCP\IL10N;
|
|
|
|
use OCP\IURLGenerator;
|
|
|
|
use OCP\IUser;
|
|
|
|
use OCP\Search\IProvider;
|
|
|
|
use OCP\Search\ISearchQuery;
|
|
|
|
use OCP\Search\SearchResult;
|
2020-08-04 11:00:27 +03:00
|
|
|
use OCP\Search\SearchResultEntry;
|
2020-10-29 00:51:49 +03:00
|
|
|
use OCP\Settings\IIconSection;
|
2020-08-03 18:03:06 +03:00
|
|
|
use OCP\Settings\IManager;
|
|
|
|
|
|
|
|
class SectionSearch implements IProvider {
|
|
|
|
|
|
|
|
/** @var IManager */
|
|
|
|
protected $settingsManager;
|
2020-08-04 11:00:27 +03:00
|
|
|
|
2020-08-03 18:03:06 +03:00
|
|
|
/** @var IGroupManager */
|
|
|
|
protected $groupManager;
|
2020-08-04 11:00:27 +03:00
|
|
|
|
2020-08-03 18:03:06 +03:00
|
|
|
/** @var IURLGenerator */
|
|
|
|
protected $urlGenerator;
|
2020-08-04 11:00:27 +03:00
|
|
|
|
2020-08-03 18:03:06 +03:00
|
|
|
/** @var IL10N */
|
|
|
|
protected $l;
|
|
|
|
|
|
|
|
public function __construct(IManager $settingsManager,
|
|
|
|
IGroupManager $groupManager,
|
|
|
|
IURLGenerator $urlGenerator,
|
|
|
|
IL10N $l) {
|
|
|
|
$this->settingsManager = $settingsManager;
|
|
|
|
$this->groupManager = $groupManager;
|
|
|
|
$this->urlGenerator = $urlGenerator;
|
|
|
|
$this->l = $l;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getId(): string {
|
2020-08-05 18:56:01 +03:00
|
|
|
return 'settings';
|
2020-08-03 18:03:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function getName(): string {
|
|
|
|
return $this->l->t('Settings');
|
|
|
|
}
|
|
|
|
|
2020-08-04 11:00:27 +03:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
2020-08-05 10:49:18 +03:00
|
|
|
public function getOrder(string $route, array $routeParameters): int {
|
|
|
|
if ($route === 'settings.PersonalSettings.index' || $route === 'settings.AdminSettings.index') {
|
2020-08-04 19:15:09 +03:00
|
|
|
return -1;
|
|
|
|
}
|
2020-08-05 18:56:01 +03:00
|
|
|
// At the very bottom
|
|
|
|
return 500;
|
2020-08-04 11:00:27 +03:00
|
|
|
}
|
|
|
|
|
2020-08-03 18:03:06 +03:00
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function search(IUser $user, ISearchQuery $query): SearchResult {
|
|
|
|
$isAdmin = $this->groupManager->isAdmin($user->getUID());
|
|
|
|
|
|
|
|
$result = $this->searchSections(
|
|
|
|
$query,
|
|
|
|
$this->settingsManager->getPersonalSections(),
|
|
|
|
$isAdmin ? $this->l->t('Personal') : '',
|
|
|
|
'settings.PersonalSettings.index'
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($this->groupManager->isAdmin($user->getUID())) {
|
|
|
|
$result = array_merge($result, $this->searchSections(
|
|
|
|
$query,
|
|
|
|
$this->settingsManager->getAdminSections(),
|
|
|
|
$this->l->t('Administration'),
|
|
|
|
'settings.AdminSettings.index'
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
return SearchResult::complete(
|
|
|
|
$this->l->t('Settings'),
|
|
|
|
$result
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param ISearchQuery $query
|
2020-10-29 00:51:49 +03:00
|
|
|
* @param IIconSection[][] $sections
|
2020-08-03 18:03:06 +03:00
|
|
|
* @param string $subline
|
|
|
|
* @param string $routeName
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function searchSections(ISearchQuery $query, array $sections, string $subline, string $routeName): array {
|
|
|
|
$result = [];
|
|
|
|
foreach ($sections as $priority => $sectionsByPriority) {
|
|
|
|
foreach ($sectionsByPriority as $section) {
|
|
|
|
if (
|
|
|
|
stripos($section->getName(), $query->getTerm()) === false &&
|
|
|
|
stripos($section->getID(), $query->getTerm()) === false
|
|
|
|
) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-08-04 11:00:27 +03:00
|
|
|
/**
|
|
|
|
* We can't use the icon URL at the moment as they don't invert correctly for dark theme
|
|
|
|
* $iconUrl = $section->getIcon();
|
|
|
|
*/
|
2020-08-03 18:03:06 +03:00
|
|
|
|
2020-08-04 11:00:27 +03:00
|
|
|
$result[] = new SearchResultEntry(
|
|
|
|
'',
|
2020-08-03 18:03:06 +03:00
|
|
|
$section->getName(),
|
|
|
|
$subline,
|
2020-08-04 11:00:27 +03:00
|
|
|
$this->urlGenerator->linkToRouteAbsolute($routeName, ['section' => $section->getID()]),
|
|
|
|
'icon-settings'
|
2020-08-03 18:03:06 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
}
|