'OCP\\Log\\ILogFactory' => $baseDir . '/lib/public/Log/ILogFactory.php',
'OCP\\Log\\IWriter' => $baseDir . '/lib/public/Log/IWriter.php',
'OCP\\Log\\RotationTrait' => $baseDir . '/lib/public/Log/RotationTrait.php',
+ 'OCP\\Mail\\Events\\BeforeMessageSent' => $baseDir . '/lib/public/Mail/Events/BeforeMessageSent.php',
'OCP\\Mail\\IAttachment' => $baseDir . '/lib/public/Mail/IAttachment.php',
'OCP\\Mail\\IEMailTemplate' => $baseDir . '/lib/public/Mail/IEMailTemplate.php',
'OCP\\Mail\\IMailer' => $baseDir . '/lib/public/Mail/IMailer.php',
'OCP\\Log\\ILogFactory' => __DIR__ . '/../../..' . '/lib/public/Log/ILogFactory.php',
'OCP\\Log\\IWriter' => __DIR__ . '/../../..' . '/lib/public/Log/IWriter.php',
'OCP\\Log\\RotationTrait' => __DIR__ . '/../../..' . '/lib/public/Log/RotationTrait.php',
+ 'OCP\\Mail\\Events\\BeforeMessageSent' => __DIR__ . '/../../..' . '/lib/public/Mail/Events/BeforeMessageSent.php',
'OCP\\Mail\\IAttachment' => __DIR__ . '/../../..' . '/lib/public/Mail/IAttachment.php',
'OCP\\Mail\\IEMailTemplate' => __DIR__ . '/../../..' . '/lib/public/Mail/IEMailTemplate.php',
'OCP\\Mail\\IMailer' => __DIR__ . '/../../..' . '/lib/public/Mail/IMailer.php',
* @author Lukas Reschke <lukas@statuscode.ch>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Roeland Jago Douma <roeland@famdouma.nl>
+ * @author Arne Hamann <github@arne.email>
*
* @license AGPL-3.0
*
use Egulias\EmailValidator\EmailValidator;
use Egulias\EmailValidator\Validation\RFCValidation;
use OCP\Defaults;
+use OCP\EventDispatcher\IEventDispatcher;
use OCP\IConfig;
use OCP\IL10N;
use OCP\ILogger;
use OCP\Mail\IEMailTemplate;
use OCP\Mail\IMailer;
use OCP\Mail\IMessage;
+use OCP\Mail\Events\BeforeMessageSent;
+
/**
* Class Mailer provides some basic functions to create a mail message that can be used in combination with
private $urlGenerator;
/** @var IL10N */
private $l10n;
+ /** @var IEventDispatcher */
+ private $dispatcher;
/**
* @param IConfig $config
* @param Defaults $defaults
* @param IURLGenerator $urlGenerator
* @param IL10N $l10n
+ * @param IEventDispatcher $dispatcher
*/
public function __construct(IConfig $config,
ILogger $logger,
Defaults $defaults,
IURLGenerator $urlGenerator,
- IL10N $l10n) {
+ IL10N $l10n,
+ IEventDispatcher $dispatcher) {
$this->config = $config;
$this->logger = $logger;
$this->defaults = $defaults;
$this->urlGenerator = $urlGenerator;
$this->l10n = $l10n;
+ $this->dispatcher = $dispatcher;
}
/**
$mailer->registerPlugin(new \Swift_Plugins_LoggerPlugin($mailLogger));
}
+
+ $this->dispatcher->dispatchTyped(new BeforeMessageSent($message));
+
$mailer->send($message->getSwiftMessage(), $failedRecipients);
// Debugging logging
* @author Morris Jobke <hey@morrisjobke.de>
* @author Roeland Jago Douma <roeland@famdouma.nl>
* @author Thomas Müller <thomas.mueller@tmit.eu>
+ * @author Arne Hamann <github@arne.email>
*
* @license AGPL-3.0
*
* @return array
*/
public function getFrom(): array {
- return $this->swiftMessage->getFrom();
+ return $this->swiftMessage->getFrom() ?? [];
}
/**
* @return array
*/
public function getTo(): array {
- return $this->swiftMessage->getTo();
+ return $this->swiftMessage->getTo() ?? [];
}
/**
* @return array
*/
public function getCc(): array {
- return $this->swiftMessage->getCc();
+ return $this->swiftMessage->getCc() ?? [];
}
/**
* @return array
*/
public function getBcc(): array {
- return $this->swiftMessage->getBcc();
+ return $this->swiftMessage->getBcc() ?? [];
}
/**
return $this;
}
+ /**
+ * Get's the underlying SwiftMessage
+ * @param Swift_Message $swiftMessage
+ */
+ public function setSwiftMessage(Swift_Message $swiftMessage): void {
+ $this->swiftMessage = $swiftMessage;
+ }
+
/**
* Get's the underlying SwiftMessage
* @return Swift_Message
$c->getLogger(),
$c->query(Defaults::class),
$c->getURLGenerator(),
- $c->getL10N('lib')
+ $c->getL10N('lib'),
+ $c->query(IEventDispatcher::class)
);
});
$this->registerDeprecatedAlias('Mailer', IMailer::class);
--- /dev/null
+<?php
+
+declare(strict_types=1);
+
+/**
+ * @copyright 2020 Arne Hamann <github@arne.email>
+ *
+ * @author Arne Hamann <github@arne.email>
+ *
+ * @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 OCP\Mail\Events;
+
+use OCP\EventDispatcher\Event;
+use OCP\Mail\IMessage;
+
+/**
+ * @since 19.0.0
+ */
+class BeforeMessageSent extends Event {
+
+ /** @var IMessage */
+ private $message;
+
+ /**
+ * @param IMessage $message
+ * @since 19.0.0
+ */
+ public function __construct(IMessage $message) {
+ parent::__construct();
+ $this->message = $message;
+ }
+
+ /**
+ * @return IMessage
+ * @since 19.0.0
+ */
+ public function getMessage(): IMessage {
+ return $this->message;
+ }
+
+}
<?php
/**
* Copyright (c) 2014-2015 Lukas Reschke <lukas@owncloud.com>
+ *
+ * @author Arne Hamann <github@arne.email>
+ *
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
namespace Test\Mail;
+
use OC\Mail\EMailTemplate;
use OC\Mail\Mailer;
+use OC\Mail\Message;
use OCP\Defaults;
+use OCP\EventDispatcher\IEventDispatcher;
use OCP\IConfig;
use OCP\IL10N;
use OCP\ILogger;
use OCP\IURLGenerator;
+use OCP\Mail\Events\BeforeMessageSent;
+use OCP\Mail\IMessage;
use Test\TestCase;
+use Swift_SwiftException;
class MailerTest extends TestCase {
/** @var IConfig|\PHPUnit_Framework_MockObject_MockObject */
private $l10n;
/** @var Mailer */
private $mailer;
+ /** @var IEventDispatcher */
+ private $dispatcher;
+
protected function setUp(): void {
parent::setUp();
$this->logger = $this->createMock(ILogger::class);
$this->urlGenerator = $this->createMock(IURLGenerator::class);
$this->l10n = $this->createMock(IL10N::class);
+ $this->dispatcher = $this->createMock(IEventDispatcher::class);
$this->mailer = new Mailer(
$this->config,
$this->logger,
$this->defaults,
$this->urlGenerator,
- $this->l10n
+ $this->l10n,
+ $this->dispatcher
);
}
$this->assertInstanceOf(\Swift_SendmailTransport::class, $mailer->getTransport());
}
+ public function testEvents() {
+ $message = $this->createMock(Message::class);
+
+ $event = new BeforeMessageSent($message);
+ $this->dispatcher->expects($this->at(0))
+ ->method('dispatchTyped')
+ ->with($this->equalTo($event));
+
+ # We do not care at this point about errors in Swiftmailer
+ try {
+ $this->mailer->send($message);
+ } catch (Swift_SwiftException $e) {
+ }
+ }
+
public function testCreateMessage() {
$this->config
->expects($this->any())
array(array('lukas@owncloud.com' => 'Lukas Reschke'), array('lukas@owncloud.com' => 'Lukas Reschke')),
array(array('lukas@owncloud.com' => 'Lukas Reschke', 'lukas@öwnclöüd.com', 'lukäs@owncloud.örg' => 'Lükäs Réschke'),
array('lukas@owncloud.com' => 'Lukas Reschke', 'lukas@xn--wncld-iuae2c.com', 'lukäs@owncloud.xn--rg-eka' => 'Lükäs Réschke')),
- array(array('lukas@öwnclöüd.com'), array('lukas@xn--wncld-iuae2c.com'))
+ array(array('lukas@öwnclöüd.com'), array('lukas@xn--wncld-iuae2c.com')),
+ );
+ }
+
+ /**
+ * @return array
+ */
+ public function getMailAddressProvider() {
+ return array(
+ array(NULL, array()),
+ array(array('lukas@owncloud.com' => 'Lukas Reschke'), array('lukas@owncloud.com' => 'Lukas Reschke')),
);
}
$this->message->setFrom(array('lukas@owncloud.com'));
}
- public function testGetFrom() {
+
+ /**
+ * @dataProvider getMailAddressProvider
+ *
+ * @param $swiftresult
+ * @param $return
+ */
+ public function testGetFrom($swiftresult, $return) {
$this->swiftMessage
->expects($this->once())
->method('getFrom')
- ->will($this->returnValue(array('lukas@owncloud.com')));
+ ->will($this->returnValue($swiftresult));
- $this->assertSame(array('lukas@owncloud.com'), $this->message->getFrom());
+ $this->assertSame($return, $this->message->getFrom());
}
public function testSetReplyTo() {
$this->message->setTo(array('lukas@owncloud.com'));
}
- public function testGetTo() {
+ /**
+ * @dataProvider getMailAddressProvider
+ */
+ public function testGetTo($swiftresult,$return) {
$this->swiftMessage
->expects($this->once())
->method('getTo')
- ->will($this->returnValue(array('lukas@owncloud.com')));
+ ->will($this->returnValue($swiftresult));
- $this->assertSame(array('lukas@owncloud.com'), $this->message->getTo());
+ $this->assertSame($return, $this->message->getTo());
}
public function testSetCc() {
$this->message->setCc(array('lukas@owncloud.com'));
}
- public function testGetCc() {
+ /**
+ * @dataProvider getMailAddressProvider
+ */
+ public function testGetCc($swiftresult,$return) {
$this->swiftMessage
->expects($this->once())
->method('getCc')
- ->will($this->returnValue(array('lukas@owncloud.com')));
+ ->will($this->returnValue($swiftresult));
- $this->assertSame(array('lukas@owncloud.com'), $this->message->getCc());
+ $this->assertSame($return, $this->message->getCc());
}
public function testSetBcc() {
$this->message->setBcc(array('lukas@owncloud.com'));
}
- public function testGetBcc() {
+ /**
+ * @dataProvider getMailAddressProvider
+ */
+ public function testGetBcc($swiftresult,$return) {
$this->swiftMessage
->expects($this->once())
->method('getBcc')
- ->will($this->returnValue(array('lukas@owncloud.com')));
+ ->will($this->returnValue($swiftresult));
- $this->assertSame(array('lukas@owncloud.com'), $this->message->getBcc());
+ $this->assertSame($return, $this->message->getBcc());
}
public function testSetSubject() {