/home/ivoiecob/email.hirewise-va.com/vendor/afterlogic/mailso/lib/MailSo/Mime/Parameter.php
<?php
/**
 * This code is licensed under AGPLv3 license or Afterlogic Software License
 * if commercial version of the product was purchased.
 * For full statements of the licenses see LICENSE-AFTERLOGIC and LICENSE-AGPL3 files.
 */

namespace MailSo\Mime;

/**
 * @license https://www.gnu.org/licenses/agpl-3.0.html AGPL-3.0
 * @license https://afterlogic.com/products/common-licensing Afterlogic Software License
 * @copyright Copyright (c) 2019, Afterlogic Corp.
 *
 * @category MailSo
 * @package Mime
 */
class Parameter
{
    /**
     * @var string
     */
    private $sName;

    /**
     * @var string
     */
    private $sValue;

    /**
     * @access private
     *
     * @param string $sName
     * @param string $sValue
     */
    private function __construct($sName, $sValue)
    {
        $this->sName = $sName;
        $this->sValue = $sValue;
    }

    /**
     * @param string $sName
     * @param string $sValue = ''
     *
     * @return \MailSo\Mime\Parameter
     */
    public static function NewInstance($sName, $sValue = '')
    {
        return new self($sName, $sValue);
    }

    /**
     * @param string $sRawParam
     *
     * @return \MailSo\Mime\Parameter
     */
    public static function CreateFromParameterLine($sRawParam)
    {
        $oParameter = self::NewInstance('');
        return $oParameter->Parse($sRawParam);
    }

    /**
     * @return \MailSo\Mime\Parameter
     */
    public function reset()
    {
        $this->sName = '';
        $this->sValue = '';

        return $this;
    }

    /**
     * @return string
     */
    public function Name()
    {
        return $this->sName;
    }

    /**
     * @return string
     */
    public function Value()
    {
        return $this->sValue;
    }

    /**
     * @param string $sRawParam
     * @param string $sSeparator = '='
     *
     * @return \MailSo\Mime\Parameter
     */
    public function Parse($sRawParam, $sSeparator = '=')
    {
        $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;
    }

    /**
     * @param bool $bConvertSpecialsName = false
     *
     * @return string
     */
    public function ToString($bConvertSpecialsName = false)
    {
        $sResult = '';
        if (0 < strlen($this->sName)) {
            $sResult = $this->sName.'=';
            if ($bConvertSpecialsName && in_array(strtolower($this->sName), array(
                strtolower(\MailSo\Mime\Enumerations\Parameter::NAME),
                strtolower(\MailSo\Mime\Enumerations\Parameter::FILENAME)
            ))) {
                $sResult .= '"'.\MailSo\Base\Utils::EncodeUnencodedValue(
                    \MailSo\Base\Enumerations\Encoding::BASE64_SHORT,
                    $this->sValue
                ).'"';
            } else {
                $sResult .= '"'.$this->sValue.'"';
            }
        }

        return $sResult;
    }
}