aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib/Notification/Notifier.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-10-28 20:27:59 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2019-11-01 08:53:18 +0100
commit1ac57e76fadc1cf47f27134e98197068850df469 (patch)
tree81c098daaa680e92980a29627aa2a07e450d35e6 /apps/files_sharing/lib/Notification/Notifier.php
parent4326b03b13f858a38a4b0703aaaecf839fc0c03a (diff)
downloadnextcloud-server-1ac57e76fadc1cf47f27134e98197068850df469.tar.gz
nextcloud-server-1ac57e76fadc1cf47f27134e98197068850df469.zip
Add notification for shares about to expire
Introduces a new command that will create notifications for users if they have shares that will expire the next day. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files_sharing/lib/Notification/Notifier.php')
-rw-r--r--apps/files_sharing/lib/Notification/Notifier.php98
1 files changed, 98 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/Notification/Notifier.php b/apps/files_sharing/lib/Notification/Notifier.php
new file mode 100644
index 00000000000..a9028ec9cf5
--- /dev/null
+++ b/apps/files_sharing/lib/Notification/Notifier.php
@@ -0,0 +1,98 @@
+<?php
+declare(strict_types=1);
+/**
+ * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @author Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @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\Files_Sharing\Notification;
+
+use OCP\Files\IRootFolder;
+use OCP\L10N\IFactory;
+use OCP\Notification\AlreadyProcessedException;
+use OCP\Notification\INotification;
+use OCP\Notification\INotifier;
+use OCP\Share\Exceptions\ShareNotFound;
+use OCP\Share\IManager;
+
+class Notifier implements INotifier {
+
+ /** @var IFactory */
+ protected $l10nFactory;
+
+ /** @var IManager */
+ private $shareManager;
+
+ /** @var IRootFolder */
+ private $rootFolder;
+
+ public function __construct(IFactory $l10nFactory,
+ IManager $shareManager,
+ IRootFolder $rootFolder) {
+ $this->l10nFactory = $l10nFactory;
+ $this->shareManager = $shareManager;
+ $this->rootFolder = $rootFolder;
+ }
+
+ public function getID(): string {
+ return 'files_sharing';
+ }
+
+ public function getName(): string {
+ return $this->l10nFactory->get('files_sharing')->t('Files sharing');
+ }
+
+ public function prepare(INotification $notification, string $languageCode): INotification {
+ if ($notification->getApp() !== 'files_sharing' ||
+ $notification->getSubject() !== 'expiresTomorrow') {
+ throw new \InvalidArgumentException('Unhandled app or subject');
+ }
+
+ $l = $this->l10nFactory->get('files_sharing', $languageCode);
+ $attemptId = $notification->getObjectId();
+
+ try {
+ $share = $this->shareManager->getShareById($attemptId);
+ } catch (ShareNotFound $e) {
+ throw new AlreadyProcessedException();
+ }
+
+ $node = $share->getNode();
+ $userFolder = $this->rootFolder->getUserFolder($notification->getUser());
+ $path = $userFolder->getRelativePath($node->getPath());
+
+ $notification
+ ->setParsedSubject($l->t('Share will expire tomorrow'))
+ ->setParsedMessage($l->t('One or more of your shares will expire tomorrow'))
+ ->setRichMessage(
+ $l->t('Your share of {node} will expire tomorrow'),
+ [
+ 'node' => [
+ 'type' => 'file',
+ 'id' => $node->getId(),
+ 'name' => $node->getName(),
+ 'path' => $path,
+ ],
+ ]
+ );
+
+ return $notification;
+ }
+}