mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Merge branch '137-send-reply-when-adding-notification-comments' into 'master'
Resolve: Send reply email to all recipees when add comments in notifications See merge request Chill-Projet/chill-bundles!585
This commit is contained in:
commit
bc5c420f92
5
.changes/unreleased/Fixed-20230906-154856.yaml
Normal file
5
.changes/unreleased/Fixed-20230906-154856.yaml
Normal file
@ -0,0 +1,5 @@
|
||||
kind: Fixed
|
||||
body: Do not send an email to creator twice when adding a comment to a notification
|
||||
time: 2023-09-06T15:48:56.991246312+02:00
|
||||
custom:
|
||||
Issue: ""
|
@ -40,13 +40,18 @@ class NotificationMailer
|
||||
|
||||
public function postPersistComment(NotificationComment $comment, PostPersistEventArgs $eventArgs): void
|
||||
{
|
||||
foreach (
|
||||
array_merge(
|
||||
$comment->getNotification()->getAddressees()->toArray(),
|
||||
[$comment->getNotification()->getSender()]
|
||||
) as $dest
|
||||
) {
|
||||
if (null === $dest->getEmail() || $comment->getCreatedBy() !== $dest) {
|
||||
$dests = [$comment->getNotification()->getSender(), ...$comment->getNotification()->getAddressees()->toArray()];
|
||||
|
||||
$uniqueDests = [];
|
||||
foreach ($dests as $dest) {
|
||||
// avoid duplication
|
||||
if (in_array(spl_object_hash($dest), $uniqueDests, true)) {
|
||||
continue;
|
||||
}
|
||||
$uniqueDests[] = spl_object_hash($dest);
|
||||
|
||||
// do not send if the sender does not have any email, nor to the creator of the comment
|
||||
if (null === $dest->getEmail() || $comment->getCreatedBy() === $dest) {
|
||||
continue;
|
||||
}
|
||||
$email = new TemplatedEmail();
|
||||
|
@ -0,0 +1,118 @@
|
||||
<?php
|
||||
|
||||
namespace Notification\Email;
|
||||
|
||||
use Chill\MainBundle\Entity\Notification;
|
||||
use Chill\MainBundle\Entity\NotificationComment;
|
||||
use Chill\MainBundle\Entity\User;
|
||||
use Chill\MainBundle\Notification\Email\NotificationMailer;
|
||||
use Doctrine\ORM\EntityManagerInterface;
|
||||
use Doctrine\ORM\Event\PostPersistEventArgs;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Prophecy\Argument;
|
||||
use Prophecy\PhpUnit\ProphecyTrait;
|
||||
use Psr\Log\NullLogger;
|
||||
use Symfony\Component\Mailer\MailerInterface;
|
||||
use Symfony\Component\Mime\Email;
|
||||
use Symfony\Component\Translation\Translator;
|
||||
|
||||
class NotificationMailerTest extends TestCase
|
||||
{
|
||||
use ProphecyTrait;
|
||||
|
||||
/**
|
||||
*/
|
||||
public function testPostPersistComment(): void
|
||||
{
|
||||
$this->expectNotToPerformAssertions();
|
||||
$user1 = (new User())->setEmail('user1@foo.com');
|
||||
$user2 = (new User())->setEmail('user2@foo.com');
|
||||
$user3 = (new User())->setEmail('user3@foo.com');
|
||||
|
||||
$notification = new Notification();
|
||||
$notification
|
||||
->setTitle('test notification')
|
||||
->setSender($user1)
|
||||
->addAddressee($user2)
|
||||
->addAddressee($user3)
|
||||
;
|
||||
|
||||
$comment = (new NotificationComment())
|
||||
->setContent("foo bar baz")
|
||||
->setCreatedBy($user2)
|
||||
;
|
||||
$notification->addComment($comment);
|
||||
|
||||
$mailer = $this->prophesize(MailerInterface::class);
|
||||
|
||||
// a mail only to user1 and user3 should have been sent
|
||||
$mailer->send(Argument::that(function (Email $email) {
|
||||
foreach ($email->getTo() as $address) {
|
||||
if ($address->getAddress() === 'user1@foo.com' || $address->getAddress() === 'user3@foo.com') {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}));
|
||||
|
||||
$objectManager = $this->prophesize(EntityManagerInterface::class);
|
||||
|
||||
$mailer = $this->buildNotificationMailer($mailer->reveal());
|
||||
$mailer->postPersistComment($comment, new PostPersistEventArgs($comment, $objectManager->reveal()));
|
||||
}
|
||||
|
||||
public function testPostPersistCommentDestWithNullEmail(): void
|
||||
{
|
||||
$this->expectNotToPerformAssertions();
|
||||
$user1 = (new User())->setEmail('user1@foo.com');
|
||||
$user2 = (new User())->setEmail('user2@foo.com');
|
||||
$user3 = (new User())->setEmail(null);
|
||||
|
||||
$notification = new Notification();
|
||||
$notification
|
||||
->setTitle('test notification')
|
||||
->setSender($user1)
|
||||
->addAddressee($user2)
|
||||
->addAddressee($user3)
|
||||
;
|
||||
|
||||
$comment = (new NotificationComment())
|
||||
->setContent("foo bar baz")
|
||||
->setCreatedBy($user2)
|
||||
;
|
||||
$notification->addComment($comment);
|
||||
|
||||
$mailer = $this->prophesize(MailerInterface::class);
|
||||
|
||||
// a mail only to user1 and user3 should have been sent
|
||||
$mailer->send(Argument::that(function (Email $email) {
|
||||
foreach ($email->getTo() as $address) {
|
||||
if ($address->getAddress() === 'user1@foo.com') {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}));
|
||||
|
||||
$objectManager = $this->prophesize(EntityManagerInterface::class);
|
||||
|
||||
$mailer = $this->buildNotificationMailer($mailer->reveal());
|
||||
$mailer->postPersistComment($comment, new PostPersistEventArgs($comment, $objectManager->reveal()));
|
||||
}
|
||||
|
||||
private function buildNotificationMailer(
|
||||
MailerInterface $mailer = null,
|
||||
): NotificationMailer
|
||||
{
|
||||
return new NotificationMailer(
|
||||
$mailer,
|
||||
new NullLogger(),
|
||||
new Translator('fr')
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user