86 lines
2.7 KiB
PHP
86 lines
2.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2021 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Notifications\Settings;
|
|
|
|
use OCA\Notifications\AppInfo\Application;
|
|
use OCA\Notifications\Model\Settings;
|
|
use OCA\Notifications\Model\SettingsMapper;
|
|
use OCP\AppFramework\Db\DoesNotExistException;
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
use OCP\AppFramework\Services\IAppConfig;
|
|
use OCP\AppFramework\Services\IInitialState;
|
|
use OCP\IConfig;
|
|
use OCP\IL10N;
|
|
use OCP\IUser;
|
|
use OCP\IUserSession;
|
|
use OCP\Settings\ISettings;
|
|
use OCP\Util;
|
|
|
|
class Personal implements ISettings {
|
|
public function __construct(
|
|
protected IConfig $config,
|
|
protected IAppConfig $appConfig,
|
|
protected IL10N $l10n,
|
|
protected IUserSession $session,
|
|
protected SettingsMapper $settingsMapper,
|
|
protected IInitialState $initialState,
|
|
) {
|
|
}
|
|
|
|
#[\Override]
|
|
public function getForm(): TemplateResponse {
|
|
Util::addStyle('notifications', 'notifications-settings');
|
|
Util::addScript('notifications', 'notifications-settings');
|
|
|
|
/** @var IUser $user */
|
|
$user = $this->session->getUser();
|
|
try {
|
|
$settings = $this->settingsMapper->getSettingsByUser($user->getUID());
|
|
$settingBatchTime = SettingsMapper::batchTimeToSetting($settings->getBatchTime());
|
|
if ($settings->getBatchTime() === Settings::EMAIL_SEND_DEFAULT) {
|
|
$settingBatchTime = $this->appConfig->getAppValueInt('setting_batchtime');
|
|
}
|
|
} catch (DoesNotExistException) {
|
|
$settings = new Settings();
|
|
$settings->setUserId($user->getUID());
|
|
$settings->setBatchTime(Settings::EMAIL_SEND_DEFAULT);
|
|
$settings->setNextSendTime(1);
|
|
$this->settingsMapper->insert($settings);
|
|
|
|
$settingBatchTime = $this->appConfig->getAppValueInt('setting_batchtime');
|
|
}
|
|
|
|
$defaultSoundNotification = $this->appConfig->getAppValueBool('sound_notification') ? 'yes' : 'no';
|
|
$userSoundNotification = $this->config->getUserValue($user->getUID(), Application::APP_ID, 'sound_notification', $defaultSoundNotification) === 'yes';
|
|
$defaultSoundTalk = $this->appConfig->getAppValueBool('sound_talk') ? 'yes' : 'no';
|
|
$userSoundTalk = $this->config->getUserValue($user->getUID(), Application::APP_ID, 'sound_talk', $defaultSoundTalk) === 'yes';
|
|
|
|
$this->initialState->provideInitialState('config', [
|
|
'setting' => 'personal',
|
|
'is_email_set' => (bool)$user->getEMailAddress(),
|
|
'setting_batchtime' => $settingBatchTime,
|
|
'sound_notification' => $userSoundNotification,
|
|
'sound_talk' => $userSoundTalk,
|
|
]);
|
|
|
|
return new TemplateResponse('notifications', 'settings/personal');
|
|
}
|
|
|
|
#[\Override]
|
|
public function getSection(): string {
|
|
return 'notifications';
|
|
}
|
|
|
|
#[\Override]
|
|
public function getPriority(): int {
|
|
return 20;
|
|
}
|
|
}
|