Notifications for group shares

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2019-08-26 14:40:02 +02:00
parent e96c9e0e4a
commit c79a56481b
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
1 changed files with 14 additions and 1 deletions

View File

@ -25,6 +25,7 @@ declare(strict_types=1);
namespace OCA\Files_Sharing\Notification;
use OC\Share\Share;
use OCP\IGroupManager;
use OCP\Notification\IManager;
use OCP\Notification\INotification;
use OCP\Share\IShare;
@ -34,11 +35,15 @@ class Listener {
/** @var IManager */
protected $notificationManager;
/** @var IGroupManager */
protected $groupManager;
public function __construct(
IManager $notificationManager
IManager $notificationManager,
IGroupManager $groupManager
) {
$this->notificationManager = $notificationManager;
$this->groupManager = $groupManager;
}
/**
@ -53,6 +58,14 @@ class Listener {
$notification->setSubject('incoming_user_share')
->setUser($share->getSharedWith());
$this->notificationManager->notify($notification);
} else if ($share->getShareType() === Share::SHARE_TYPE_GROUP) {
$notification->setSubject('incoming_group_share');
$group = $this->groupManager->get($share->getSharedWith());
foreach ($group->getUsers() as $user) {
$notification->setUser($user->getUID());
$this->notificationManager->notify($notification);
}
}
}