-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsonRpcClient.php
More file actions
88 lines (72 loc) · 2.37 KB
/
JsonRpcClient.php
File metadata and controls
88 lines (72 loc) · 2.37 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
<?php
namespace Sal\Seven\Client\JsonRpc;
use GuzzleHttp\Exception\GuzzleException;
use Sal\Seven\Adapter\Http\HttpAdapterInterface;
use Sal\Seven\Factory\HttpHeaderFactory;
use Sal\Seven\Model\ContentType;
use Sal\Seven\Model\JsonRpc\JsonRpcResponse;
use Symfony\Component\Serializer\Exception\ExceptionInterface;
use Symfony\Component\Serializer\SerializerInterface;
class JsonRpcClient implements JsonRpcClientInterface
{
private ?string $endpoint = null;
private mixed $auth = null;
public function __construct(
private readonly SerializerInterface $serializer,
private readonly HttpAdapterInterface $http,
) {
$this->http->addHeader(HttpHeaderFactory::contentType(ContentType::JSON));
}
public function setEndpoint(string $endpoint): void
{
$this->endpoint = $endpoint;
}
public function setAuth(mixed $auth): void
{
$this->auth = $auth;
}
/**
* @param mixed[] $params
*
* @throws GuzzleException
* @throws \RuntimeException
* @throws ExceptionInterface
*/
public function call(string $method, array $params = []): JsonRpcResponse
{
if (null === $this->endpoint) {
throw new \RuntimeException('The JSON-RPC endpoint not set.');
}
$payload = [
'jsonrpc' => '2.0',
'method' => $method,
'params' => $params,
'id' => (string) microtime(),
'auth' => $this->auth,
];
$json = json_encode($payload);
if (false === $json) {
throw new \RuntimeException('Invalid JSON-RPC payload.');
}
$response = $this->http->post(
$this->endpoint,
json: $json
);
if (!$response->isSuccessful()) {
throw new \RuntimeException("JSON-RPC responded with {$response->getStatusCode()}: '{$response->getBody()?->getContents()}'");
}
$body = $response->getBody()?->getContents();
if (null === $body) {
throw new \RuntimeException('No JSON-RPC response received.');
}
$response = $this->serializer->deserialize(
$body,
JsonRpcResponse::class,
'json'
);
if (!$response instanceof JsonRpcResponse) {
throw new \RuntimeException('Invalid JSON-RPC response.');
}
return $response;
}
}