forked from saloonphp/saloon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResponse.php
More file actions
634 lines (533 loc) · 15.9 KB
/
Response.php
File metadata and controls
634 lines (533 loc) · 15.9 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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
<?php
declare(strict_types=1);
namespace Saloon\Http;
use Throwable;
use LogicException;
use SimpleXMLElement;
use Saloon\Traits\Macroable;
use InvalidArgumentException;
use Saloon\Helpers\ArrayHelpers;
use Saloon\XmlWrangler\XmlReader;
use Illuminate\Support\Collection;
use Saloon\Contracts\FakeResponse;
use Saloon\Repositories\ArrayStore;
use Psr\Http\Message\StreamInterface;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
use Symfony\Component\DomCrawler\Crawler;
use Saloon\Helpers\RequestExceptionHelper;
use Saloon\Contracts\DataObjects\WithResponse;
use Saloon\Contracts\ArrayStore as ArrayStoreContract;
class Response
{
use Macroable;
/**
* The PSR request
*/
protected readonly RequestInterface $psrRequest;
/**
* The PSR response from the sender.
*/
protected readonly ResponseInterface $psrResponse;
/**
* The pending request that has all the request properties
*/
protected readonly PendingRequest $pendingRequest;
/**
* The original sender exception
*/
protected ?Throwable $senderException = null;
/**
* The decoded JSON response.
*
* @var array<array-key, mixed>
*/
protected array $decodedJson;
/**
* The decoded XML response.
*/
protected string $decodedXml;
/**
* Denotes if the response has been mocked.
*/
protected bool $mocked = false;
/**
* Denotes if the response has been cached.
*/
protected bool $cached = false;
/**
* The simulated response payload if the response was simulated.
*/
protected ?FakeResponse $fakeResponse = null;
/**
* Create a new response instance.
*/
public function __construct(ResponseInterface $psrResponse, PendingRequest $pendingRequest, RequestInterface $psrRequest, ?Throwable $senderException = null)
{
$this->psrRequest = $psrRequest;
$this->psrResponse = $psrResponse;
$this->pendingRequest = $pendingRequest;
$this->senderException = $senderException;
}
/**
* Create a new response instance
*/
public static function fromPsrResponse(ResponseInterface $psrResponse, PendingRequest $pendingRequest, RequestInterface $psrRequest, ?Throwable $senderException = null): static
{
return new static($psrResponse, $pendingRequest, $psrRequest, $senderException);
}
/**
* Get the pending request that created the response.
*/
public function getPendingRequest(): PendingRequest
{
return $this->pendingRequest;
}
/**
* Get the connector that sent the request
*/
public function getConnector(): Connector
{
return $this->pendingRequest->getConnector();
}
/**
* Get the original request that created the response.
*/
public function getRequest(): Request
{
return $this->pendingRequest->getRequest();
}
/**
* Get the PSR-7 request
*/
public function getPsrRequest(): RequestInterface
{
return $this->psrRequest;
}
/**
* Create a PSR response from the raw response.
*/
public function getPsrResponse(): ResponseInterface
{
return $this->psrResponse;
}
/**
* Get the body of the response as string.
*/
public function body(): string
{
$stream = $this->stream();
$contents = $stream->getContents();
if ($stream->isSeekable()) {
$stream->rewind();
}
return $contents;
}
/**
* Get the body as a stream.
*/
public function stream(): StreamInterface
{
$stream = $this->psrResponse->getBody();
if ($stream->isSeekable()) {
$stream->rewind();
}
return $stream;
}
/**
* Get the headers from the response.
*/
public function headers(): ArrayStoreContract
{
$headers = array_map(static function (array $header) {
return count($header) === 1 ? $header[0] : $header;
}, $this->psrResponse->getHeaders());
return new ArrayStore($headers);
}
/**
* Get the status code of the response.
*/
public function status(): int
{
return $this->psrResponse->getStatusCode();
}
/**
* Get the original sender exception
*/
public function getSenderException(): ?Throwable
{
return $this->senderException;
}
/**
* Get the JSON decoded body of the response as an array or scalar value.
*
* @param array-key|null $key
* @return ($key is null ? array<array-key, mixed> : mixed)
*/
public function json(string|int|null $key = null, mixed $default = null): mixed
{
if (! isset($this->decodedJson)) {
$this->decodedJson = json_decode($this->body() ?: '[]', true, 512, JSON_THROW_ON_ERROR);
}
if (is_null($key)) {
return $this->decodedJson;
}
return ArrayHelpers::get($this->decodedJson, $key, $default);
}
/**
* Get the JSON decoded body as an array. Provide a key to find a specific item in the JSON.
*
* Alias of json()
*
* @param array-key|null $key
* @return ($key is null ? array<array-key, mixed> : mixed)
*/
public function array(int|string|null $key = null, mixed $default = null): mixed
{
return $this->json($key, $default);
}
/**
* Get the JSON decoded body of the response as an object.
*/
public function object(): object
{
return json_decode($this->body(), false, 512, JSON_THROW_ON_ERROR);
}
/**
* Convert the XML response into a SimpleXMLElement.
*
* Suitable for reading small, simple XML responses but not suitable for
* more advanced XML responses with namespaces and prefixes. Consider
* using the xmlReader method instead for better compatability.
*
* @see https://www.php.net/manual/en/book.simplexml.php
*/
public function xml(mixed ...$arguments): SimpleXMLElement|bool
{
if (! isset($this->decodedXml)) {
$this->decodedXml = $this->body();
}
return simplexml_load_string($this->decodedXml, ...$arguments);
}
/**
* Load the XML response into a reader
*
* Suitable for reading large XML responses and supports a wider range of XML
* documents. Requires XML Wrangler (composer require saloonphp/xml-wrangler)
*
* @see https://github.com/saloonphp/xml-wrangler
*/
public function xmlReader(): XmlReader
{
return XmlReader::fromSaloonResponse($this);
}
/**
* Get the JSON decoded body of the response as a collection.
*
* Requires Laravel Collections (composer require illuminate/collections)
*
* @see https://github.com/illuminate/collections
*
* @param array-key|null $key
* @return \Illuminate\Support\Collection<array-key, mixed>
*/
public function collect(string|int|null $key = null): Collection
{
$data = $this->json($key);
if (is_null($data)) {
return Collection::empty();
}
if (is_array($data)) {
return Collection::make($data);
}
return Collection::make([$data]);
}
/**
* Cast the response to a DTO.
*
* @template T of object
*
* @return ($type is class-string<T> ? T : object)
*/
public function dto(?string $type = null): mixed
{
$request = $this->pendingRequest->getRequest();
$connector = $this->pendingRequest->getConnector();
$dataObject = $request->createDtoFromResponse($this) ?? $connector->createDtoFromResponse($this);
if (! is_null($type) && ! is_null($dataObject) && $dataObject::class !== $type) {
throw new InvalidArgumentException(
message: sprintf('The class-string provided [%s] must match the class-string returned by the connector/request [%s].', $type, $dataObject::class),
);
}
if ($dataObject instanceof WithResponse) {
$dataObject->setResponse($this);
}
return $dataObject;
}
/**
* Convert the response into a DTO or throw a LogicException if the response failed
*
* @template T of object
*
* @param class-string<T>|null $type
* @return ($type is class-string<T> ? T : object)
*/
public function dtoOrFail(?string $type = null): mixed
{
if ($this->failed()) {
throw new LogicException('Unable to create data transfer object as the response has failed.', 0, $this->toException());
}
return $this->dto($type);
}
/**
* Parse the HTML or XML body into a Symfony DomCrawler instance.
*
* Requires Symfony Crawler (composer require symfony/dom-crawler)
*
* @see https://symfony.com/doc/current/components/dom_crawler.html
*/
public function dom(): Crawler
{
return new Crawler($this->body());
}
/**
* Convert the response to a data URL
*/
public function dataUrl(): string
{
return 'data:'.$this->psrResponse->getHeaderLine('Content-Type').';base64,'.base64_encode($this->body());
}
/**
* Determine if the request was successful.
*/
public function successful(): bool
{
return $this->status() >= 200 && $this->status() < 300;
}
/**
* Determine if the response code was "OK".
*/
public function ok(): bool
{
return $this->status() === 200;
}
/**
* Determine if the response was a redirect.
*/
public function redirect(): bool
{
return $this->status() >= 300 && $this->status() < 400;
}
/**
* Determine if the response indicates a client or server error occurred.
*/
public function failed(): bool
{
$pendingRequest = $this->getPendingRequest();
$requestFailedAccordingToConnector = $pendingRequest->getConnector()->hasRequestFailed($this);
$requestFailedAccordingToRequest = $pendingRequest->getRequest()->hasRequestFailed($this);
if ($requestFailedAccordingToRequest !== null || $requestFailedAccordingToConnector !== null) {
return $requestFailedAccordingToRequest || $requestFailedAccordingToConnector;
}
return $this->serverError() || $this->clientError();
}
/**
* Determine if the response indicates a client error occurred.
*/
public function clientError(): bool
{
return $this->status() >= 400 && $this->status() < 500;
}
/**
* Determine if the response indicates a server error occurred.
*/
public function serverError(): bool
{
return $this->status() >= 500;
}
/**
* Execute the given callback if there was a server or client error.
*
* @param callable($this): (void) $callback
* @return $this
*/
public function onError(callable $callback): static
{
if ($this->failed()) {
$callback($this);
}
return $this;
}
/**
* Determine if the response should throw a request exception.
*/
public function shouldThrowRequestException(): bool
{
$pendingRequest = $this->getPendingRequest();
return $pendingRequest->getRequest()->shouldThrowRequestException($this) || $pendingRequest->getConnector()->shouldThrowRequestException($this);
}
/**
* Create an exception if a server or client error occurred.
*/
public function toException(): ?Throwable
{
if (! $this->shouldThrowRequestException()) {
return null;
}
return $this->createException();
}
/**
* Create the request exception
*/
protected function createException(): Throwable
{
$pendingRequest = $this->getPendingRequest();
$senderException = $this->getSenderException();
// We'll first check if the user has defined their own exception handlers.
// We'll prioritise the request over the connector.
$exception = $pendingRequest->getRequest()->getRequestException($this, $senderException) ?? $pendingRequest->getConnector()->getRequestException($this, $senderException);
if ($exception instanceof Throwable) {
return $exception;
}
// Otherwise, we'll throw our own request.
return RequestExceptionHelper::create($this, $senderException);
}
/**
* Throw an exception if a server or client error occurred.
*
* @return $this
*
* @throws \Throwable
*/
public function throw(): static
{
if ($this->shouldThrowRequestException()) {
throw $this->toException();
}
return $this;
}
/**
* Get a header from the response.
*
* @return string|array<array-key, mixed>|null
*/
public function header(string $header): string|array|null
{
return $this->headers()->get($header);
}
/**
* Create a temporary resource for the stream.
*
* Useful for storing the file. Make sure to close the raw stream after you have used it.
*
* @return resource
*/
public function getRawStream(): mixed
{
$temporaryResource = fopen('php://temp', 'wb+');
if ($temporaryResource === false) {
throw new LogicException('Unable to create a temporary resource for the stream.');
}
$this->saveBodyToFile($temporaryResource, false);
return $temporaryResource;
}
/**
* Save the body to a file
*
* @param string|resource $resourceOrPath
*/
public function saveBodyToFile(mixed $resourceOrPath, bool $closeResource = true): void
{
if (! is_string($resourceOrPath) && ! is_resource($resourceOrPath)) {
throw new InvalidArgumentException('The $resourceOrPath argument must be either a file path or a resource.');
}
$resource = is_string($resourceOrPath) ? fopen($resourceOrPath, 'wb+') : $resourceOrPath;
if ($resource === false) {
throw new LogicException('Unable to open the resource.');
}
rewind($resource);
$stream = $this->stream();
while (! $stream->eof()) {
fwrite($resource, $stream->read(1024));
}
rewind($resource);
if ($closeResource === true) {
fclose($resource);
}
}
/**
* Close the stream and any underlying resources.
*
* @return $this
*/
public function close(): static
{
$this->stream()->close();
return $this;
}
/**
* Get the body of the response.
*/
public function __toString(): string
{
return $this->body();
}
/**
* Check if the response has been cached
*/
public function isCached(): bool
{
return $this->cached;
}
/**
* Check if the response has been mocked
*/
public function isMocked(): bool
{
return $this->mocked;
}
/**
* Check if the response has been simulated
*/
public function isFaked(): bool
{
return $this->isMocked() || $this->isCached();
}
/**
* Set if a response has been cached or not.
*
* @return $this
*/
public function setCached(bool $value): static
{
$this->cached = true;
return $this;
}
/**
* Set if a response has been mocked or not.
*
* @return $this
*/
public function setMocked(bool $value): static
{
$this->mocked = true;
return $this;
}
/**
* Set the simulated response payload if the response was simulated.
*
* @return $this
*/
public function setFakeResponse(FakeResponse $fakeResponse): static
{
$this->fakeResponse = $fakeResponse;
return $this;
}
/**
* Get the simulated response payload if the response was simulated.
*/
public function getFakeResponse(): ?FakeResponse
{
return $this->fakeResponse;
}
}