mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-12-19 10:42:29 +03:00
- Added new user notification preference, opt-in by default - Added parser to extract mentions from comment HTML, with tests to cover. - Added notification and notification handling Not yet tested, needs testing coverage.
52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace BookStack\Settings;
|
|
|
|
use BookStack\Users\Models\User;
|
|
|
|
class UserNotificationPreferences
|
|
{
|
|
public function __construct(
|
|
protected User $user
|
|
) {
|
|
}
|
|
|
|
public function notifyOnOwnPageChanges(): bool
|
|
{
|
|
return $this->getNotificationSetting('own-page-changes');
|
|
}
|
|
|
|
public function notifyOnOwnPageComments(): bool
|
|
{
|
|
return $this->getNotificationSetting('own-page-comments');
|
|
}
|
|
|
|
public function notifyOnCommentReplies(): bool
|
|
{
|
|
return $this->getNotificationSetting('comment-replies');
|
|
}
|
|
|
|
public function notifyOnCommentMentions(): bool
|
|
{
|
|
return $this->getNotificationSetting('comment-mentions');
|
|
}
|
|
|
|
public function updateFromSettingsArray(array $settings)
|
|
{
|
|
$allowList = ['own-page-changes', 'own-page-comments', 'comment-replies', 'comment-mentions'];
|
|
foreach ($settings as $setting => $status) {
|
|
if (!in_array($setting, $allowList)) {
|
|
continue;
|
|
}
|
|
|
|
$value = $status === 'true' ? 'true' : 'false';
|
|
setting()->putUser($this->user, 'notifications#' . $setting, $value);
|
|
}
|
|
}
|
|
|
|
protected function getNotificationSetting(string $key): bool
|
|
{
|
|
return setting()->getUser($this->user, 'notifications#' . $key);
|
|
}
|
|
}
|