12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OCA\DAV\Settings;
- use OCA\DAV\AppInfo\Application;
- use OCP\App\IAppManager;
- use OCP\AppFramework\Http\TemplateResponse;
- use OCP\AppFramework\Services\IInitialState;
- use OCP\IConfig;
- use OCP\IURLGenerator;
- use OCP\Settings\IDelegatedSettings;
- class CalDAVSettings implements IDelegatedSettings {
- private const defaults = [
- 'sendInvitations' => 'yes',
- 'generateBirthdayCalendar' => 'yes',
- 'sendEventReminders' => 'yes',
- 'sendEventRemindersToSharedUsers' => 'yes',
- 'sendEventRemindersPush' => 'yes',
- ];
- /**
- * CalDAVSettings constructor.
- *
- * @param IConfig $config
- * @param IInitialState $initialState
- */
- public function __construct(
- private IConfig $config,
- private IInitialState $initialState,
- private IURLGenerator $urlGenerator,
- private IAppManager $appManager,
- ) {
- }
- public function getForm(): TemplateResponse {
- $this->initialState->provideInitialState('userSyncCalendarsDocUrl', $this->urlGenerator->linkToDocs('user-sync-calendars'));
- foreach (self::defaults as $key => $default) {
- $value = $this->config->getAppValue(Application::APP_ID, $key, $default);
- $this->initialState->provideInitialState($key, $value === 'yes');
- }
- return new TemplateResponse(Application::APP_ID, 'settings-admin-caldav');
- }
- public function getSection(): ?string {
- if (!$this->appManager->isBackendRequired(IAppManager::BACKEND_CALDAV)) {
- return null;
- }
- return 'groupware';
- }
- /**
- * @return int
- */
- public function getPriority() {
- return 10;
- }
- public function getName(): ?string {
- return null; // Only setting in this section
- }
- public function getAuthorizedAppConfig(): array {
- return [
- 'dav' => ['/(' . implode('|', array_keys(self::defaults)) . ')/']
- ];
- }
- }
|