165 lines
5.0 KiB
PHP
165 lines
5.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
namespace OCA\Activity\Settings;
|
|
|
|
use OCA\Activity\CurrentUser;
|
|
use OCA\Activity\UserSettings;
|
|
use OCP\Activity\ActivitySettings;
|
|
use OCP\Activity\IExtension;
|
|
use OCP\Activity\IManager;
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
use OCP\AppFramework\Services\IInitialState;
|
|
use OCP\IConfig;
|
|
use OCP\IL10N;
|
|
use OCP\IUser;
|
|
use OCP\Settings\ISettings;
|
|
|
|
class Personal implements ISettings {
|
|
private IConfig $config;
|
|
private IManager $manager;
|
|
private UserSettings $userSettings;
|
|
private IL10N $l10n;
|
|
private string $userId;
|
|
private IUser $user;
|
|
private IInitialState $initialState;
|
|
|
|
public function __construct(
|
|
IConfig $config,
|
|
IManager $manager,
|
|
UserSettings $userSettings,
|
|
IL10N $l10n,
|
|
CurrentUser $currentUser,
|
|
IInitialState $initialState,
|
|
) {
|
|
$this->config = $config;
|
|
$this->manager = $manager;
|
|
$this->userSettings = $userSettings;
|
|
$this->l10n = $l10n;
|
|
$this->userId = (string)$currentUser->getUID();
|
|
$this->user = $currentUser->getUser();
|
|
$this->initialState = $initialState;
|
|
}
|
|
|
|
#[\Override]
|
|
public function getForm(): TemplateResponse {
|
|
$settings = $this->manager->getSettings();
|
|
usort($settings, static function (ActivitySettings $a, ActivitySettings $b): int {
|
|
if ($a->getPriority() === $b->getPriority()) {
|
|
return (int)($a->getIdentifier() > $b->getIdentifier());
|
|
}
|
|
|
|
return (int)($a->getPriority() > $b->getPriority());
|
|
});
|
|
|
|
$activityGroups = [];
|
|
foreach ($settings as $setting) {
|
|
if (!$setting->canChangeMail() && !$setting->canChangeNotification()) {
|
|
// No setting can be changed => don't display
|
|
continue;
|
|
}
|
|
|
|
$methods = [];
|
|
if ($setting->canChangeMail()) {
|
|
$methods[] = IExtension::METHOD_MAIL;
|
|
}
|
|
|
|
if ($setting->canChangeNotification()) {
|
|
$methods[] = IExtension::METHOD_NOTIFICATION;
|
|
}
|
|
|
|
$identifier = $setting->getIdentifier();
|
|
$groupIdentifier = $setting->getGroupIdentifier();
|
|
|
|
if (!isset($activityGroups[$groupIdentifier])) {
|
|
$activityGroups[$groupIdentifier] = [
|
|
'activities' => [],
|
|
'name' => $setting->getGroupName()
|
|
];
|
|
}
|
|
|
|
$activityGroups[$groupIdentifier]['activities'][$identifier] = [
|
|
'desc' => $setting->getName(),
|
|
IExtension::METHOD_MAIL => $this->userSettings->getUserSetting($this->userId, 'email', $identifier),
|
|
IExtension::METHOD_NOTIFICATION => $this->userSettings->getUserSetting($this->userId, 'notification', $identifier),
|
|
'methods' => $methods,
|
|
];
|
|
}
|
|
|
|
if (isset($activityGroups['other'])) {
|
|
$otherActivities = $activityGroups['other'];
|
|
unset($activityGroups['other']);
|
|
$activityGroups['other'] = $otherActivities;
|
|
}
|
|
|
|
$settingBatchTime = UserSettings::EMAIL_SEND_HOURLY;
|
|
$currentSetting = (int)$this->userSettings->getUserSetting($this->userId, 'setting', 'batchtime');
|
|
if ($currentSetting === 3600 * 24 * 7) {
|
|
$settingBatchTime = UserSettings::EMAIL_SEND_WEEKLY;
|
|
} elseif ($currentSetting === 3600 * 24) {
|
|
$settingBatchTime = UserSettings::EMAIL_SEND_DAILY;
|
|
} elseif ($currentSetting === 0) {
|
|
$settingBatchTime = UserSettings::EMAIL_SEND_ASAP;
|
|
}
|
|
|
|
$emailEnabled = $this->config->getAppValue('activity', 'enable_email', 'yes') === 'yes';
|
|
if ($emailEnabled) {
|
|
$methods = [
|
|
IExtension::METHOD_MAIL => $this->l10n->t('Mail'),
|
|
];
|
|
} else {
|
|
$methods = [];
|
|
}
|
|
|
|
if ($this->config->getAppValue('activity', 'enable_notify', 'yes') === 'yes') {
|
|
$methods[IExtension::METHOD_NOTIFICATION] = $this->l10n->t('Push');
|
|
}
|
|
|
|
$this->initialState->provideInitialState('setting', 'personal');
|
|
$this->initialState->provideInitialState('activity_groups', $activityGroups);
|
|
$this->initialState->provideInitialState('is_email_set', $this->user instanceof IUser && !empty($this->user->getEMailAddress()));
|
|
$this->initialState->provideInitialState('email_enabled', $emailEnabled);
|
|
$this->initialState->provideInitialState('setting_batchtime', $settingBatchTime);
|
|
$this->initialState->provideInitialState('methods', $methods);
|
|
$this->initialState->provideInitialState('activity_digest_enabled', $this->userSettings->getUserSetting($this->userId, 'setting', 'activity_digest'));
|
|
|
|
|
|
return new TemplateResponse('activity', 'settings/personal', [
|
|
'setting' => 'personal',
|
|
'activityGroups' => $activityGroups,
|
|
'is_email_set' => $this->user instanceof IUser && !empty($this->user->getEMailAddress()),
|
|
'email_enabled' => $emailEnabled,
|
|
|
|
'setting_batchtime' => $settingBatchTime,
|
|
|
|
'methods' => $methods,
|
|
|
|
'activity_digest_enabled' => $this->userSettings->getUserSetting($this->userId, 'setting', 'activity_digest')
|
|
], 'blank');
|
|
}
|
|
|
|
/**
|
|
* @return string the section ID, e.g. 'sharing'
|
|
*/
|
|
#[\Override]
|
|
public function getSection() {
|
|
return 'notifications';
|
|
}
|
|
|
|
/**
|
|
* @return int whether the form should be rather on the top or bottom of
|
|
* the admin section. The forms are arranged in ascending order of the
|
|
* priority values. It is required to return a value between 0 and 100.
|
|
*
|
|
* E.g.: 70
|
|
*/
|
|
#[\Override]
|
|
public function getPriority() {
|
|
return 55;
|
|
}
|
|
}
|