mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 12:09:20 +03:00
247 lines
7 KiB
PHP
247 lines
7 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 HeaderCollection extends \MailSo\Base\Collection
|
|
{
|
|
|
|
protected string $sRawHeaders = '';
|
|
|
|
protected string $sParentCharset = '';
|
|
|
|
function __construct(string $sRawHeaders = '', bool $bStoreRawHeaders = true, string $sParentCharset = '')
|
|
{
|
|
parent::__construct();
|
|
if (\strlen($sRawHeaders)) {
|
|
$this->Parse($sRawHeaders, $bStoreRawHeaders, $sParentCharset);
|
|
}
|
|
}
|
|
|
|
public function append($oHeader, bool $bToTop = false) : void
|
|
{
|
|
assert($oHeader instanceof Header);
|
|
parent::append($oHeader, $bToTop);
|
|
}
|
|
|
|
public function AddByName(string $sName, string $sValue, bool $bToTop = false) : self
|
|
{
|
|
$this->append(new Header($sName, $sValue), $bToTop);
|
|
return $this;
|
|
}
|
|
|
|
public function SetByName(string $sName, string $sValue, bool $bToTop = false) : self
|
|
{
|
|
return $this->RemoveByName($sName)->Add(new Header($sName, $sValue), $bToTop);
|
|
}
|
|
|
|
public function ValueByName(string $sHeaderName, bool $bCharsetAutoDetect = false) : string
|
|
{
|
|
$oHeader = $this->GetByName($sHeaderName);
|
|
return $oHeader ? ($bCharsetAutoDetect ? $oHeader->ValueWithCharsetAutoDetect() : $oHeader->Value()) : '';
|
|
}
|
|
|
|
public function ValuesByName(string $sHeaderName, bool $bCharsetAutoDetect = false) : array
|
|
{
|
|
$aResult = array();
|
|
$sHeaderNameLower = \strtolower($sHeaderName);
|
|
foreach ($this as $oHeader) {
|
|
if ($sHeaderNameLower === \strtolower($oHeader->Name())) {
|
|
$aResult[] = $bCharsetAutoDetect ? $oHeader->ValueWithCharsetAutoDetect() : $oHeader->Value();
|
|
}
|
|
}
|
|
return $aResult;
|
|
}
|
|
|
|
public function RemoveByName(string $sHeaderName) : self
|
|
{
|
|
$sHeaderName = \strtolower($sHeaderName);
|
|
$this->exchangeArray(array_filter($this->getArrayCopy(), function ($oHeader) use ($sHeaderName) {
|
|
return $oHeader && \strtolower($oHeader->Name()) !== $sHeaderName;
|
|
}));
|
|
return $this;
|
|
}
|
|
|
|
public function GetAsEmailCollection(string $sHeaderName, bool $bCharsetAutoDetect = false) : ?EmailCollection
|
|
{
|
|
return new EmailCollection(
|
|
$this->ValueByName($sHeaderName, $bCharsetAutoDetect)
|
|
);
|
|
}
|
|
|
|
public function ParametersByName(string $sHeaderName) : ?ParameterCollection
|
|
{
|
|
$oHeader = $this->GetByName($sHeaderName);
|
|
return $oHeader ? $oHeader->Parameters() : null;
|
|
}
|
|
|
|
public function ParameterValue(string $sHeaderName, string $sParamName) : string
|
|
{
|
|
$oParameters = $this->ParametersByName($sHeaderName);
|
|
return (null !== $oParameters) ? $oParameters->ParameterValueByName($sParamName) : '';
|
|
}
|
|
|
|
public function GetByName(string $sHeaderName) : ?Header
|
|
{
|
|
$sHeaderNameLower = \strtolower($sHeaderName);
|
|
foreach ($this as $oHeader) {
|
|
if ($sHeaderNameLower === \strtolower($oHeader->Name())) {
|
|
return $oHeader;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public function SetParentCharset(string $sParentCharset) : self
|
|
{
|
|
if (\strlen($sParentCharset) && $this->sParentCharset !== $sParentCharset) {
|
|
foreach ($this as $oHeader) {
|
|
$oHeader->SetParentCharset($sParentCharset);
|
|
}
|
|
$this->sParentCharset = $sParentCharset;
|
|
}
|
|
return $this;
|
|
}
|
|
|
|
public function Clear() : void
|
|
{
|
|
parent::Clear();
|
|
$this->sRawHeaders = '';
|
|
}
|
|
|
|
public function Parse(string $sRawHeaders, bool $bStoreRawHeaders = false, string $sParentCharset = '') : self
|
|
{
|
|
$this->Clear();
|
|
|
|
if ($bStoreRawHeaders) {
|
|
$this->sRawHeaders = $sRawHeaders;
|
|
}
|
|
|
|
if (\strlen($this->sParentCharset)) {
|
|
$this->sParentCharset = $sParentCharset;
|
|
}
|
|
|
|
$aHeaders = \explode("\n", \str_replace("\r", '', $sRawHeaders));
|
|
|
|
$sName = null;
|
|
$sValue = null;
|
|
foreach ($aHeaders as $sHeadersValue) {
|
|
if (!\strlen($sHeadersValue)) {
|
|
continue;
|
|
}
|
|
|
|
$sFirstChar = \substr($sHeadersValue, 0, 1);
|
|
if ($sFirstChar !== ' ' && $sFirstChar !== "\t" && false === \strpos($sHeadersValue, ':')) {
|
|
continue;
|
|
}
|
|
if (null !== $sName && ($sFirstChar === ' ' || $sFirstChar === "\t")) {
|
|
$sValue = \is_null($sValue) ? '' : $sValue;
|
|
|
|
if ('?=' === \substr(\rtrim($sHeadersValue), -2)) {
|
|
$sHeadersValue = \rtrim($sHeadersValue);
|
|
}
|
|
|
|
if ('=?' === \substr(\ltrim($sHeadersValue), 0, 2)) {
|
|
$sHeadersValue = \ltrim($sHeadersValue);
|
|
}
|
|
|
|
if ('=?' === \substr($sHeadersValue, 0, 2)) {
|
|
$sValue .= $sHeadersValue;
|
|
} else {
|
|
$sValue .= "\n".$sHeadersValue;
|
|
}
|
|
} else {
|
|
if (null !== $sName) {
|
|
$oHeader = Header::NewInstanceFromEncodedString($sName.': '.$sValue, $this->sParentCharset);
|
|
if ($oHeader) {
|
|
$this->append($oHeader);
|
|
}
|
|
|
|
$sName = null;
|
|
$sValue = null;
|
|
}
|
|
|
|
$aHeaderParts = \explode(':', $sHeadersValue, 2);
|
|
$sName = $aHeaderParts[0];
|
|
$sValue = isset($aHeaderParts[1]) ? $aHeaderParts[1] : '';
|
|
|
|
if ('?=' === \substr(\rtrim($sValue), -2)) {
|
|
$sValue = \rtrim($sValue);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (null !== $sName) {
|
|
$oHeader = Header::NewInstanceFromEncodedString($sName.': '.$sValue, $this->sParentCharset);
|
|
if ($oHeader) {
|
|
$this->append($oHeader);
|
|
}
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* https://www.rfc-editor.org/rfc/rfc8601
|
|
* dkim=pass header.d=domain.tld header.s=s1 header.b=F2SfoZWw;
|
|
* spf=pass (ORIGINATING: domain of "snappymail@domain.tld" designates 0.0.0.0 as permitted sender) smtp.mailfrom="snappymail@domain.tld";
|
|
* dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=domain.tld (policy=none)
|
|
*/
|
|
public function AuthStatuses() : array
|
|
{
|
|
$aResult = [
|
|
'dkim' => [],
|
|
'dmarc' => [],
|
|
'spf' => []
|
|
];
|
|
$aHeaders = $this->ValuesByName(Enumerations\Header::AUTHENTICATION_RESULTS);
|
|
if (\count($aHeaders)) {
|
|
$aHeaders = \implode(';', $aHeaders);
|
|
$aHeaders = \preg_replace('/[\\r\\n\\t\\s]+/', ' ', $aHeaders);
|
|
$aHeaders = \explode(';', $aHeaders);
|
|
foreach ($aHeaders as $sLine) {
|
|
$aStatus = array();
|
|
$aHeader = array();
|
|
if (\preg_match("/(dkim|dmarc|spf)=([a-z0-9]+).*?(;|$)/Di", $sLine, $aStatus)
|
|
&& \preg_match('/(?:header\\.(?:d|i|from)|smtp.mailfrom)="?([^\\s;"]+)/i', $sLine, $aHeader)
|
|
) {
|
|
$sType = \strtolower($aStatus[1]);
|
|
$aResult[$sType][] = array(\strtolower($aStatus[2]), $aHeader[1], \trim($sLine));
|
|
}
|
|
}
|
|
}
|
|
if (!\count($aResult['dkim'])) {
|
|
// X-DKIM-Authentication-Results: signer="hostinger.com" status="pass"
|
|
$aHeaders = $this->ValuesByName(Enumerations\Header::X_DKIM_AUTHENTICATION_RESULTS);
|
|
foreach ($aHeaders as $sHeaderValue) {
|
|
$aStatus = array();
|
|
$aHeader = array();
|
|
$sHeaderValue = \preg_replace('/[\\r\\n\\t\\s]+/', ' ', $sHeaderValue);
|
|
if (\preg_match('/status[\\s]?=[\\s]?"([a-zA-Z0-9]+)"/i', $sHeaderValue, $aStatus) && !empty($aStatus[1])
|
|
&& \preg_match('/signer[\\s]?=[\\s]?"([^";]+)"/i', $sHeaderValue, $aHeader) && !empty($aHeader[1])
|
|
) {
|
|
$aResult['dkim'][] = array($aStatus[1], \trim($aHeader[1]), $sHeaderValue);
|
|
}
|
|
}
|
|
}
|
|
|
|
return $aResult;
|
|
}
|
|
|
|
public function __toString() : string
|
|
{
|
|
return \implode("\r\n", $this->getArrayCopy());
|
|
}
|
|
}
|