2020-02-02 18:07:22 -05:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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-02 18:07:22 -05: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 15:13:36 -05:00
|
|
|
use Psr\Log\LoggerInterface;
|
2020-02-02 18:07:22 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Builder for notification emails (notification, source, links, ...)
|
|
|
|
*/
|
2020-02-04 15:27:52 -05:00
|
|
|
class NotifyMailBuilder extends MailBuilder
|
2020-02-02 18:07:22 -05:00
|
|
|
{
|
2020-02-04 15:27:52 -05:00
|
|
|
/** @var string */
|
|
|
|
protected $subject;
|
|
|
|
/** @var string */
|
|
|
|
protected $preamble;
|
|
|
|
/** @var string */
|
|
|
|
protected $body;
|
|
|
|
|
|
|
|
/** @var string */
|
|
|
|
protected $siteAdmin;
|
|
|
|
|
2020-02-02 18:07:22 -05:00
|
|
|
/** @var bool */
|
2020-02-04 15:38:59 -05:00
|
|
|
private $contentAllowed = false;
|
2020-02-02 18:07:22 -05:00
|
|
|
/** @var string */
|
|
|
|
private $title = '';
|
|
|
|
/** @var array Details to print a photo:
|
|
|
|
* - image
|
|
|
|
* - link
|
|
|
|
* - name
|
|
|
|
*/
|
|
|
|
private $photo = [
|
|
|
|
'image' => null,
|
|
|
|
'link' => null,
|
|
|
|
'name' => null,
|
|
|
|
];
|
|
|
|
/** @var array HTML/Plain version of the Site Link:
|
|
|
|
* - html
|
|
|
|
* - text
|
|
|
|
*/
|
|
|
|
private $siteLink = [
|
|
|
|
'html' => '',
|
|
|
|
'text' => '',
|
|
|
|
];
|
|
|
|
/** @var string The item link */
|
|
|
|
private $itemLink = '';
|
|
|
|
|
2020-02-04 15:13:36 -05:00
|
|
|
public function __construct(L10n $l10n, BaseURL $baseUrl, IConfig $config, LoggerInterface $logger, string $siteEmailAddress, string $siteName)
|
2020-02-02 18:07:22 -05:00
|
|
|
{
|
2020-02-04 15:13:36 -05:00
|
|
|
parent::__construct($l10n, $baseUrl, $config, $logger);
|
2020-02-04 15:27:52 -05: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);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the system wide site address/name as sender (default for system mails)
|
|
|
|
$this->withSender($siteName, $siteEmailAddress, $siteEmailAddress);
|
2020-02-02 18:07:22 -05:00
|
|
|
|
|
|
|
// check whether sending post content in email notifications is allowed
|
2020-02-04 15:38:59 -05:00
|
|
|
$this->contentAllowed = !$this->config->get('system', 'enotify_no_content', false);
|
2020-02-02 18:07:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a notification (in fact a more detailed message)
|
|
|
|
*
|
|
|
|
* @param string $subject
|
|
|
|
* @param string $preamble
|
|
|
|
* @param string $title
|
|
|
|
* @param string|null $body
|
|
|
|
*
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function withNotification(string $subject, string $preamble, string $title, string $body = null)
|
|
|
|
{
|
2020-02-04 15:27:52 -05:00
|
|
|
if (!isset($body)) {
|
|
|
|
$body = $preamble;
|
|
|
|
}
|
|
|
|
|
2020-02-02 18:07:22 -05:00
|
|
|
$this->title = stripslashes($title);
|
2020-02-04 15:27:52 -05:00
|
|
|
$this->subject = $subject;
|
|
|
|
$this->preamble = $preamble;
|
|
|
|
$this->body = $body;
|
2020-02-02 18:07:22 -05:00
|
|
|
|
2020-02-04 15:27:52 -05:00
|
|
|
return $this;
|
2020-02-02 18:07:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a photo of the source of the notify
|
|
|
|
*
|
|
|
|
* @param string $image The image link to the photo
|
|
|
|
* @param string $link The link to the source
|
|
|
|
* @param string $name The name of the source
|
|
|
|
*
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function withPhoto(string $image, string $link, string $name)
|
|
|
|
{
|
|
|
|
$this->photo = [
|
|
|
|
'image' => $image ?? '',
|
|
|
|
'link' => $link ?? '',
|
|
|
|
'name' => $name ?? '',
|
|
|
|
];
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a sitelink to the notification
|
|
|
|
*
|
|
|
|
* @param string $text The text version of the site link
|
|
|
|
* @param string $html The html version of the site link
|
|
|
|
*
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function withSiteLink(string $text, string $html = '')
|
|
|
|
{
|
|
|
|
$this->siteLink = [
|
|
|
|
'text' => $text,
|
|
|
|
'html' => $html,
|
|
|
|
];
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a link to the item of the notification
|
|
|
|
*
|
|
|
|
* @param string $link The text version of the item link
|
|
|
|
*
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function withItemLink(string $link)
|
|
|
|
{
|
|
|
|
$this->itemLink = $link;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
protected function getSubject()
|
|
|
|
{
|
|
|
|
return $this->subject;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*
|
|
|
|
* @throws InternalServerErrorException
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
protected function getHtmlMessage()
|
|
|
|
{
|
|
|
|
$htmlVersion = BBCode::convert($this->body);
|
|
|
|
|
|
|
|
// load the template for private message notifications
|
|
|
|
$tpl = Renderer::getMarkupTemplate('email/notify/html.tpl');
|
|
|
|
return Renderer::replaceMacros($tpl, [
|
|
|
|
'$preamble' => str_replace("\n", "<br>\n", $this->preamble),
|
|
|
|
'$source_name' => $this->photo['name'],
|
|
|
|
'$source_link' => $this->photo['link'],
|
|
|
|
'$source_photo' => $this->photo['image'],
|
|
|
|
'$hsitelink' => $this->siteLink['html'],
|
|
|
|
'$hitemlink' => sprintf('<a href="%s">%s</a>', $this->itemLink, $this->itemLink),
|
|
|
|
'$thanks' => $this->l10n->t('thanks'),
|
|
|
|
'$site_admin' => $this->siteAdmin,
|
|
|
|
'$title' => $this->title,
|
|
|
|
'$htmlversion' => $htmlVersion,
|
|
|
|
'$content_allowed' => $this->contentAllowed,
|
|
|
|
]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
|
|
|
protected function getPlaintextMessage()
|
|
|
|
{
|
|
|
|
$textVersion = BBCode::toPlaintext($this->body);
|
|
|
|
|
|
|
|
// load the template for private message notifications
|
|
|
|
$tpl = Renderer::getMarkupTemplate('email/notify/text.tpl');
|
|
|
|
return Renderer::replaceMacros($tpl, [
|
|
|
|
'$preamble' => $this->preamble,
|
|
|
|
'$tsitelink' => $this->siteLink['text'],
|
|
|
|
'$titemlink' => $this->itemLink,
|
|
|
|
'$thanks' => $this->l10n->t('thanks'),
|
|
|
|
'$site_admin' => $this->siteAdmin,
|
|
|
|
'$title' => $this->title,
|
|
|
|
'$textversion' => $textVersion,
|
|
|
|
'$content_allowed' => $this->contentAllowed,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|