-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds a simple PSR17/PSR18 Http client (#555)
Adds a PSR17/PSR18 Http client
- Loading branch information
Showing
2 changed files
with
143 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Webauthn\MetadataService; | ||
|
||
use JsonException; | ||
use LogicException; | ||
use Psr\Http\Client\ClientInterface as Psr18ClientInterface; | ||
use Psr\Http\Message\RequestFactoryInterface as Psr17RequestFactoryInterface; | ||
use Psr\Http\Message\ResponseInterface as Psr17ResponseInterface; | ||
use Psr\Http\Message\StreamFactoryInterface as Psr17StreamFactoryInterface; | ||
use Symfony\Contracts\HttpClient\HttpClientInterface; | ||
use Symfony\Contracts\HttpClient\ResponseInterface; | ||
use Symfony\Contracts\HttpClient\ResponseStreamInterface; | ||
use function is_array; | ||
use const JSON_ERROR_NONE; | ||
use const PHP_QUERY_RFC3986; | ||
|
||
class Psr18HttpClient implements HttpClientInterface | ||
{ | ||
private array $options = []; | ||
|
||
public function __construct( | ||
private readonly Psr18ClientInterface $client, | ||
private readonly Psr17RequestFactoryInterface $requestFactory, | ||
private readonly Psr17StreamFactoryInterface $streamFactory, | ||
) { | ||
} | ||
|
||
public function request(string $method, string $url, array $options = []): ResponseInterface | ||
{ | ||
$baseUri = $options['base_uri'] ?? ''; | ||
$query = $options['query'] ?? []; | ||
if ($query) { | ||
$url .= (! str_contains($url, '?') ? '?' : '&') . http_build_query($query, '', '&', PHP_QUERY_RFC3986); | ||
} | ||
$request = $this->requestFactory->createRequest($method, $baseUri . $url); | ||
$body = $options['body'] ?? null; | ||
if ($body !== null) { | ||
$request = $request->withBody($this->streamFactory->createStream($body)); | ||
} | ||
foreach ($this->options as $name => $value) { | ||
$request = $request->withHeader($name, $value); | ||
} | ||
foreach ($options['headers'] ?? [] as $name => $value) { | ||
$request = $request->withHeader($name, $value); | ||
} | ||
$response = $this->client->sendRequest($request); | ||
|
||
return static::fromPsr17($response); | ||
} | ||
|
||
/** | ||
* @param ResponseInterface|iterable<array-key, ResponseInterface> $responses | ||
*/ | ||
public function stream(iterable|ResponseInterface $responses, float $timeout = null): ResponseStreamInterface | ||
{ | ||
throw new LogicException('Not implemented'); | ||
} | ||
|
||
public function withOptions(array $options): static | ||
{ | ||
$this->options = $options; | ||
return $this; | ||
} | ||
|
||
protected static function fromPsr17(Psr17ResponseInterface $response): ResponseInterface | ||
{ | ||
$headers = $response->getHeaders(); | ||
$content = $response->getBody() | ||
->getContents(); | ||
$status = $response->getStatusCode(); | ||
|
||
return new class($status, $headers, $content) implements ResponseInterface { | ||
/** | ||
* @param array<array-key, string[]> $headers | ||
*/ | ||
public function __construct( | ||
private readonly int $status, | ||
private readonly array $headers, | ||
private readonly string $content, | ||
) { | ||
} | ||
|
||
public function getStatusCode(): int | ||
{ | ||
return $this->status; | ||
} | ||
|
||
/** | ||
* @return array<array-key, string[]> | ||
*/ | ||
public function getHeaders(bool $throw = true): array | ||
{ | ||
return $this->headers; | ||
} | ||
|
||
public function getContent(bool $throw = true): string | ||
{ | ||
return $this->content; | ||
} | ||
|
||
/** | ||
* @return array<array-key, mixed> | ||
*/ | ||
public function toArray(bool $throw = true): array | ||
{ | ||
$result = json_decode($this->content, true); | ||
if (! is_array($result) || json_last_error() !== JSON_ERROR_NONE) { | ||
throw new JsonException('Failed to decode JSON response: ' . json_last_error_msg()); | ||
} | ||
|
||
return $result; | ||
} | ||
|
||
public function cancel(): void | ||
{ | ||
// noop | ||
} | ||
|
||
public function getInfo(string $type = null): mixed | ||
{ | ||
return null; | ||
} | ||
}; | ||
} | ||
} |