mirror of
https://github.com/nextcloud/mail.git
synced 2026-01-13 20:23:59 +00:00
82 lines
2.1 KiB
PHP
82 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Mail\Notification;
|
|
|
|
use OCA\Mail\AppInfo\Application;
|
|
use OCP\IURLGenerator;
|
|
use OCP\L10N\IFactory;
|
|
use OCP\Notification\INotification;
|
|
use OCP\Notification\INotifier;
|
|
use OCP\Notification\UnknownNotificationException;
|
|
|
|
class Notifier implements INotifier {
|
|
private IFactory $factory;
|
|
private IURLGenerator $url;
|
|
|
|
public function __construct(IFactory $factory,
|
|
IURLGenerator $url) {
|
|
$this->factory = $factory;
|
|
$this->url = $url;
|
|
}
|
|
|
|
#[\Override]
|
|
public function getID(): string {
|
|
return Application::APP_ID;
|
|
}
|
|
|
|
/**
|
|
* Human-readable name describing the notifier
|
|
* @return string
|
|
*/
|
|
#[\Override]
|
|
public function getName(): string {
|
|
return $this->factory->get(Application::APP_ID)->t('Mail');
|
|
}
|
|
|
|
|
|
#[\Override]
|
|
public function prepare(INotification $notification, string $languageCode): INotification {
|
|
if ($notification->getApp() !== Application::APP_ID) {
|
|
// Not my app => throw
|
|
throw new UnknownNotificationException();
|
|
}
|
|
|
|
// Read the language from the notification
|
|
$l = $this->factory->get(Application::APP_ID, $languageCode);
|
|
|
|
switch ($notification->getSubject()) {
|
|
// Deal with known subjects
|
|
case 'quota_depleted':
|
|
$parameters = $notification->getSubjectParameters();
|
|
$notification->setRichSubject($l->t('You are reaching your mailbox quota limit for {account_email}'), [
|
|
'account_email' => [
|
|
'type' => 'highlight',
|
|
'id' => $parameters['id'],
|
|
'name' => $parameters['account_email']
|
|
]
|
|
]);
|
|
$messageParameters = $notification->getMessageParameters();
|
|
$notification->setRichMessage($l->t('You are currently using {percentage} of your mailbox storage. Please make some space by deleting unneeded emails.'),
|
|
[
|
|
'percentage' => [
|
|
'type' => 'highlight',
|
|
'id' => $messageParameters['id'],
|
|
'name' => (string)$messageParameters['quota_percentage'] . '%',
|
|
]
|
|
]);
|
|
break;
|
|
default:
|
|
throw new UnknownNotificationException();
|
|
}
|
|
|
|
return $notification;
|
|
}
|
|
}
|