-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpClient.php
More file actions
137 lines (119 loc) · 3.63 KB
/
Copy pathHttpClient.php
File metadata and controls
137 lines (119 loc) · 3.63 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
<?php
declare(strict_types=1);
namespace Stack0\Http;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\ConnectException;
use GuzzleHttp\Exception\RequestException;
use Stack0\Config;
use Stack0\Exceptions\ApiException;
use Stack0\Exceptions\NetworkException;
class HttpClient
{
private Client $client;
public function __construct(Config $config, ?Client $client = null)
{
$this->client = $client ?? new Client([
'base_uri' => rtrim($config->baseUrl, '/') . '/',
'headers' => [
'Authorization' => 'Bearer ' . $config->apiKey,
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]);
}
/**
* @return array<string, mixed>
*/
public function get(string $path): array
{
return $this->request('GET', $path);
}
/**
* @param array<string, mixed> $body
* @return array<string, mixed>
*/
public function post(string $path, array $body = []): array
{
return $this->request('POST', $path, $body);
}
/**
* @param array<string, mixed> $body
* @return array<string, mixed>
*/
public function put(string $path, array $body = []): array
{
return $this->request('PUT', $path, $body);
}
/**
* @param array<string, mixed> $body
* @return array<string, mixed>
*/
public function patch(string $path, array $body = []): array
{
return $this->request('PATCH', $path, $body);
}
/**
* @return array<string, mixed>
*/
public function delete(string $path): array
{
return $this->request('DELETE', $path);
}
/**
* @param array<string, mixed> $body
* @return array<string, mixed>
*/
public function deleteWithBody(string $path, array $body): array
{
return $this->request('DELETE', $path, $body);
}
/**
* @param array<string, mixed>|null $body
* @return array<string, mixed>
*/
private function request(string $method, string $path, ?array $body = null): array
{
$options = [];
if ($body !== null) {
$options['json'] = $body;
}
// Strip leading slash so Guzzle resolves relative to base_uri
$path = ltrim($path, '/');
try {
$response = $this->client->request($method, $path, $options);
$contents = $response->getBody()->getContents();
if ($contents === '') {
return [];
}
/** @var array<string, mixed> */
return json_decode($contents, true, 512, JSON_THROW_ON_ERROR);
} catch (ConnectException $e) {
throw new NetworkException(
'Connection failed: ' . $e->getMessage(),
0,
$e,
);
} catch (RequestException $e) {
$response = $e->getResponse();
$statusCode = $response ? $response->getStatusCode() : 0;
$responseBody = null;
$errorCode = null;
$message = $e->getMessage();
if ($response) {
$contents = $response->getBody()->getContents();
$responseBody = json_decode($contents, true);
if (is_array($responseBody)) {
$message = $responseBody['message'] ?? $message;
$errorCode = $responseBody['code'] ?? null;
}
}
throw new ApiException(
$message,
$statusCode,
$errorCode,
$responseBody,
$e,
);
}
}
}