| 1 |
<?php |
| 2 |
|
| 3 |
declare (strict_types=1); |
| 4 |
namespace YoastSEO_Vendor\GuzzleHttp\Psr7; |
| 5 |
|
| 6 |
use YoastSEO_Vendor\Psr\Http\Message\MessageInterface; |
| 7 |
use YoastSEO_Vendor\Psr\Http\Message\RequestInterface; |
| 8 |
use YoastSEO_Vendor\Psr\Http\Message\ResponseInterface; |
| 9 |
final class Message |
| 10 |
{ |
| 11 |
/** |
| 12 |
* Returns the string representation of an HTTP message. |
| 13 |
* |
| 14 |
* @param MessageInterface $message Message to convert to a string. |
| 15 |
*/ |
| 16 |
public static function toString(\YoastSEO_Vendor\Psr\Http\Message\MessageInterface $message) : string |
| 17 |
{ |
| 18 |
if ($message instanceof \YoastSEO_Vendor\Psr\Http\Message\RequestInterface) { |
| 19 |
$msg = \trim($message->getMethod() . ' ' . $message->getRequestTarget(), " \n\r\t\x00\v") . ' HTTP/' . $message->getProtocolVersion(); |
| 20 |
if (!$message->hasHeader('host')) { |
| 21 |
$msg .= "\r\nHost: " . $message->getUri()->getHost(); |
| 22 |
} |
| 23 |
} elseif ($message instanceof \YoastSEO_Vendor\Psr\Http\Message\ResponseInterface) { |
| 24 |
$msg = 'HTTP/' . $message->getProtocolVersion() . ' ' . $message->getStatusCode() . ' ' . $message->getReasonPhrase(); |
| 25 |
} else { |
| 26 |
throw new \InvalidArgumentException('Unknown message type'); |
| 27 |
} |
| 28 |
foreach ($message->getHeaders() as $name => $values) { |
| 29 |
if (\is_string($name) && \YoastSEO_Vendor\GuzzleHttp\Psr7\Utils::asciiToLower($name) === 'set-cookie') { |
| 30 |
foreach ($values as $value) { |
| 31 |
$msg .= "\r\n{$name}: " . $value; |
| 32 |
} |
| 33 |
} else { |
| 34 |
$msg .= "\r\n{$name}: " . \implode(', ', $values); |
| 35 |
} |
| 36 |
} |
| 37 |
return "{$msg}\r\n\r\n" . $message->getBody(); |
| 38 |
} |
| 39 |
/** |
| 40 |
* Get a short summary of the message body. |
| 41 |
* |
| 42 |
* Will return `null` if the response is not printable. |
| 43 |
* |
| 44 |
* @param MessageInterface $message The message to get the body summary |
| 45 |
* @param int $truncateAt The maximum allowed size of the summary |
| 46 |
*/ |
| 47 |
public static function bodySummary(\YoastSEO_Vendor\Psr\Http\Message\MessageInterface $message, int $truncateAt = 120) : ?string |
| 48 |
{ |
| 49 |
$body = $message->getBody(); |
| 50 |
if (!$body->isSeekable() || !$body->isReadable()) { |
| 51 |
return null; |
| 52 |
} |
| 53 |
$size = $body->getSize(); |
| 54 |
if ($size === 0) { |
| 55 |
return null; |
| 56 |
} |
| 57 |
$body->rewind(); |
| 58 |
$summary = $body->read($truncateAt); |
| 59 |
if ($size > $truncateAt) { |
| 60 |
if (\preg_match('//u', $summary) !== 1) { |
| 61 |
$summary = self::trimTrailingIncompleteUtf8Character($summary, $body->read(3)); |
| 62 |
} |
| 63 |
$summary .= ' (truncated...)'; |
| 64 |
} |
| 65 |
$body->rewind(); |
| 66 |
// Matches any printable character, including unicode characters: |
| 67 |
// letters, marks, numbers, punctuation, spacing, and separators. |
| 68 |
if (\preg_match('/[^\\pL\\pM\\pN\\pP\\pS\\pZ\\n\\r\\t]/u', $summary) !== 0) { |
| 69 |
return null; |
| 70 |
} |
| 71 |
return $summary; |
| 72 |
} |
| 73 |
/** |
| 74 |
* Trims a partial UTF-8 character from the end of a truncated string. |
| 75 |
*/ |
| 76 |
private static function trimTrailingIncompleteUtf8Character(string $summary, string $lookahead) : string |
| 77 |
{ |
| 78 |
$length = \strlen($summary); |
| 79 |
if ($length === 0) { |
| 80 |
return $summary; |
| 81 |
} |
| 82 |
$start = $length - 1; |
| 83 |
while ($start >= 0) { |
| 84 |
$byte = \ord($summary[$start]); |
| 85 |
if ($byte < 0x80 || $byte > 0xbf) { |
| 86 |
break; |
| 87 |
} |
| 88 |
--$start; |
| 89 |
} |
| 90 |
if ($start < 0) { |
| 91 |
return $summary; |
| 92 |
} |
| 93 |
$lead = \ord($summary[$start]); |
| 94 |
if ($lead >= 0xc2 && $lead <= 0xdf) { |
| 95 |
$expectedLength = 2; |
| 96 |
} elseif ($lead >= 0xe0 && $lead <= 0xef) { |
| 97 |
$expectedLength = 3; |
| 98 |
} elseif ($lead >= 0xf0 && $lead <= 0xf4) { |
| 99 |
$expectedLength = 4; |
| 100 |
} else { |
| 101 |
return $summary; |
| 102 |
} |
| 103 |
$availableLength = $length - $start; |
| 104 |
if ($availableLength >= $expectedLength) { |
| 105 |
return $summary; |
| 106 |
} |
| 107 |
$sequence = \substr($summary, $start) . \substr($lookahead, 0, $expectedLength - $availableLength); |
| 108 |
if (\strlen($sequence) !== $expectedLength || \preg_match('//u', $sequence) !== 1) { |
| 109 |
return $summary; |
| 110 |
} |
| 111 |
return \substr($summary, 0, $start); |
| 112 |
} |
| 113 |
/** |
| 114 |
* Attempts to rewind a message body and throws an exception on failure. |
| 115 |
* |
| 116 |
* The body of the message will only be rewound if a call to `tell()` |
| 117 |
* returns a value other than `0`. |
| 118 |
* |
| 119 |
* @param MessageInterface $message Message to rewind |
| 120 |
* |
| 121 |
* @throws \RuntimeException |
| 122 |
*/ |
| 123 |
public static function rewindBody(\YoastSEO_Vendor\Psr\Http\Message\MessageInterface $message) : void |
| 124 |
{ |
| 125 |
$body = $message->getBody(); |
| 126 |
if ($body->tell()) { |
| 127 |
$body->rewind(); |
| 128 |
} |
| 129 |
} |
| 130 |
/** |
| 131 |
* Parses an HTTP message into an associative array. |
| 132 |
* |
| 133 |
* The array contains the "start-line" key containing the start line of |
| 134 |
* the message, "headers" key containing an associative array of header |
| 135 |
* array values, and a "body" key containing the body of the message. |
| 136 |
* |
| 137 |
* @param string $message HTTP request or response to parse. |
| 138 |
*/ |
| 139 |
public static function parseMessage(string $message) : array |
| 140 |
{ |
| 141 |
if (!$message) { |
| 142 |
throw new \InvalidArgumentException('Invalid message'); |
| 143 |
} |
| 144 |
$message = \ltrim($message, "\r\n"); |
| 145 |
$messageParts = \preg_split("/\r?\n\r?\n/", $message, 2); |
| 146 |
if ($messageParts === \false) { |
| 147 |
throw new \RuntimeException('Unable to split HTTP message: ' . \preg_last_error_msg()); |
| 148 |
} |
| 149 |
if (\count($messageParts) !== 2) { |
| 150 |
throw new \InvalidArgumentException('Invalid message: Missing header delimiter'); |
| 151 |
} |
| 152 |
[$rawHeaders, $body] = $messageParts; |
| 153 |
$rawHeaders .= "\r\n"; |
| 154 |
// Put back the delimiter we split previously |
| 155 |
$headerParts = \preg_split("/\r?\n/", $rawHeaders, 2); |
| 156 |
if ($headerParts === \false) { |
| 157 |
throw new \RuntimeException('Unable to split HTTP message headers: ' . \preg_last_error_msg()); |
| 158 |
} |
| 159 |
if (\count($headerParts) !== 2) { |
| 160 |
throw new \InvalidArgumentException('Invalid message: Missing status line'); |
| 161 |
} |
| 162 |
[$startLine, $rawHeaders] = $headerParts; |
| 163 |
$versionMatch = \preg_match("/(?:^HTTP\\/|^[A-Z]+ \\S+ HTTP\\/)(\\d+(?:\\.\\d+)?)/i", $startLine, $matches); |
| 164 |
if ($versionMatch === \false) { |
| 165 |
throw new \RuntimeException('Unable to parse HTTP start line: ' . \preg_last_error_msg()); |
| 166 |
} |
| 167 |
if ($versionMatch === 1 && $matches[1] === '1.0') { |
| 168 |
// Header folding is deprecated for HTTP/1.1, but allowed in HTTP/1.0 |
| 169 |
$rawHeaders = \preg_replace(\YoastSEO_Vendor\GuzzleHttp\Psr7\Rfc7230::HEADER_FOLD_REGEX, ' ', $rawHeaders); |
| 170 |
if ($rawHeaders === null) { |
| 171 |
throw new \RuntimeException('Unable to unfold HTTP headers: ' . \preg_last_error_msg()); |
| 172 |
} |
| 173 |
} |
| 174 |
/** @var array[] $headerLines */ |
| 175 |
$count = \preg_match_all(\YoastSEO_Vendor\GuzzleHttp\Psr7\Rfc7230::HEADER_REGEX, $rawHeaders, $headerLines, \PREG_SET_ORDER); |
| 176 |
if ($count === \false) { |
| 177 |
throw new \RuntimeException('Unable to parse HTTP headers: ' . \preg_last_error_msg()); |
| 178 |
} |
| 179 |
// If these aren't the same, then one line didn't match and there's an invalid header. |
| 180 |
if ($count !== \substr_count($rawHeaders, "\n")) { |
| 181 |
// Folding is deprecated, see https://datatracker.ietf.org/doc/html/rfc7230#section-3.2.4 |
| 182 |
$hasFoldedHeader = \preg_match(\YoastSEO_Vendor\GuzzleHttp\Psr7\Rfc7230::HEADER_FOLD_REGEX, $rawHeaders); |
| 183 |
if ($hasFoldedHeader === \false) { |
| 184 |
throw new \RuntimeException('Unable to inspect HTTP header folding: ' . \preg_last_error_msg()); |
| 185 |
} |
| 186 |
if ($hasFoldedHeader === 1) { |
| 187 |
throw new \InvalidArgumentException('Invalid header syntax: Obsolete line folding'); |
| 188 |
} |
| 189 |
throw new \InvalidArgumentException('Invalid header syntax'); |
| 190 |
} |
| 191 |
$headers = []; |
| 192 |
foreach ($headerLines as $headerLine) { |
| 193 |
$headers[$headerLine[1]][] = $headerLine[2]; |
| 194 |
} |
| 195 |
return ['start-line' => $startLine, 'headers' => $headers, 'body' => $body]; |
| 196 |
} |
| 197 |
/** |
| 198 |
* Constructs a URI for an HTTP request message. |
| 199 |
* |
| 200 |
* @param string $path Path from the start-line |
| 201 |
* @param array $headers Array of headers (each value an array). |
| 202 |
*/ |
| 203 |
public static function parseRequestUri(string $path, array $headers) : string |
| 204 |
{ |
| 205 |
$host = self::getHostFromHeaders($headers); |
| 206 |
// If no host is found, then a full URI cannot be constructed. |
| 207 |
// Collapse leading slashes so an origin-form target cannot be |
| 208 |
// parsed as a network-path reference with its own authority. |
| 209 |
if ($host === null) { |
| 210 |
return self::normalizePathForOriginForm($path); |
| 211 |
} |
| 212 |
$scheme = \substr($host, -4) === ':443' ? 'https' : 'http'; |
| 213 |
return $scheme . '://' . $host . '/' . \ltrim($path, '/'); |
| 214 |
} |
| 215 |
private static function normalizePathForOriginForm(string $path) : string |
| 216 |
{ |
| 217 |
if (0 === \strpos($path, '//')) { |
| 218 |
return '/' . \ltrim($path, '/'); |
| 219 |
} |
| 220 |
return $path; |
| 221 |
} |
| 222 |
/** |
| 223 |
* @param array $headers Array of headers (each value an array). |
| 224 |
*/ |
| 225 |
private static function getHostFromHeaders(array $headers) : ?string |
| 226 |
{ |
| 227 |
$hostKey = \array_filter(\array_keys($headers), function ($k) { |
| 228 |
// Numeric array keys are converted to int by PHP. |
| 229 |
$k = (string) $k; |
| 230 |
return \YoastSEO_Vendor\GuzzleHttp\Psr7\Utils::asciiToLower($k) === 'host'; |
| 231 |
}); |
| 232 |
if (!$hostKey) { |
| 233 |
return null; |
| 234 |
} |
| 235 |
$host = $headers[\reset($hostKey)][0]; |
| 236 |
if (!\is_string($host) || \YoastSEO_Vendor\GuzzleHttp\Psr7\Rfc7230::parseHostHeader($host) === null) { |
| 237 |
throw new \InvalidArgumentException('Invalid request string'); |
| 238 |
} |
| 239 |
return $host; |
| 240 |
} |
| 241 |
/** |
| 242 |
* Parses a request message string into a request object. |
| 243 |
* |
| 244 |
* @param string $message Request message string. |
| 245 |
*/ |
| 246 |
public static function parseRequest(string $message) : \YoastSEO_Vendor\Psr\Http\Message\RequestInterface |
| 247 |
{ |
| 248 |
$data = self::parseMessage($message); |
| 249 |
if (\strpbrk($data['start-line'], "\r\n") !== \false) { |
| 250 |
throw new \InvalidArgumentException('Invalid request string'); |
| 251 |
} |
| 252 |
$matches = []; |
| 253 |
$requestStartLineMatch = \preg_match('/^[\\S]+\\s+([a-zA-Z]+:\\/\\/|\\/).*/', $data['start-line'], $matches); |
| 254 |
if ($requestStartLineMatch === \false) { |
| 255 |
throw new \RuntimeException('Unable to parse request start line: ' . \preg_last_error_msg()); |
| 256 |
} |
| 257 |
if ($requestStartLineMatch === 0) { |
| 258 |
throw new \InvalidArgumentException('Invalid request string'); |
| 259 |
} |
| 260 |
$parts = \explode(' ', $data['start-line'], 3); |
| 261 |
$version = isset($parts[2]) ? \explode('/', $parts[2])[1] : '1.1'; |
| 262 |
$request = new \YoastSEO_Vendor\GuzzleHttp\Psr7\Request($parts[0], $matches[1] === '/' ? self::parseRequestUri($parts[1], $data['headers']) : $parts[1], $data['headers'], $data['body'], $version); |
| 263 |
return $matches[1] === '/' ? $request : $request->withRequestTarget($parts[1]); |
| 264 |
} |
| 265 |
/** |
| 266 |
* Parses a response message string into a response object. |
| 267 |
* |
| 268 |
* @param string $message Response message string. |
| 269 |
*/ |
| 270 |
public static function parseResponse(string $message) : \YoastSEO_Vendor\Psr\Http\Message\ResponseInterface |
| 271 |
{ |
| 272 |
$data = self::parseMessage($message); |
| 273 |
if (\strpbrk($data['start-line'], "\r\n") !== \false) { |
| 274 |
throw new \InvalidArgumentException('Invalid response string'); |
| 275 |
} |
| 276 |
// According to https://datatracker.ietf.org/doc/html/rfc7230#section-3.1.2 |
| 277 |
// the space between status-code and reason-phrase is required. But |
| 278 |
// browsers accept responses without space and reason as well. |
| 279 |
$responseStartLineMatch = \preg_match('/^HTTP\\/.* [0-9]{3}( .*|$)/D', $data['start-line']); |
| 280 |
if ($responseStartLineMatch === \false) { |
| 281 |
throw new \RuntimeException('Unable to parse response start line: ' . \preg_last_error_msg()); |
| 282 |
} |
| 283 |
if ($responseStartLineMatch === 0) { |
| 284 |
throw new \InvalidArgumentException('Invalid response string: ' . $data['start-line']); |
| 285 |
} |
| 286 |
$parts = \explode(' ', $data['start-line'], 3); |
| 287 |
return new \YoastSEO_Vendor\GuzzleHttp\Psr7\Response((int) $parts[1], $data['headers'], $data['body'], \explode('/', $parts[0])[1], $parts[2] ?? null); |
| 288 |
} |
| 289 |
} |
| 290 |
|