-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathClientHandler.php
More file actions
470 lines (418 loc) · 13.4 KB
/
ClientHandler.php
File metadata and controls
470 lines (418 loc) · 13.4 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
<?php
declare(strict_types=1);
namespace Fetch\Http;
use Fetch\Concerns\ConfiguresRequests;
use Fetch\Concerns\HandlesMocking;
use Fetch\Concerns\HandlesUris;
use Fetch\Concerns\ManagesConnectionPool;
use Fetch\Concerns\ManagesDebugAndProfiling;
use Fetch\Concerns\ManagesPromises;
use Fetch\Concerns\ManagesRetries;
use Fetch\Concerns\PerformsHttpRequests;
use Fetch\Enum\ContentType;
use Fetch\Enum\Method;
use Fetch\Interfaces\ClientHandler as ClientHandlerInterface;
use Fetch\Interfaces\Response as ResponseContract;
use GuzzleHttp\Client as GuzzleClient;
use GuzzleHttp\ClientInterface;
use GuzzleHttp\RequestOptions;
use InvalidArgumentException;
use LogicException;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
use React\Promise\PromiseInterface;
class ClientHandler implements ClientHandlerInterface
{
use ConfiguresRequests,
HandlesMocking,
HandlesUris,
ManagesConnectionPool,
ManagesDebugAndProfiling,
ManagesPromises,
ManagesRetries,
PerformsHttpRequests;
/**
* Default options for the request.
*
* @var array<string, mixed>
*/
protected static array $defaultOptions = [
'method' => Method::GET->value,
'headers' => [],
];
/**
* Default timeout for requests in seconds.
*/
public const DEFAULT_TIMEOUT = 30;
/**
* Default number of retries.
*/
public const DEFAULT_RETRIES = 1;
/**
* Default delay between retries in milliseconds.
*/
public const DEFAULT_RETRY_DELAY = 100;
/**
* Whether the request should be asynchronous.
*/
protected bool $isAsync = false;
/**
* Logger instance.
*/
protected LoggerInterface $logger;
/**
* ClientHandler constructor.
*
* @param ClientInterface|null $httpClient The HTTP client
* @param array<string, mixed> $options The options for the request
* @param int|null $timeout Timeout for the request in seconds
* @param int|null $maxRetries Number of retries for the request
* @param int|null $retryDelay Delay between retries in milliseconds
* @param bool $isAsync Whether the request is asynchronous
* @param LoggerInterface|null $logger Logger for request/response details
*/
public function __construct(
protected ?ClientInterface $httpClient = null,
protected array $options = [],
protected ?int $timeout = null,
?int $maxRetries = null,
?int $retryDelay = null,
bool $isAsync = false,
?LoggerInterface $logger = null
) {
$this->logger = $logger ?? new NullLogger;
$this->isAsync = $isAsync;
$this->maxRetries = $maxRetries ?? self::DEFAULT_RETRIES;
$this->retryDelay = $retryDelay ?? self::DEFAULT_RETRY_DELAY;
// Initialize with default options
$this->options = array_merge(self::getDefaultOptions(), $this->options);
// Set the timeout in options
if ($this->timeout !== null) {
$this->options['timeout'] = $this->timeout;
} else {
$this->timeout = $this->options['timeout'] ?? self::DEFAULT_TIMEOUT;
$this->options['timeout'] = $this->timeout;
}
}
/**
* Create a new client handler with factory defaults.
*
* @return static New client handler instance
*/
public static function create(): static
{
return new static;
}
/**
* Create a client handler with preconfigured base URI.
*
* @param string $baseUri Base URI for all requests
* @return static New client handler instance
*
* @throws InvalidArgumentException If the base URI is invalid
*/
public static function createWithBaseUri(string $baseUri): static
{
$instance = new static;
$instance->baseUri($baseUri);
return $instance;
}
/**
* Create a client handler with a custom HTTP client.
*
* @param ClientInterface $client Custom HTTP client
* @return static New client handler instance
*/
public static function createWithClient(ClientInterface $client): static
{
return new static(httpClient: $client);
}
/**
* Get the default options for the request.
*
* @return array<string, mixed> Default options
*/
public static function getDefaultOptions(): array
{
return array_merge(self::$defaultOptions, [
'timeout' => self::DEFAULT_TIMEOUT,
]);
}
/**
* Set the default options for all instances.
*
* @param array<string, mixed> $options Default options
*/
public static function setDefaultOptions(array $options): void
{
self::$defaultOptions = array_merge(self::$defaultOptions, $options);
}
/**
* Create a new mock response for testing.
*
* @param int $statusCode HTTP status code
* @param array<string, string|string[]> $headers Response headers
* @param string|null $body Response body
* @param string $version HTTP protocol version
* @param string|null $reason Reason phrase
* @return Response Mock response
*/
public static function createMockResponse(
int $statusCode = 200,
array $headers = [],
?string $body = null,
string $version = '1.1',
?string $reason = null
): Response {
return new Response($statusCode, $headers, $body, $version, $reason);
}
/**
* Create a JSON response for testing.
*
* @param array<mixed>|object $data JSON data
* @param int $statusCode HTTP status code
* @param array<string, string|string[]> $headers Additional headers
* @return Response Mock JSON response
*/
public static function createJsonResponse(
array|object $data,
int $statusCode = 200,
array $headers = []
): Response {
$jsonData = json_encode($data, JSON_PRETTY_PRINT);
$headers = array_merge(
['Content-Type' => ContentType::JSON->value],
$headers
);
return self::createMockResponse($statusCode, $headers, $jsonData);
}
/**
* Get the HTTP client.
*
* @return ClientInterface The HTTP client
*/
public function getHttpClient(): ClientInterface
{
if (! $this->httpClient) {
$this->httpClient = new GuzzleClient([
RequestOptions::CONNECT_TIMEOUT => $this->options['timeout'] ?? self::DEFAULT_TIMEOUT,
RequestOptions::HTTP_ERRORS => false, // We'll handle HTTP errors ourselves
]);
}
return $this->httpClient;
}
/**
* Set the HTTP client.
*
* @param ClientInterface $client The HTTP client
* @return $this
*/
public function setHttpClient(ClientInterface $client): self
{
$this->httpClient = $client;
return $this;
}
/**
* Get the current request options.
*
* @return array<string, mixed> Current options
*/
public function getOptions(): array
{
return $this->options;
}
/**
* Get the request headers.
*
* @return array<string, mixed> Current headers
*/
public function getHeaders(): array
{
return $this->options['headers'] ?? [];
}
/**
* Check if the request has a specific header.
*
* @param string $header Header name
* @return bool Whether the header exists
*/
public function hasHeader(string $header): bool
{
return isset($this->options['headers'][$header]);
}
/**
* Check if the request has a specific option.
*
* @param string $option Option name
* @return bool Whether the option exists
*/
public function hasOption(string $option): bool
{
return isset($this->options[$option]);
}
/**
* Get debug information about the request.
*
* @return array<string, mixed> Debug information
*/
public function debug(): array
{
return [
'uri' => $this->getFullUri(),
'method' => $this->options['method'] ?? Method::GET->value,
'headers' => $this->getHeaders(),
'options' => array_diff_key($this->options, ['headers' => true]),
'is_async' => $this->isAsync,
'timeout' => $this->timeout,
'retries' => $this->maxRetries,
'retry_delay' => $this->retryDelay,
];
}
/**
* Set the logger instance.
*
* @param LoggerInterface $logger PSR-3 logger
* @return $this
*/
public function setLogger(LoggerInterface $logger): self
{
$this->logger = $logger;
return $this;
}
/**
* Clone this client handler with the given options.
*
* @param array<string, mixed> $options Options to apply to the clone
* @return static New client handler instance with the applied options
*/
public function withClonedOptions(array $options): static
{
$clone = clone $this;
$clone->withOptions($options);
return $clone;
}
/**
* Send the configured request asynchronously based on current options.
*
* Requires that 'method' and 'uri' are set in options.
*
* @return PromiseInterface<ResponseContract>
*/
protected function sendAsync(): PromiseInterface
{
$method = $this->options['method'] ?? null;
$uri = $this->options['uri'] ?? null;
if (! is_string($method) || ! is_string($uri)) {
throw new LogicException('sendAsync() requires method and uri to be set.');
}
$fullUri = $this->buildFullUri($uri);
$guzzleOptions = $this->prepareGuzzleOptions();
return $this->executeAsyncRequest($method, $fullUri, $guzzleOptions);
}
/**
* Log a retry attempt.
*
* @param int $attempt Current attempt number
* @param int $maxAttempts Maximum attempts
* @param \Throwable $exception The exception that caused the retry
*/
protected function logRetry(int $attempt, int $maxAttempts, \Throwable $exception): void
{
$this->logger->info(
'Retrying request',
[
'attempt' => $attempt,
'max_attempts' => $maxAttempts,
'uri' => $this->getFullUri(),
'method' => $this->options['method'] ?? Method::GET->value,
'error' => $exception->getMessage(),
'code' => $exception->getCode(),
]
);
}
/**
* Log a request.
*
* @param string $method HTTP method
* @param string $uri Request URI
* @param array<string, mixed> $options Request options
*/
protected function logRequest(string $method, string $uri, array $options): void
{
// Remove potentially sensitive data
$sanitizedOptions = $this->sanitizeOptions($options);
$this->logger->debug(
'Sending HTTP request',
[
'method' => $method,
'uri' => $uri,
'options' => $sanitizedOptions,
]
);
}
/**
* Log a response.
*
* @param Response $response HTTP response
* @param float $duration Request duration in seconds
*/
protected function logResponse(Response $response, float $duration): void
{
$this->logger->debug(
'Received HTTP response',
[
'status_code' => $response->getStatusCode(),
'reason' => $response->getReasonPhrase(),
'duration' => round($duration, 3),
'content_length' => $this->getResponseContentLength($response),
]
);
}
/**
* Get the content length of a response.
*
* @param Response $response The response
* @return int|string The content length
*/
protected function getResponseContentLength(Response $response): int|string
{
if ($response->hasHeader('Content-Length')) {
return $response->getHeaderLine('Content-Length');
}
$body = $response->getBody();
$body->rewind();
$content = $body->getContents();
$body->rewind();
return strlen($content);
}
/**
* Sanitize options for logging.
*
* @param array<string, mixed> $options The options to sanitize
* @return array<string, mixed> Sanitized options
*/
protected function sanitizeOptions(array $options): array
{
$sanitizedOptions = $options;
// Mask sensitive headers (case-insensitive)
if (isset($sanitizedOptions['headers']) && is_array($sanitizedOptions['headers'])) {
$sensitiveHeaders = [
'authorization', 'x-api-key', 'api-key', 'x-auth-token', 'cookie', 'set-cookie',
];
foreach ($sanitizedOptions['headers'] as $key => $value) {
if (in_array(strtolower((string) $key), $sensitiveHeaders, true)) {
if (is_array($value)) {
$sanitizedOptions['headers'][$key] = array_fill(0, count($value), '[REDACTED]');
} else {
$sanitizedOptions['headers'][$key] = '[REDACTED]';
}
}
}
}
// Mask auth credentials
if (isset($sanitizedOptions['auth'])) {
$sanitizedOptions['auth'] = '[REDACTED]';
}
return $sanitizedOptions;
}
}