-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessage.php
More file actions
475 lines (427 loc) · 14.8 KB
/
Message.php
File metadata and controls
475 lines (427 loc) · 14.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
<?php
/*
* This file is part of Berlioz framework.
*
* @license https://opensource.org/licenses/MIT MIT License
* @copyright 2021 Ronan GIRON
* @author Ronan GIRON <https://github.com/ElGigi>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code, to the root.
*/
declare(strict_types=1);
namespace Berlioz\Http\Message;
use Berlioz\Http\Message\Parser\FormDataParser;
use Berlioz\Http\Message\Parser\FormUrlEncodedParser;
use Berlioz\Http\Message\Parser\JsonParser;
use Berlioz\Http\Message\Parser\ParserInterface;
use InvalidArgumentException;
use Psr\Http\Message\MessageInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Message\StreamInterface;
use RuntimeException;
use Stringable;
/**
* Class Message.
*/
abstract class Message implements MessageInterface, Stringable
{
protected static array $bodyParser = [
'application/json' => JsonParser::class,
'application/x-www-form-urlencoded' => FormUrlEncodedParser::class,
'multipart/form-data' => FormDataParser::class,
];
protected StreamInterface $body;
protected mixed $parsedBody = null;
public function __construct(
mixed $body,
protected array $headers = [],
protected ?string $protocolVersion = null,
) {
$this->headers = $this->normalizeHeaders($this->headers);
$this->body = $this->createStream($body);
}
/**
* Create stream.
*
* @param mixed $body
*
* @return StreamInterface
* @throws InvalidArgumentException
*/
private function createStream(mixed $body): StreamInterface
{
if ($body instanceof StreamInterface) {
return $body;
}
if (null === $body) {
return new Stream();
}
if (is_resource($body)) {
return new Stream($body);
}
if (!is_scalar($body)) {
throw new InvalidArgumentException(
sprintf('Body must be scalar type, actual "%s" type', get_debug_type($body))
);
}
$stream = new Stream();
$stream->write((string)$body);
return $stream;
}
/**
* Retrieves the HTTP protocol version as a string.
*
* The string MUST contain only the HTTP version number (e.g., "1.1", "1.0").
*
* @return string HTTP protocol version.
*/
public function getProtocolVersion(): string
{
return $this->protocolVersion ?? '1.1';
}
/**
* Return an instance with the specified HTTP protocol version.
*
* The version string MUST contain only the HTTP version number (e.g.,
* "1.1", "1.0").
*
* This method MUST be implemented in such a way as to retain the
* immutability of the message, and MUST return an instance that has the
* new protocol version.
*
* @param string $version HTTP protocol version
*
* @return static
*/
public function withProtocolVersion($version): static
{
$clone = clone $this;
$clone->protocolVersion = $version;
return $clone;
}
/**
* Retrieves all message header values.
*
* The keys represent the header name as it will be sent over the wire, and
* each value is an array of strings associated with the header.
*
* // Represent the headers as a string
* foreach ($message->getHeaders() as $name => $values) {
* echo $name . ": " . implode(", ", $values);
* }
*
* // Emit headers iteratively:
* foreach ($message->getHeaders() as $name => $values) {
* foreach ($values as $value) {
* header(sprintf('%s: %s', $name, $value), false);
* }
* }
*
* While header names are not case-sensitive, getHeaders() will preserve the
* exact case in which headers were originally specified.
*
* @return string[][] Returns an associative array of the message's headers. Each
* key MUST be a header name, and each value MUST be an array of strings
* for that header.
*/
public function getHeaders(): array
{
return $this->headers ?? [];
}
/**
* Checks if a header exists by the given case-insensitive name.
*
* @param string $name Case-insensitive header field name.
*
* @return bool Returns true if any header names match the given header
* name using a case-insensitive string comparison. Returns false if
* no matching header name is found in the message.
*/
public function hasHeader($name): bool
{
$name = ucwords(strtolower($name), ' -_');
return isset($this->headers[$name]);
}
/**
* Retrieves a message header value by the given case-insensitive name.
*
* This method returns an array of all the header values of the given
* case-insensitive header name.
*
* If the header does not appear in the message, this method MUST return an
* empty array.
*
* @param string $name Case-insensitive header field name.
*
* @return string[] An array of string values as provided for the given
* header. If the header does not appear in the message, this method MUST
* return an empty array.
*/
public function getHeader($name): array
{
$name = ucwords(strtolower($name), ' -_');
return $this->headers[$name] ?? [];
}
/**
* Retrieves a comma-separated string of the values for a single header.
*
* This method returns all of the header values of the given
* case-insensitive header name as a string concatenated together using
* a comma.
*
* NOTE: Not all header values may be appropriately represented using
* comma concatenation. For such headers, use getHeader() instead
* and supply your own delimiter when concatenating.
*
* If the header does not appear in the message, this method MUST return
* an empty string.
*
* @param string $name Case-insensitive header field name.
*
* @return string A string of values as provided for the given header
* concatenated together using a comma. If the header does not appear in
* the message, this method MUST return an empty string.
*/
public function getHeaderLine($name): string
{
$name = ucwords(strtolower($name), ' -_');
return isset($this->headers[$name]) ? implode(', ', $this->headers[$name]) : '';
}
/**
* Return an instance with the provided value replacing the specified header.
*
* While header names are case-insensitive, the casing of the header will
* be preserved by this function, and returned from getHeaders().
*
* This method MUST be implemented in such a way as to retain the
* immutability of the message, and MUST return an instance that has the
* new and/or updated header and value.
*
* @param string $name Case-insensitive header field name.
* @param string|string[] $value Header value(s).
*
* @return static
* @throws InvalidArgumentException for invalid header names or values.
*/
public function withHeader($name, $value): static
{
return $this->withHeaders([$name => $value]);
}
/**
* Return an instance with the provided value replacing the specified headers.
*
* While header names are case-insensitive, the casing of the header will
* be preserved by this function, and returned from getHeaders().
*
* @param string[] $headers Headers.
*
* @return static
*/
public function withHeaders(array $headers): static
{
$clone = clone $this;
$clone->headers = array_replace($clone->headers, $this->normalizeHeaders($headers));
return $clone;
}
/**
* Set headers.
*
* @param string[] $headers Headers.
*
* @return array
*/
protected function normalizeHeaders(array $headers): array
{
$final = [];
foreach ($headers as $name => $value) {
$name = ucwords(strtolower($name), ' -_');
$final[$name] = (array)$value;
}
array_walk_recursive($final, fn(&$value) => $value = (string)$value);
return $final;
}
/**
* Return an instance with the specified header appended with the given value.
*
* Existing values for the specified header will be maintained. The new
* value(s) will be appended to the existing list. If the header did not
* exist previously, it will be added.
*
* This method MUST be implemented in such a way as to retain the
* immutability of the message, and MUST return an instance that has the
* new header and/or value.
*
* @param string $name Case-insensitive header field name to add.
* @param string|string[] $value Header value(s).
*
* @return static
* @throws InvalidArgumentException for invalid header names or values.
*/
public function withAddedHeader($name, $value): static
{
$clone = clone $this;
$name = ucwords(strtolower($name), ' -_');
$value = (array)$value;
array_walk_recursive($value, fn(&$value) => $value = (string)$value);
$clone->headers[$name] = array_merge($clone->headers[$name] ?? [], (array)$value);
return $clone;
}
/**
* Return an instance without the specified header.
*
* Header resolution MUST be done without case-sensitivity.
*
* This method MUST be implemented in such a way as to retain the
* immutability of the message, and MUST return an instance that removes
* the named header.
*
* @param string $name Case-insensitive header field name to remove.
*
* @return static
*/
public function withoutHeader($name): static
{
$clone = clone $this;
$name = ucwords(strtolower($name), ' -_');
unset($clone->headers[$name]);
return $clone;
}
/**
* Gets the body of the message.
*
* @return StreamInterface Returns the body as a stream.
*/
public function getBody(): StreamInterface
{
return $this->body;
}
/**
* Return an instance with the specified message body.
*
* The body MUST be a StreamInterface object.
*
* This method MUST be implemented in such a way as to retain the
* immutability of the message, and MUST return a new instance that has the
* new body stream.
*
* @param StreamInterface $body Body.
*
* @return static
* @throws InvalidArgumentException When the body is not valid.
*/
public function withBody(StreamInterface $body): static
{
$clone = clone $this;
$clone->body = $body;
$clone->parsedBody = null;
return $clone;
}
/**
* Retrieve any parameters provided in the request body.
*
* If the request Content-Type is either application/x-www-form-urlencoded
* or multipart/form-data, and the request method is POST, this method MUST
* return the contents of $_POST.
*
* Otherwise, this method may return any results of deserializing
* the request body content; as parsing returns structured content, the
* potential types MUST be arrays or objects only. A null value indicates
* the absence of body content.
*
* @return mixed The deserialized body parameters, if any.
* These will typically be an array or object.
*/
public function getParsedBody(): mixed
{
if ($this->parsedBody) {
return $this->parsedBody;
}
$contentType = $this->getHeader('Content-Type');
$contentType = reset($contentType);
if (empty($contentType)) {
return $this->parsedBody;
}
$contentType = explode(';', $contentType);
$contentType = $contentType[0];
$contentType = explode('/', $contentType, 2);
$contentType[1] = explode('+', $contentType[1]);
$contentType = $contentType[0] . '/' . $contentType[1][count($contentType[1]) - 1];
$parsedBody = null;
if (isset(static::$bodyParser[$contentType])) {
$parsedBody = call_user_func([static::$bodyParser[$contentType], 'parseMessageBody'], $this);
}
if (null !== $parsedBody && !is_array($parsedBody) && !is_object($parsedBody)) {
throw new RuntimeException('Parsed body must be an array or an object or must be null.');
}
return $this->parsedBody = $parsedBody;
}
/**
* Return an instance with the specified body parameters.
*
* These MAY be injected during instantiation.
*
* If the request Content-Type is either application/x-www-form-urlencoded
* or multipart/form-data, and the request method is POST, use this method
* ONLY to inject the contents of $_POST.
*
* The data IS NOT REQUIRED to come from $_POST, but MUST be the results of
* deserializing the request body content. Deserialization/parsing returns
* structured data, and, as such, this method ONLY accepts arrays or objects,
* or a null value if nothing was available to parse.
*
* As an example, if content negotiation determines that the request data
* is a JSON payload, this method could be used to create a request
* instance with the deserialized parameters.
*
* This method MUST be implemented in such a way as to retain the
* immutability of the message, and MUST return an instance that has the
* updated body parameters.
*
* @param object|array|null $data The deserialized body data. This will
* typically be in an array or object.
*
* @return ServerRequestInterface|static
*/
public function withParsedBody($data): ServerRequestInterface|static
{
$clone = clone $this;
$clone->parsedBody = $data;
return $clone;
}
/**
* Get body parsers.
*
* @return string[]
*/
public static function getBodyParsers(): array
{
return static::$bodyParser;
}
/**
* Add body parser.
*
* @param array|string $mime Body parser
* @param string $parserClass Parser class
*
* @throws InvalidArgumentException
*/
public static function addBodyParser(array|string $mime, string $parserClass): void
{
if (!is_a($parserClass, ParserInterface::class, true)) {
throw new InvalidArgumentException(
sprintf('Parser class must implements %s interface', ParserInterface::class)
);
}
foreach ((array)$mime as $aMime) {
static::$bodyParser[$aMime] = $parserClass;
}
}
/**
* @inheritDoc
*/
public function __toString(): string
{
return (string)$this->getBody();
}
}