-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathResponse.php
More file actions
474 lines (426 loc) · 11.3 KB
/
Copy pathResponse.php
File metadata and controls
474 lines (426 loc) · 11.3 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
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 3.0.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Http\Client;
use Cake\Core\Exception\CakeException;
use Cake\Http\Cookie\CookieCollection;
use Laminas\Diactoros\MessageTrait;
use Laminas\Diactoros\Stream;
use Psr\Http\Message\ResponseInterface;
use SimpleXMLElement;
/**
* Implements methods for HTTP responses.
*
* All the following examples assume that `$response` is an
* instance of this class.
*
* ### Get header values
*
* Header names are case-insensitive, but normalized to Title-Case
* when the response is parsed.
*
* ```
* $val = $response->getHeaderLine('content-type');
* ```
*
* Will read the Content-Type header. You can get all set
* headers using:
*
* ```
* $response->getHeaders();
* ```
*
* ### Get the response body
*
* You can access the response body stream using:
*
* ```
* $content = $response->getBody();
* ```
*
* You can get the body string using:
*
* ```
* $content = $response->getStringBody();
* ```
*
* If your response body is in XML or JSON you can use
* special content type specific accessors to read the decoded data.
* JSON data will be returned as arrays, while XML data will be returned
* as SimpleXML nodes:
*
* ```
* // Get as XML
* $content = $response->getXml()
* // Get as JSON
* $content = $response->getJson()
* ```
*
* If the response cannot be decoded, null will be returned.
*
* ### Check the status code
*
* You can access the response status code using:
*
* ```
* $content = $response->getStatusCode();
* ```
*/
class Response extends Message implements ResponseInterface
{
use MessageTrait;
/**
* The status code of the response.
*
* @var int
*/
protected int $code = 0;
/**
* Cookie Collection instance
*
* @var \Cake\Http\Cookie\CookieCollection|null
*/
protected ?CookieCollection $cookies = null;
/**
* The reason phrase for the status code
*
* @var string
*/
protected string $reasonPhrase;
/**
* Cached decoded XML data.
*
* @var \SimpleXMLElement|null
*/
protected ?SimpleXMLElement $_xml = null;
/**
* Cached decoded JSON data.
*
* @var mixed
*/
protected mixed $_json = null;
/**
* Constructor
*
* @param array<string> $headers Unparsed headers.
* @param string $body The response body.
*/
public function __construct(array $headers = [], string $body = '')
{
$this->_parseHeaders($headers);
if ($this->getHeaderLine('Content-Encoding') === 'gzip') {
$body = $this->_decodeGzipBody($body);
}
$stream = new Stream('php://memory', 'wb+');
$stream->write($body);
$stream->rewind();
$this->stream = $stream;
}
/**
* Uncompress a gzip response.
*
* Looks for gzip signatures, and if gzinflate() exists,
* the body will be decompressed.
*
* @param string $body Gzip encoded body.
* @return string
* @throws \Cake\Core\Exception\CakeException When attempting to decode gzip content without gzinflate.
*/
protected function _decodeGzipBody(string $body): string
{
if (!function_exists('gzinflate')) {
throw new CakeException('Cannot decompress gzip response body without gzinflate()');
}
$offset = 0;
// Look for gzip 'signature'
if (str_starts_with($body, "\x1f\x8b")) {
$offset = 2;
}
// Check the format byte
if (substr($body, $offset, 1) === "\x08") {
return (string)gzinflate(substr($body, $offset + 8));
}
throw new CakeException('Invalid gzip response');
}
/**
* Parses headers if necessary.
*
* - Decodes the status code and reason phrase.
* - Parses and normalizes header names and values.
*
* @param array<string> $headers Headers to parse.
* @return void
*/
protected function _parseHeaders(array $headers): void
{
foreach ($headers as $value) {
if (preg_match('/^HTTP\/([\d.]+) ([0-9]+)(.*)/i', $value, $matches)) {
$this->protocol = $matches[1];
$this->code = (int)$matches[2];
$this->reasonPhrase = trim($matches[3]);
continue;
}
if (!str_contains($value, ':')) {
continue;
}
[$name, $value] = explode(':', $value, 2);
$value = trim($value);
/** @var non-empty-string $name */
$name = trim($name);
$normalized = strtolower($name);
if (isset($this->headers[$name])) {
$this->headers[$name][] = $value;
} else {
$this->headers[$name] = (array)$value;
$this->headerNames[$normalized] = $name;
}
}
}
/**
* Check if the response status code was in the 2xx/3xx range
*
* @return bool
*/
public function isOk(): bool
{
return $this->code >= 200 && $this->code <= 399;
}
/**
* Check if the response status code was in the 2xx range
*
* @return bool
*/
public function isSuccess(): bool
{
return $this->code >= 200 && $this->code <= 299;
}
/**
* Check if the response had a redirect status code.
*
* @return bool
*/
public function isRedirect(): bool
{
$codes = [
static::STATUS_MOVED_PERMANENTLY,
static::STATUS_FOUND,
static::STATUS_SEE_OTHER,
static::STATUS_TEMPORARY_REDIRECT,
static::STATUS_PERMANENT_REDIRECT,
];
return in_array($this->code, $codes, true) &&
$this->getHeaderLine('Location');
}
/**
* {@inheritDoc}
*
* @return int The status code.
*/
public function getStatusCode(): int
{
return $this->code;
}
/**
* {@inheritDoc}
*
* @param int $code The status code to set.
* @param string $reasonPhrase The status reason phrase.
* @return static A copy of the current object with an updated status code.
*/
public function withStatus(int $code, string $reasonPhrase = ''): static
{
$new = clone $this;
$new->code = $code;
$new->reasonPhrase = $reasonPhrase;
return $new;
}
/**
* {@inheritDoc}
*
* @return string The current reason phrase.
*/
public function getReasonPhrase(): string
{
return $this->reasonPhrase;
}
/**
* Get the encoding if it was set.
*
* @return string|null
*/
public function getEncoding(): ?string
{
$content = $this->getHeaderLine('content-type');
if (!$content) {
return null;
}
preg_match('/charset\s?=\s?[\'"]?([a-z0-9-_]+)[\'"]?/i', $content, $matches);
if (empty($matches[1])) {
return null;
}
return $matches[1];
}
/**
* Get the all cookie data.
*
* @return array The cookie data
*/
public function getCookies(): array
{
return $this->_getCookies();
}
/**
* Get the cookie collection from this response.
*
* This method exposes the response's CookieCollection
* instance allowing you to interact with cookie objects directly.
*
* @return \Cake\Http\Cookie\CookieCollection
*/
public function getCookieCollection(): CookieCollection
{
return $this->buildCookieCollection();
}
/**
* Get the value of a single cookie.
*
* @param string $name The name of the cookie value.
* @return array|string|null Either the cookie's value or null when the cookie is undefined.
*/
public function getCookie(string $name): array|string|null
{
$cookies = $this->buildCookieCollection();
if (!$cookies->has($name)) {
return null;
}
return $cookies->get($name)->getValue();
}
/**
* Get the full data for a single cookie.
*
* @param string $name The name of the cookie value.
* @return array|null Either the cookie's data or null when the cookie is undefined.
*/
public function getCookieData(string $name): ?array
{
$cookies = $this->buildCookieCollection();
if (!$cookies->has($name)) {
return null;
}
return $cookies->get($name)->toArray();
}
/**
* Lazily build the CookieCollection and cookie objects from the response header
*
* @return \Cake\Http\Cookie\CookieCollection
*/
protected function buildCookieCollection(): CookieCollection
{
$this->cookies ??= CookieCollection::createFromHeader($this->getHeader('Set-Cookie'));
return $this->cookies;
}
/**
* Property accessor for `$this->cookies`
*
* @return array Array of Cookie data.
*/
protected function _getCookies(): array
{
$out = [];
foreach ($this->buildCookieCollection() as $cookie) {
$out[$cookie->getName()] = $cookie->toArray();
}
return $out;
}
/**
* Get the response body as string.
*
* @return string
*/
public function getStringBody(): string
{
return $this->_getBody();
}
/**
* Get the response body as JSON decoded data.
*
* @return mixed
*/
public function getJson(): mixed
{
return $this->_getJson();
}
/**
* Get the response body as JSON decoded data.
*
* @return mixed
*/
protected function _getJson(): mixed
{
if ($this->_json) {
return $this->_json;
}
return $this->_json = json_decode($this->_getBody(), true);
}
/**
* Get the response body as XML decoded data.
*
* @return \SimpleXMLElement|null
*/
public function getXml(): ?SimpleXMLElement
{
return $this->_getXml();
}
/**
* Get the response body as XML decoded data.
*
* @return \SimpleXMLElement|null
*/
protected function _getXml(): ?SimpleXMLElement
{
if ($this->_xml !== null) {
return $this->_xml;
}
libxml_use_internal_errors();
$data = simplexml_load_string($this->_getBody());
if (!$data) {
return null;
}
$this->_xml = $data;
return $this->_xml;
}
/**
* Provides magic __get() support.
*
* @return array<string>
*/
protected function _getHeaders(): array
{
$out = [];
foreach ($this->headers as $key => $values) {
$out[$key] = implode(',', $values);
}
return $out;
}
/**
* Provides magic __get() support.
*
* @return string
*/
protected function _getBody(): string
{
$this->stream->rewind();
return $this->stream->getContents();
}
}