mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-08 14:14:26 +08:00
105 lines
1.9 KiB
PHP
105 lines
1.9 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 Parameter implements \JsonSerializable
|
|
{
|
|
private string $sName;
|
|
|
|
private string $sValue;
|
|
|
|
function __construct(string $sName, string $sValue)
|
|
{
|
|
$this->sName = $sName;
|
|
$this->sValue = $sValue;
|
|
}
|
|
|
|
public static function CreateFromParameterLine(string $sRawParam) : self
|
|
{
|
|
$oParameter = new self('', '');
|
|
return $oParameter->Parse($sRawParam);
|
|
}
|
|
|
|
public function Reset() : self
|
|
{
|
|
$this->sName = '';
|
|
$this->sValue = '';
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function Name() : string
|
|
{
|
|
return $this->sName;
|
|
}
|
|
|
|
public function Value() : string
|
|
{
|
|
return $this->sValue;
|
|
}
|
|
|
|
public function setValue(string $sValue) : void
|
|
{
|
|
$this->sValue = $sValue;
|
|
}
|
|
|
|
public function Parse(string $sRawParam, string $sSeparator = '=') : self
|
|
{
|
|
$this->Reset();
|
|
|
|
$aParts = \explode($sSeparator, $sRawParam, 2);
|
|
|
|
$this->sName = \trim(\trim($aParts[0]), '"\'');
|
|
if (2 === \count($aParts)) {
|
|
$this->sValue = \trim(\trim($aParts[1]), '"\'');
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function ToString(bool $bConvertSpecialsName = false) : string
|
|
{
|
|
if (!\strlen($this->sName)) {
|
|
return '';
|
|
}
|
|
|
|
if ($bConvertSpecialsName && \in_array(\strtolower($this->sName), array(
|
|
\strtolower(Enumerations\Parameter::NAME),
|
|
\strtolower(Enumerations\Parameter::FILENAME)
|
|
)))
|
|
{
|
|
return $this->sName . '="' . \MailSo\Base\Utils::EncodeUnencodedValue(
|
|
\MailSo\Base\Enumerations\Encoding::BASE64_SHORT,
|
|
$this->sValue) . '"';
|
|
}
|
|
|
|
return $this->sName . '="' . $this->sValue . '"';
|
|
}
|
|
|
|
public function __toString() : string
|
|
{
|
|
return $this->ToString();
|
|
}
|
|
|
|
#[\ReturnTypeWillChange]
|
|
public function jsonSerialize()
|
|
{
|
|
return array(
|
|
'name' => $this->sName,
|
|
'value' => $this->sValue
|
|
);
|
|
}
|
|
}
|