123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OC\Settings;
- use Closure;
- use OCP\AppFramework\QueryException;
- use OCP\Group\ISubAdmin;
- use OCP\IGroupManager;
- use OCP\IL10N;
- use OCP\IServerContainer;
- use OCP\IURLGenerator;
- use OCP\IUser;
- use OCP\L10N\IFactory;
- use OCP\Settings\IIconSection;
- use OCP\Settings\IManager;
- use OCP\Settings\ISettings;
- use OCP\Settings\ISubAdminSettings;
- use Psr\Log\LoggerInterface;
- class Manager implements IManager {
- /** @var LoggerInterface */
- private $log;
- /** @var IL10N */
- private $l;
- /** @var IFactory */
- private $l10nFactory;
- /** @var IURLGenerator */
- private $url;
- /** @var IServerContainer */
- private $container;
- /** @var AuthorizedGroupMapper $mapper */
- private $mapper;
- /** @var IGroupManager $groupManager */
- private $groupManager;
- /** @var ISubAdmin $subAdmin */
- private $subAdmin;
- public function __construct(
- LoggerInterface $log,
- IFactory $l10nFactory,
- IURLGenerator $url,
- IServerContainer $container,
- AuthorizedGroupMapper $mapper,
- IGroupManager $groupManager,
- ISubAdmin $subAdmin
- ) {
- $this->log = $log;
- $this->l10nFactory = $l10nFactory;
- $this->url = $url;
- $this->container = $container;
- $this->mapper = $mapper;
- $this->groupManager = $groupManager;
- $this->subAdmin = $subAdmin;
- }
- /** @var array<self::SETTINGS_*, list<class-string<IIconSection>>> */
- protected $sectionClasses = [];
- /** @var array<self::SETTINGS_*, array<string, IIconSection>> */
- protected $sections = [];
- /**
- * @inheritdoc
- */
- public function registerSection(string $type, string $section) {
- if (!isset($this->sectionClasses[$type])) {
- $this->sectionClasses[$type] = [];
- }
- $this->sectionClasses[$type][] = $section;
- }
- /**
- * @psalm-param self::SETTINGS_* $type
- *
- * @return IIconSection[]
- */
- protected function getSections(string $type): array {
- if (!isset($this->sections[$type])) {
- $this->sections[$type] = [];
- }
- if (!isset($this->sectionClasses[$type])) {
- return $this->sections[$type];
- }
- foreach (array_unique($this->sectionClasses[$type]) as $index => $class) {
- try {
- /** @var IIconSection $section */
- $section = $this->container->get($class);
- } catch (QueryException $e) {
- $this->log->info($e->getMessage(), ['exception' => $e]);
- continue;
- }
- $sectionID = $section->getID();
- if (!$this->isKnownDuplicateSectionId($sectionID) && isset($this->sections[$type][$sectionID])) {
- $e = new \InvalidArgumentException('Section with the same ID already registered: ' . $sectionID . ', class: ' . $class);
- $this->log->info($e->getMessage(), ['exception' => $e]);
- continue;
- }
- $this->sections[$type][$sectionID] = $section;
- unset($this->sectionClasses[$type][$index]);
- }
- return $this->sections[$type];
- }
- /**
- * @inheritdoc
- */
- public function getSection(string $type, string $sectionId): ?IIconSection {
- if (isset($this->sections[$type]) && isset($this->sections[$type][$sectionId])) {
- return $this->sections[$type][$sectionId];
- }
- return null;
- }
- protected function isKnownDuplicateSectionId(string $sectionID): bool {
- return in_array($sectionID, [
- 'connected-accounts',
- 'notifications',
- ], true);
- }
- /** @var array<class-string<ISettings>, self::SETTINGS_*> */
- protected $settingClasses = [];
- /** @var array<self::SETTINGS_*, array<string, list<ISettings>>> */
- protected $settings = [];
- /**
- * @inheritdoc
- */
- public function registerSetting(string $type, string $setting) {
- $this->settingClasses[$setting] = $type;
- }
- /**
- * @psalm-param self::SETTINGS_* $type The type of the setting.
- * @param string $section
- * @param ?Closure $filter optional filter to apply on all loaded ISettings
- *
- * @return ISettings[]
- */
- protected function getSettings(string $type, string $section, ?Closure $filter = null): array {
- if (!isset($this->settings[$type])) {
- $this->settings[$type] = [];
- }
- if (!isset($this->settings[$type][$section])) {
- $this->settings[$type][$section] = [];
- }
- foreach ($this->settingClasses as $class => $settingsType) {
- if ($type !== $settingsType) {
- continue;
- }
- try {
- /** @var ISettings $setting */
- $setting = $this->container->get($class);
- } catch (QueryException $e) {
- $this->log->info($e->getMessage(), ['exception' => $e]);
- continue;
- }
- if (!$setting instanceof ISettings) {
- $e = new \InvalidArgumentException('Invalid settings setting registered (' . $class . ')');
- $this->log->info($e->getMessage(), ['exception' => $e]);
- continue;
- }
- if ($filter !== null && !$filter($setting)) {
- continue;
- }
- if ($setting->getSection() === null) {
- continue;
- }
- if (!isset($this->settings[$settingsType][$setting->getSection()])) {
- $this->settings[$settingsType][$setting->getSection()] = [];
- }
- $this->settings[$settingsType][$setting->getSection()][] = $setting;
- unset($this->settingClasses[$class]);
- }
- return $this->settings[$type][$section];
- }
- /**
- * @inheritdoc
- */
- public function getAdminSections(): array {
- // built-in sections
- $sections = [];
- $appSections = $this->getSections('admin');
- foreach ($appSections as $section) {
- /** @var IIconSection $section */
- if (!isset($sections[$section->getPriority()])) {
- $sections[$section->getPriority()] = [];
- }
- $sections[$section->getPriority()][] = $section;
- }
- ksort($sections);
- return $sections;
- }
- /**
- * @inheritdoc
- */
- public function getAdminSettings(string $section, bool $subAdminOnly = false): array {
- if ($subAdminOnly) {
- $subAdminSettingsFilter = function (ISettings $settings) {
- return $settings instanceof ISubAdminSettings;
- };
- $appSettings = $this->getSettings('admin', $section, $subAdminSettingsFilter);
- } else {
- $appSettings = $this->getSettings('admin', $section);
- }
- $settings = [];
- foreach ($appSettings as $setting) {
- if (!isset($settings[$setting->getPriority()])) {
- $settings[$setting->getPriority()] = [];
- }
- $settings[$setting->getPriority()][] = $setting;
- }
- ksort($settings);
- return $settings;
- }
- /**
- * @inheritdoc
- */
- public function getPersonalSections(): array {
- if ($this->l === null) {
- $this->l = $this->l10nFactory->get('lib');
- }
- $sections = [];
- $legacyForms = \OC_App::getForms('personal');
- if ((!empty($legacyForms) && $this->hasLegacyPersonalSettingsToRender($legacyForms))
- || count($this->getPersonalSettings('additional')) > 1) {
- $sections[98] = [new Section('additional', $this->l->t('Additional settings'), 0, $this->url->imagePath('core', 'actions/settings-dark.svg'))];
- }
- $appSections = $this->getSections('personal');
- foreach ($appSections as $section) {
- /** @var IIconSection $section */
- if (!isset($sections[$section->getPriority()])) {
- $sections[$section->getPriority()] = [];
- }
- $sections[$section->getPriority()][] = $section;
- }
- ksort($sections);
- return $sections;
- }
- /**
- * @param string[] $forms
- *
- * @return bool
- */
- private function hasLegacyPersonalSettingsToRender(array $forms): bool {
- foreach ($forms as $form) {
- if (trim($form) !== '') {
- return true;
- }
- }
- return false;
- }
- /**
- * @inheritdoc
- */
- public function getPersonalSettings(string $section): array {
- $settings = [];
- $appSettings = $this->getSettings('personal', $section);
- foreach ($appSettings as $setting) {
- if (!isset($settings[$setting->getPriority()])) {
- $settings[$setting->getPriority()] = [];
- }
- $settings[$setting->getPriority()][] = $setting;
- }
- ksort($settings);
- return $settings;
- }
- /**
- * @inheritdoc
- */
- public function getAllowedAdminSettings(string $section, IUser $user): array {
- $isAdmin = $this->groupManager->isAdmin($user->getUID());
- if ($isAdmin) {
- $appSettings = $this->getSettings('admin', $section);
- } else {
- $authorizedSettingsClasses = $this->mapper->findAllClassesForUser($user);
- if ($this->subAdmin->isSubAdmin($user)) {
- $authorizedGroupFilter = function (ISettings $settings) use ($authorizedSettingsClasses) {
- return $settings instanceof ISubAdminSettings
- || in_array(get_class($settings), $authorizedSettingsClasses) === true;
- };
- } else {
- $authorizedGroupFilter = function (ISettings $settings) use ($authorizedSettingsClasses) {
- return in_array(get_class($settings), $authorizedSettingsClasses) === true;
- };
- }
- $appSettings = $this->getSettings('admin', $section, $authorizedGroupFilter);
- }
- $settings = [];
- foreach ($appSettings as $setting) {
- if (!isset($settings[$setting->getPriority()])) {
- $settings[$setting->getPriority()] = [];
- }
- $settings[$setting->getPriority()][] = $setting;
- }
- ksort($settings);
- return $settings;
- }
- /**
- * @inheritdoc
- */
- public function getAllAllowedAdminSettings(IUser $user): array {
- $this->getSettings('admin', ''); // Make sure all the settings are loaded
- $settings = [];
- $authorizedSettingsClasses = $this->mapper->findAllClassesForUser($user);
- foreach ($this->settings['admin'] as $section) {
- foreach ($section as $setting) {
- if (in_array(get_class($setting), $authorizedSettingsClasses) === true) {
- $settings[] = $setting;
- }
- }
- }
- return $settings;
- }
- }
|