![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-mail/src/Header/ |
<?php namespace Laminas\Mail\Header; use Laminas\Mail\Headers; use Laminas\Mime\Mime; use function array_reduce; use function explode; use function extension_loaded; use function iconv_mime_decode; use function iconv_mime_encode; use function imap_mime_header_decode; use function imap_utf8; use function implode; use function str_contains; use function str_pad; use function str_starts_with; use function strlen; use function strpos; use function substr; use function wordwrap; use const ICONV_MIME_DECODE_CONTINUE_ON_ERROR; /** * Utility class used for creating wrapped or MIME-encoded versions of header * values. */ // phpcs:ignore WebimpressCodingStandard.NamingConventions.AbstractClass.Prefix abstract class HeaderWrap { /** * Wrap a long header line * * @param string $value * @return string */ public static function wrap($value, HeaderInterface $header) { if ($header instanceof UnstructuredInterface) { return static::wrapUnstructuredHeader($value, $header); } elseif ($header instanceof StructuredInterface) { return static::wrapStructuredHeader($value, $header); } return $value; } /** * Wrap an unstructured header line * * Wrap at 78 characters or before, based on whitespace. * * @param string $value * @return string */ protected static function wrapUnstructuredHeader($value, HeaderInterface $header) { $headerNameColonSize = strlen($header->getFieldName() . ': '); $encoding = $header->getEncoding(); if ($encoding == 'ASCII') { /* * Before folding the header line, it is necessary to calculate the length of the * entire header (including the name and colon). We need to put a stub at the * beginning of the value so that the folding is performed correctly. */ $headerLine = str_pad('0', $headerNameColonSize, '0') . $value; $foldedHeaderLine = wordwrap($headerLine, 78, Headers::FOLDING); // Remove the stub and return the header folded value. return substr($foldedHeaderLine, $headerNameColonSize); } return static::mimeEncodeValue($value, $encoding, 78, $headerNameColonSize); } /** * Wrap a structured header line * * @param string $value * @return string */ protected static function wrapStructuredHeader($value, StructuredInterface $header) { $delimiter = $header->getDelimiter(); $length = strlen($value); $lines = []; $temp = ''; for ($i = 0; $i < $length; $i++) { $temp .= $value[$i]; if ($value[$i] == $delimiter) { $lines[] = $temp; $temp = ''; } } return implode(Headers::FOLDING, $lines); } /** * MIME-encode a value * * Performs quoted-printable encoding on a value, setting maximum * line-length to 998. * * @param string $value * @param string $encoding * @param int $lineLength Maximum line-length, by default 998 * @param positive-int|0 $firstLineGapSize When folding a line, it is necessary to calculate * the length of the entire line (together with the * header name). Therefore, you can specify the header * name and colon length in this argument to fold the * string properly. * @return string Returns the mime encode value without the last line ending */ public static function mimeEncodeValue($value, $encoding, $lineLength = 998, $firstLineGapSize = 0) { return Mime::encodeQuotedPrintableHeader($value, $encoding, $lineLength, Headers::EOL, $firstLineGapSize); } /** * MIME-decode a value * * Performs quoted-printable decoding on a value. * * @param string $value * @return string Returns the mime encode value without the last line ending */ public static function mimeDecodeValue($value) { // unfold first, because iconv_mime_decode is discarding "\n" with no apparent reason // making the resulting value no longer valid. // see https://tools.ietf.org/html/rfc2822#section-2.2.3 about unfolding $parts = explode(Headers::FOLDING, $value); $value = implode(' ', $parts); $decodedValue = iconv_mime_decode($value, ICONV_MIME_DECODE_CONTINUE_ON_ERROR, 'UTF-8'); // imap (unlike iconv) can handle multibyte headers which are splitted across multiple line if (self::isNotDecoded($value, $decodedValue) && extension_loaded('imap')) { return array_reduce( imap_mime_header_decode(imap_utf8($value)), static fn($accumulator, $headerPart) => $accumulator . $headerPart->text, '' ); } return $decodedValue; } private static function isNotDecoded(string $originalValue, string $value): bool { return str_starts_with($value, '=?') && strlen($value) - 2 === strpos($value, '?=') && str_contains($originalValue, $value); } /** * Test if is possible apply MIME-encoding * * @param string $value * @return bool */ public static function canBeEncoded($value) { // avoid any wrapping by specifying line length long enough // "test" -> 4 // "x-test: =?ISO-8859-1?B?dGVzdA==?=" -> 33 // 8 +2 +3 +3 -> 16 $charset = 'UTF-8'; $lineLength = strlen($value) * 4 + strlen($charset) + 16; $preferences = [ 'scheme' => 'Q', 'input-charset' => $charset, 'output-charset' => $charset, 'line-length' => $lineLength, ]; $encoded = iconv_mime_encode('x-test', $value, $preferences); return false !== $encoded; } }