2020-02-01 20:08:54 +01:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:45:36 +01:00
|
|
|
*
|
|
|
|
* @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 <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2020-02-01 20:08:54 +01:00
|
|
|
|
|
|
|
namespace Friendica\Util\EMailer;
|
|
|
|
|
|
|
|
use Exception;
|
|
|
|
use Friendica\App\BaseURL;
|
|
|
|
use Friendica\Content\Text\BBCode;
|
|
|
|
use Friendica\Core\Config\IConfig;
|
|
|
|
use Friendica\Core\L10n;
|
|
|
|
use Friendica\Core\Renderer;
|
|
|
|
use Friendica\Network\HTTPException\InternalServerErrorException;
|
2020-02-04 21:32:18 +01:00
|
|
|
use Psr\Log\LoggerInterface;
|
2020-02-01 20:08:54 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Builder for system-wide emails without any dependency to concrete entities (like items, activities, ..)
|
|
|
|
*/
|
|
|
|
class SystemMailBuilder extends MailBuilder
|
|
|
|
{
|
|
|
|
/** @var string */
|
2020-03-05 00:40:42 +01:00
|
|
|
protected $subject = '';
|
2020-02-01 20:08:54 +01:00
|
|
|
/** @var string */
|
2020-03-05 00:40:42 +01:00
|
|
|
protected $preamble = '';
|
2020-02-01 20:08:54 +01:00
|
|
|
/** @var string */
|
2020-03-07 12:48:25 +01:00
|
|
|
protected $body = '';
|
2020-02-01 20:08:54 +01:00
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
protected $siteAdmin;
|
|
|
|
|
2020-02-04 21:32:18 +01:00
|
|
|
public function __construct(L10n $l10n, BaseURL $baseUrl, IConfig $config, LoggerInterface $logger,
|
2020-02-04 21:33:53 +01:00
|
|
|
string $siteEmailAddress, string $siteName)
|
2020-02-01 20:08:54 +01:00
|
|
|
{
|
2020-02-04 21:32:18 +01:00
|
|
|
parent::__construct($l10n, $baseUrl, $config, $logger);
|
2020-02-01 20:08:54 +01:00
|
|
|
|
|
|
|
if ($this->config->get('config', 'admin_name')) {
|
|
|
|
$this->siteAdmin = $l10n->t('%1$s, %2$s Administrator', $this->config->get('config', 'admin_name'), $siteName);
|
|
|
|
} else {
|
|
|
|
$this->siteAdmin = $l10n->t('%s Administrator', $siteName);
|
|
|
|
}
|
2020-02-01 22:30:10 +01:00
|
|
|
|
2020-02-01 23:32:03 +01:00
|
|
|
// Set the system wide site address/name as sender (default for system mails)
|
2020-02-04 21:27:52 +01:00
|
|
|
$this->withSender($siteName, $siteEmailAddress, $siteEmailAddress);
|
2020-02-01 20:08:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a message
|
|
|
|
*
|
2020-03-07 12:48:25 +01:00
|
|
|
* @param string $subject The subject of the email
|
|
|
|
* @param string $preamble The preamble of the email
|
|
|
|
* @param string $body The body of the email (optional)
|
2020-02-01 20:08:54 +01:00
|
|
|
*
|
|
|
|
* @return static
|
|
|
|
*/
|
2020-03-07 12:48:25 +01:00
|
|
|
public function withMessage(string $subject, string $preamble, string $body = '')
|
2020-02-01 20:08:54 +01:00
|
|
|
{
|
|
|
|
$this->subject = $subject;
|
|
|
|
$this->preamble = $preamble;
|
|
|
|
$this->body = $body;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
protected function getSubject()
|
|
|
|
{
|
|
|
|
return $this->subject;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*
|
|
|
|
* @throws InternalServerErrorException
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
protected function getHtmlMessage()
|
|
|
|
{
|
|
|
|
// load the template for private message notifications
|
|
|
|
$tpl = Renderer::getMarkupTemplate('email/system/html.tpl');
|
|
|
|
return Renderer::replaceMacros($tpl, [
|
|
|
|
'$preamble' => str_replace("\n", "<br>\n", $this->preamble),
|
|
|
|
'$thanks' => $this->l10n->t('thanks'),
|
|
|
|
'$site_admin' => $this->siteAdmin,
|
2020-03-07 12:48:25 +01:00
|
|
|
'$htmlversion' => BBCode::convert($this->body),
|
2020-02-01 20:08:54 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
protected function getPlaintextMessage()
|
|
|
|
{
|
|
|
|
// load the template for private message notifications
|
|
|
|
$tpl = Renderer::getMarkupTemplate('email/system/text.tpl');
|
|
|
|
return Renderer::replaceMacros($tpl, [
|
|
|
|
'$preamble' => $this->preamble,
|
|
|
|
'$thanks' => $this->l10n->t('thanks'),
|
|
|
|
'$site_admin' => $this->siteAdmin,
|
2020-03-07 12:48:25 +01:00
|
|
|
'$textversion' => BBCode::toPlaintext($this->body),
|
2020-02-01 20:08:54 +01:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|