123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2019, Thomas Citharel
- * @copyright Copyright (c) 2019, Georg Ehrke
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Thomas Citharel <nextcloud@tcit.fr>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- namespace OCA\DAV\CalDAV\Reminder;
- use DateTime;
- use OCA\DAV\AppInfo\Application;
- use OCP\AppFramework\Utility\ITimeFactory;
- use OCP\IL10N;
- use OCP\IURLGenerator;
- use OCP\L10N\IFactory;
- use OCP\Notification\AlreadyProcessedException;
- use OCP\Notification\INotification;
- use OCP\Notification\INotifier;
- /**
- * Class Notifier
- *
- * @package OCA\DAV\CalDAV\Reminder
- */
- class Notifier implements INotifier {
- /** @var IFactory */
- private $l10nFactory;
- /** @var IURLGenerator */
- private $urlGenerator;
- /** @var IL10N */
- private $l10n;
- /** @var ITimeFactory */
- private $timeFactory;
- /**
- * Notifier constructor.
- *
- * @param IFactory $factory
- * @param IURLGenerator $urlGenerator
- * @param ITimeFactory $timeFactory
- */
- public function __construct(IFactory $factory,
- IURLGenerator $urlGenerator,
- ITimeFactory $timeFactory) {
- $this->l10nFactory = $factory;
- $this->urlGenerator = $urlGenerator;
- $this->timeFactory = $timeFactory;
- }
- /**
- * Identifier of the notifier, only use [a-z0-9_]
- *
- * @return string
- * @since 17.0.0
- */
- public function getID():string {
- return Application::APP_ID;
- }
- /**
- * Human readable name describing the notifier
- *
- * @return string
- * @since 17.0.0
- */
- public function getName():string {
- return $this->l10nFactory->get('dav')->t('Calendar');
- }
- /**
- * Prepare sending the notification
- *
- * @param INotification $notification
- * @param string $languageCode The code of the language that should be used to prepare the notification
- * @return INotification
- * @throws \Exception
- */
- public function prepare(INotification $notification,
- string $languageCode):INotification {
- if ($notification->getApp() !== Application::APP_ID) {
- throw new \InvalidArgumentException('Notification not from this app');
- }
- // Read the language from the notification
- $this->l10n = $this->l10nFactory->get('dav', $languageCode);
- // Handle notifier subjects
- switch ($notification->getSubject()) {
- case 'calendar_reminder':
- return $this->prepareReminderNotification($notification);
- default:
- throw new \InvalidArgumentException('Unknown subject');
- }
- }
- /**
- * @param INotification $notification
- * @return INotification
- */
- private function prepareReminderNotification(INotification $notification):INotification {
- $imagePath = $this->urlGenerator->imagePath('core', 'places/calendar.svg');
- $iconUrl = $this->urlGenerator->getAbsoluteURL($imagePath);
- $notification->setIcon($iconUrl);
- $this->prepareNotificationSubject($notification);
- $this->prepareNotificationMessage($notification);
- return $notification;
- }
- /**
- * Sets the notification subject based on the parameters set in PushProvider
- *
- * @param INotification $notification
- */
- private function prepareNotificationSubject(INotification $notification): void {
- $parameters = $notification->getSubjectParameters();
- $startTime = \DateTime::createFromFormat(\DateTimeInterface::ATOM, $parameters['start_atom']);
- $now = $this->timeFactory->getDateTime();
- $title = $this->getTitleFromParameters($parameters);
- $diff = $startTime->diff($now);
- if ($diff === false) {
- return;
- }
- $components = [];
- if ($diff->y) {
- $components[] = $this->l10n->n('%n year', '%n years', $diff->y);
- }
- if ($diff->m) {
- $components[] = $this->l10n->n('%n month', '%n months', $diff->m);
- }
- if ($diff->d) {
- $components[] = $this->l10n->n('%n day', '%n days', $diff->d);
- }
- if ($diff->h) {
- $components[] = $this->l10n->n('%n hour', '%n hours', $diff->h);
- }
- if ($diff->i) {
- $components[] = $this->l10n->n('%n minute', '%n minutes', $diff->i);
- }
- if (count($components) > 0 && !$this->hasPhpDatetimeDiffBug()) {
- // Limiting to the first three components to prevent
- // the string from getting too long
- $firstThreeComponents = array_slice($components, 0, 2);
- $diffLabel = implode(', ', $firstThreeComponents);
- if ($diff->invert) {
- $title = $this->l10n->t('%s (in %s)', [$title, $diffLabel]);
- } else {
- $title = $this->l10n->t('%s (%s ago)', [$title, $diffLabel]);
- }
- }
- $notification->setParsedSubject($title);
- }
- /**
- * @see https://github.com/nextcloud/server/issues/41615
- * @see https://github.com/php/php-src/issues/9699
- */
- private function hasPhpDatetimeDiffBug(): bool {
- $d1 = DateTime::createFromFormat(\DateTimeInterface::ATOM, '2023-11-22T11:52:00+01:00');
- $d2 = new DateTime('2023-11-22T10:52:03', new \DateTimeZone('UTC'));
- // The difference is 3 seconds, not -1year+11months+…
- return $d1->diff($d2)->y < 0;
- }
- /**
- * Sets the notification message based on the parameters set in PushProvider
- *
- * @param INotification $notification
- */
- private function prepareNotificationMessage(INotification $notification): void {
- $parameters = $notification->getMessageParameters();
- $description = [
- $this->l10n->t('Calendar: %s', $parameters['calendar_displayname']),
- $this->l10n->t('Date: %s', $this->generateDateString($parameters)),
- ];
- if ($parameters['description']) {
- $description[] = $this->l10n->t('Description: %s', $parameters['description']);
- }
- if ($parameters['location']) {
- $description[] = $this->l10n->t('Where: %s', $parameters['location']);
- }
- $message = implode("\r\n", $description);
- $notification->setParsedMessage($message);
- }
- /**
- * @param array $parameters
- * @return string
- */
- private function getTitleFromParameters(array $parameters):string {
- return $parameters['title'] ?? $this->l10n->t('Untitled event');
- }
- /**
- * @param array $parameters
- * @return string
- * @throws \Exception
- */
- private function generateDateString(array $parameters):string {
- $startDateTime = DateTime::createFromFormat(\DateTimeInterface::ATOM, $parameters['start_atom']);
- $endDateTime = DateTime::createFromFormat(\DateTimeInterface::ATOM, $parameters['end_atom']);
- // If the event has already ended, dismiss the notification
- if ($endDateTime < $this->timeFactory->getDateTime()) {
- throw new AlreadyProcessedException();
- }
- $isAllDay = $parameters['all_day'];
- $diff = $startDateTime->diff($endDateTime);
- if ($isAllDay) {
- // One day event
- if ($diff->days === 1) {
- return $this->getDateString($startDateTime);
- }
- return implode(' - ', [
- $this->getDateString($startDateTime),
- $this->getDateString($endDateTime),
- ]);
- }
- $startTimezone = $endTimezone = null;
- if (!$parameters['start_is_floating']) {
- $startTimezone = $parameters['start_timezone'];
- $endTimezone = $parameters['end_timezone'];
- }
- $localeStart = implode(', ', [
- $this->getWeekDayName($startDateTime),
- $this->getDateTimeString($startDateTime)
- ]);
- // always show full date with timezone if timezones are different
- if ($startTimezone !== $endTimezone) {
- $localeEnd = implode(', ', [
- $this->getWeekDayName($endDateTime),
- $this->getDateTimeString($endDateTime)
- ]);
- return $localeStart
- . ' (' . $startTimezone . ') '
- . ' - '
- . $localeEnd
- . ' (' . $endTimezone . ')';
- }
- // Show only the time if the day is the same
- $localeEnd = $this->isDayEqual($startDateTime, $endDateTime)
- ? $this->getTimeString($endDateTime)
- : implode(', ', [
- $this->getWeekDayName($endDateTime),
- $this->getDateTimeString($endDateTime)
- ]);
- return $localeStart
- . ' - '
- . $localeEnd
- . ' (' . $startTimezone . ')';
- }
- /**
- * @param DateTime $dtStart
- * @param DateTime $dtEnd
- * @return bool
- */
- private function isDayEqual(DateTime $dtStart,
- DateTime $dtEnd):bool {
- return $dtStart->format('Y-m-d') === $dtEnd->format('Y-m-d');
- }
- /**
- * @param DateTime $dt
- * @return string
- */
- private function getWeekDayName(DateTime $dt):string {
- return (string)$this->l10n->l('weekdayName', $dt, ['width' => 'abbreviated']);
- }
- /**
- * @param DateTime $dt
- * @return string
- */
- private function getDateString(DateTime $dt):string {
- return (string)$this->l10n->l('date', $dt, ['width' => 'medium']);
- }
- /**
- * @param DateTime $dt
- * @return string
- */
- private function getDateTimeString(DateTime $dt):string {
- return (string)$this->l10n->l('datetime', $dt, ['width' => 'medium|short']);
- }
- /**
- * @param DateTime $dt
- * @return string
- */
- private function getTimeString(DateTime $dt):string {
- return (string)$this->l10n->l('time', $dt, ['width' => 'short']);
- }
- }
|