mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-03 14:37:02 +03:00
218 lines
5.4 KiB
PHP
218 lines
5.4 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of MailSo.
|
|
*
|
|
* (c) 2014 Usenko Timur
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace MailSo\Mime;
|
|
|
|
/**
|
|
* @category MailSo
|
|
* @package Mime
|
|
*/
|
|
class Email implements \JsonSerializable
|
|
{
|
|
private string $sDisplayName;
|
|
|
|
private string $sEmail;
|
|
|
|
private string $sDkimStatus = Enumerations\DkimStatus::NONE;
|
|
|
|
/**
|
|
* @throws \InvalidArgumentException
|
|
*/
|
|
function __construct(string $sEmail, string $sDisplayName = '')
|
|
{
|
|
if (!\strlen(\trim($sEmail))) {
|
|
throw new \InvalidArgumentException;
|
|
}
|
|
|
|
$this->sEmail = \MailSo\Base\Utils::IdnToAscii(
|
|
\MailSo\Base\Utils::Trim($sEmail), true);
|
|
|
|
$this->sDisplayName = \MailSo\Base\Utils::Trim($sDisplayName);
|
|
}
|
|
|
|
/**
|
|
* @throws \InvalidArgumentException
|
|
*/
|
|
public static function Parse(string $sEmailAddress) : self
|
|
{
|
|
$sEmailAddress = \MailSo\Base\Utils::Trim($sEmailAddress);
|
|
if (!\strlen(\trim($sEmailAddress))) {
|
|
throw new \InvalidArgumentException;
|
|
}
|
|
|
|
$sName = '';
|
|
$sEmail = '';
|
|
$sComment = '';
|
|
|
|
$bInName = false;
|
|
$bInAddress = false;
|
|
$bInComment = false;
|
|
|
|
$iStartIndex = 0;
|
|
$iEndIndex = 0;
|
|
$iCurrentIndex = 0;
|
|
|
|
while ($iCurrentIndex < \strlen($sEmailAddress)) {
|
|
switch ($sEmailAddress[$iCurrentIndex])
|
|
{
|
|
// case '\'':
|
|
case '"':
|
|
// $sQuoteChar = $sEmailAddress[$iCurrentIndex];
|
|
if (!$bInName && !$bInAddress && !$bInComment) {
|
|
$bInName = true;
|
|
$iStartIndex = $iCurrentIndex;
|
|
} else if (!$bInAddress && !$bInComment) {
|
|
$iEndIndex = $iCurrentIndex;
|
|
$sName = \substr($sEmailAddress, $iStartIndex + 1, $iEndIndex - $iStartIndex - 1);
|
|
$sEmailAddress = \substr_replace($sEmailAddress, '', $iStartIndex, $iEndIndex - $iStartIndex + 1);
|
|
$iEndIndex = 0;
|
|
$iCurrentIndex = 0;
|
|
$iStartIndex = 0;
|
|
$bInName = false;
|
|
}
|
|
break;
|
|
case '<':
|
|
if (!$bInName && !$bInAddress && !$bInComment) {
|
|
if ($iCurrentIndex > 0 && !\strlen($sName)) {
|
|
$sName = \substr($sEmailAddress, 0, $iCurrentIndex);
|
|
}
|
|
|
|
$bInAddress = true;
|
|
$iStartIndex = $iCurrentIndex;
|
|
}
|
|
break;
|
|
case '>':
|
|
if ($bInAddress) {
|
|
$iEndIndex = $iCurrentIndex;
|
|
$sEmail = \substr($sEmailAddress, $iStartIndex + 1, $iEndIndex - $iStartIndex - 1);
|
|
$sEmailAddress = \substr_replace($sEmailAddress, '', $iStartIndex, $iEndIndex - $iStartIndex + 1);
|
|
$iEndIndex = 0;
|
|
$iCurrentIndex = 0;
|
|
$iStartIndex = 0;
|
|
$bInAddress = false;
|
|
}
|
|
break;
|
|
case '(':
|
|
if (!$bInName && !$bInAddress && !$bInComment) {
|
|
$bInComment = true;
|
|
$iStartIndex = $iCurrentIndex;
|
|
}
|
|
break;
|
|
case ')':
|
|
if ($bInComment) {
|
|
$iEndIndex = $iCurrentIndex;
|
|
$sComment = \substr($sEmailAddress, $iStartIndex + 1, $iEndIndex - $iStartIndex - 1);
|
|
$sEmailAddress = \substr_replace($sEmailAddress, '', $iStartIndex, $iEndIndex - $iStartIndex + 1);
|
|
$iEndIndex = 0;
|
|
$iCurrentIndex = 0;
|
|
$iStartIndex = 0;
|
|
$bInComment = false;
|
|
}
|
|
break;
|
|
case '\\':
|
|
++$iCurrentIndex;
|
|
break;
|
|
}
|
|
|
|
++$iCurrentIndex;
|
|
}
|
|
|
|
if (!\strlen($sEmail)) {
|
|
$aRegs = array('');
|
|
if (\preg_match('/[^@\s]+@\S+/i', $sEmailAddress, $aRegs) && isset($aRegs[0])) {
|
|
$sEmail = $aRegs[0];
|
|
} else {
|
|
$sName = $sEmailAddress;
|
|
}
|
|
}
|
|
|
|
if (\strlen($sEmail) && !\strlen($sName) && !\strlen($sComment)) {
|
|
$sName = \str_replace($sEmail, '', $sEmailAddress);
|
|
}
|
|
|
|
$sEmail = \trim(\trim($sEmail), '<>');
|
|
$sEmail = \rtrim(\trim($sEmail), '.');
|
|
$sEmail = \trim($sEmail);
|
|
|
|
$sName = \trim(\trim($sName), '"');
|
|
$sName = \trim($sName, '\'');
|
|
$sComment = \trim(\trim($sComment), '()');
|
|
|
|
// Remove backslash
|
|
$sName = \preg_replace('/\\\\(.)/s', '$1', $sName);
|
|
$sComment = \preg_replace('/\\\\(.)/s', '$1', $sComment);
|
|
|
|
return new self($sEmail, $sName);
|
|
}
|
|
|
|
public function GetEmail(bool $bIdn = false) : string
|
|
{
|
|
return $bIdn ? \MailSo\Base\Utils::IdnToUtf8($this->sEmail) : $this->sEmail;
|
|
}
|
|
|
|
public function GetDisplayName() : string
|
|
{
|
|
return $this->sDisplayName;
|
|
}
|
|
|
|
public function GetAccountName() : string
|
|
{
|
|
return \MailSo\Base\Utils::GetAccountNameFromEmail($this->GetEmail(false));
|
|
}
|
|
|
|
public function GetDomain(bool $bIdn = false) : string
|
|
{
|
|
return \MailSo\Base\Utils::GetDomainFromEmail($this->GetEmail($bIdn));
|
|
}
|
|
|
|
public function SetDkimStatus(string $sDkimStatus)
|
|
{
|
|
$this->sDkimStatus = Enumerations\DkimStatus::normalizeValue($sDkimStatus);
|
|
}
|
|
|
|
public function ToString(bool $bConvertSpecialsName = false, bool $bIdn = false) : string
|
|
{
|
|
$sReturn = '';
|
|
|
|
$sDisplayName = \str_replace('"', '\"', $this->sDisplayName);
|
|
if ($bConvertSpecialsName) {
|
|
$sDisplayName = \strlen($sDisplayName)
|
|
? \MailSo\Base\Utils::EncodeUnencodedValue(\MailSo\Base\Enumerations\Encoding::BASE64_SHORT, $sDisplayName)
|
|
: '';
|
|
}
|
|
|
|
$sDisplayName = \strlen($sDisplayName) ? '"'.$sDisplayName.'"' : '';
|
|
if (\strlen($this->sEmail)) {
|
|
$sReturn = $this->GetEmail($bIdn);
|
|
if (\strlen($sDisplayName)) {
|
|
$sReturn = $sDisplayName.' <'.$sReturn.'>';
|
|
}
|
|
}
|
|
|
|
return \trim($sReturn);
|
|
}
|
|
|
|
public function __toString() : string
|
|
{
|
|
return $this->ToString();
|
|
}
|
|
|
|
#[\ReturnTypeWillChange]
|
|
public function jsonSerialize()
|
|
{
|
|
return array(
|
|
'@Object' => 'Object/Email',
|
|
'Name' => \MailSo\Base\Utils::Utf8Clear($this->GetDisplayName()),
|
|
'Email' => \MailSo\Base\Utils::Utf8Clear($this->GetEmail(true)),
|
|
'DkimStatus' => $this->sDkimStatus
|
|
);
|
|
}
|
|
}
|