Merge pull request #8207 from nupplaphil/bug/8206-securemail

Fix secure Mail addon
This commit is contained in:
Hypolite Petovan 2020-01-31 13:44:17 -05:00 committed by GitHub
commit 4ab893a561
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 60 additions and 24 deletions

View File

@ -3,13 +3,14 @@
namespace Friendica\Object\EMail;
use Friendica\Util\Emailer;
use JsonSerializable;
/**
* Interface for a single mail, which can be send through Emailer::send()
*
* @see Emailer::send()
*/
interface IEmail
interface IEmail extends JsonSerializable
{
/**
* Gets the senders name for this email
@ -68,4 +69,27 @@ interface IEmail
* @return string
*/
function getAdditionalMailHeader();
/**
* Returns the current email with a new recipient
*
* @param string $address The email of the recipient
* @param int $uid The (optional) UID of the recipient for further infos
*
* @return static
*/
function withRecipient(string $address, int $uid);
/**
* @param string $plaintext a new plaintext message for this email
* @param string $html a new html message for this email (optional)
*
* @return static
*/
function withMessage(string $plaintext, string $html = null);
/**
* @return string
*/
function __toString();
}

View File

@ -23,7 +23,7 @@ class Email implements IEmail
/** @var string */
private $subject;
/** @var string */
/** @var string|null */
private $msgHtml;
/** @var string */
private $msgText;
@ -117,40 +117,52 @@ class Email implements IEmail
}
/**
* Returns the current email with a new recipient
*
* @param string $email The email of the recipient
* @param int $uid The (optional) UID of the recipient for further infos
*
* @return static
* {@inheritDoc}
*/
public function withRecipient(string $email, int $uid = null)
public function withRecipient(string $address, int $uid = null)
{
$newEmail = clone $this;
$newEmail->toAddress = $email;
$newEmail->toAddress = $address;
$newEmail->toUid = $uid;
return $newEmail;
}
/**
* Creates a new Email instance based on a given prototype
*
* @param static $prototype The base prototype
* @param array $data The delta-data (key must be an existing property)
*
* @return static The new email instance
* {@inheritDoc}
*/
public static function createFromPrototype(Email $prototype, array $data = [])
public function withMessage(string $plaintext, string $html = null)
{
$newMail = clone $prototype;
foreach ($data as $key => $value) {
if (property_exists($newMail, $key)) {
$newMail->{$key} = $value;
}
}
$newMail = clone $this;
$newMail->msgText = $plaintext;
$newMail->msgHtml = $html;
return $newMail;
}
/**
* Returns the properties of the email as an array
*
* @return array
*/
private function toArray()
{
return get_object_vars($this);
}
/**
* @inheritDoc
*/
public function __toString()
{
return json_encode($this->toArray());
}
/**
* @inheritDoc
*/
public function jsonSerialize()
{
return $this->toArray();
}
}