1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace FOS\HttpCache\ProxyClient\Http; |
4
|
|
|
|
5
|
|
|
use FOS\HttpCache\Exception\ExceptionCollection; |
6
|
|
|
use FOS\HttpCache\Exception\InvalidArgumentException; |
7
|
|
|
use FOS\HttpCache\Exception\InvalidUrlException; |
8
|
|
|
use FOS\HttpCache\Exception\ProxyResponseException; |
9
|
|
|
use FOS\HttpCache\Exception\ProxyUnreachableException; |
10
|
|
|
use Http\Client\Exception; |
11
|
|
|
use Http\Client\Exception\HttpException; |
12
|
|
|
use Http\Client\Exception\RequestException; |
13
|
|
|
use Http\Client\HttpAsyncClient; |
14
|
|
|
use Http\Promise\Promise; |
15
|
|
|
use Http\Discovery\UriFactoryDiscovery; |
16
|
|
|
use Psr\Http\Message\RequestInterface; |
17
|
|
|
use Psr\Http\Message\UriInterface; |
18
|
|
|
|
19
|
|
|
/** |
20
|
|
|
* An adapter to work with the Httplug asynchronous client. |
21
|
|
|
* |
22
|
|
|
* @author David Buchmann <[email protected]> |
23
|
|
|
*/ |
24
|
|
|
class HttpAdapter |
25
|
|
|
{ |
26
|
|
|
/** |
27
|
|
|
* @var HttpAsyncClient |
28
|
|
|
*/ |
29
|
|
|
private $httpClient; |
30
|
|
|
|
31
|
|
|
/** |
32
|
|
|
* Queued requests |
33
|
|
|
* |
34
|
|
|
* @var RequestInterface[] |
35
|
|
|
*/ |
36
|
|
|
private $queue = []; |
37
|
|
|
|
38
|
|
|
/** |
39
|
|
|
* Caching proxy server host names or IP addresses. |
40
|
|
|
* |
41
|
|
|
* @var UriInterface[] |
42
|
|
|
*/ |
43
|
|
|
private $servers; |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* Application host name and optional base URL. |
47
|
|
|
* |
48
|
|
|
* @var UriInterface |
49
|
|
|
*/ |
50
|
|
|
private $baseUri; |
51
|
|
|
|
52
|
|
|
/** |
53
|
|
|
* @param string[] $servers Caching proxy server hostnames or IP |
54
|
|
|
* addresses, including port if not port 80. |
55
|
|
|
* E.g. ['127.0.0.1:6081'] |
56
|
|
|
* @param string $baseUri Default application hostname, optionally |
57
|
|
|
* including base URL, for purge and refresh |
58
|
|
|
* requests (optional). This is required if |
59
|
|
|
* you purge and refresh paths instead of |
60
|
|
|
* absolute URLs. |
61
|
|
|
* @param HttpAsyncClient $httpClient |
62
|
|
|
*/ |
63
|
45 |
|
public function __construct(array $servers, $baseUri, HttpAsyncClient $httpClient) |
64
|
|
|
{ |
65
|
45 |
|
$this->setServers($servers); |
66
|
42 |
|
$this->setBaseUri($baseUri); |
67
|
42 |
|
$this->httpClient = $httpClient; |
68
|
42 |
|
} |
69
|
|
|
|
70
|
|
|
/** |
71
|
|
|
* Queue invalidation request. |
72
|
|
|
* |
73
|
|
|
* @param RequestInterface $invalidationRequest |
74
|
|
|
*/ |
75
|
37 |
|
public function invalidate(RequestInterface $invalidationRequest) |
76
|
|
|
{ |
77
|
37 |
|
$signature = $this->getRequestSignature($invalidationRequest); |
78
|
|
|
|
79
|
37 |
|
if (isset($this->queue[$signature])) { |
80
|
1 |
|
return; |
81
|
|
|
} |
82
|
|
|
|
83
|
37 |
|
$this->queue[$signature] = $invalidationRequest; |
84
|
37 |
|
} |
85
|
|
|
|
86
|
|
|
/** |
87
|
|
|
* Send all pending invalidation requests and make sure the requests have terminated and gather exceptions. |
88
|
|
|
* |
89
|
|
|
* @return int The number of cache invalidations performed per caching server. |
90
|
|
|
* |
91
|
|
|
* @throws ExceptionCollection If any errors occurred during flush. |
92
|
|
|
*/ |
93
|
38 |
|
public function flush() |
94
|
|
|
{ |
95
|
38 |
|
$queue = $this->queue; |
96
|
38 |
|
$this->queue = []; |
97
|
|
|
/** @var Promise[] $promises */ |
98
|
38 |
|
$promises = []; |
99
|
|
|
|
100
|
38 |
|
$exceptions = new ExceptionCollection(); |
101
|
|
|
|
102
|
38 |
|
foreach ($queue as $request) { |
103
|
37 |
|
foreach ($this->fanOut($request) as $proxyRequest) { |
104
|
37 |
|
$promises[] = $this->httpClient->sendAsyncRequest($proxyRequest); |
105
|
37 |
|
} |
106
|
38 |
|
} |
107
|
|
|
|
108
|
38 |
|
if (count($exceptions)) { |
109
|
|
|
throw new ExceptionCollection($exceptions); |
|
|
|
|
110
|
|
|
} |
111
|
|
|
|
112
|
38 |
|
foreach ($promises as $promise) { |
113
|
|
|
try { |
114
|
37 |
|
$promise->wait(); |
115
|
37 |
|
} catch (HttpException $exception) { |
116
|
|
|
$exceptions->add(ProxyResponseException::proxyResponse($exception->getResponse())); |
117
|
1 |
|
} catch (RequestException $exception) { |
118
|
1 |
|
$exceptions->add(ProxyUnreachableException::proxyUnreachable($exception)); |
119
|
1 |
|
} catch (\Exception $exception) { |
120
|
|
|
$exceptions->add(new InvalidArgumentException($exception)); |
121
|
|
|
} |
122
|
38 |
|
} |
123
|
|
|
|
124
|
38 |
|
if (count($exceptions)) { |
125
|
1 |
|
throw $exceptions; |
126
|
|
|
} |
127
|
|
|
|
128
|
38 |
|
return count($queue); |
129
|
|
|
} |
130
|
|
|
|
131
|
|
|
/** |
132
|
|
|
* Duplicate a request for each caching server |
133
|
|
|
* |
134
|
|
|
* @param RequestInterface $request The request to duplicate for each configured server |
135
|
|
|
* |
136
|
|
|
* @return RequestInterface[] |
137
|
|
|
*/ |
138
|
37 |
|
private function fanOut(RequestInterface $request) |
139
|
|
|
{ |
140
|
37 |
|
$requests = []; |
141
|
|
|
|
142
|
37 |
|
$uri = $request->getUri(); |
143
|
|
|
|
144
|
|
|
// If a base URI is configured, try to make partial invalidation |
145
|
|
|
// requests complete. |
146
|
37 |
|
if ($this->baseUri) { |
147
|
34 |
|
if ($uri->getHost()) { |
148
|
|
|
// Absolute URI: does it already have a scheme? |
149
|
2 |
|
if (!$uri->getScheme() && $this->baseUri->getScheme() !== '') { |
150
|
|
|
$uri = $uri->withScheme($this->baseUri->getScheme()); |
151
|
|
|
} |
152
|
2 |
|
} else { |
153
|
|
|
// Relative URI |
154
|
32 |
|
if ($this->baseUri->getHost() !== '') { |
155
|
32 |
|
$uri = $uri->withHost($this->baseUri->getHost()); |
156
|
32 |
|
} |
157
|
|
|
|
158
|
32 |
|
if ($this->baseUri->getPort()) { |
|
|
|
|
159
|
13 |
|
$uri = $uri->withPort($this->baseUri->getPort()); |
160
|
13 |
|
} |
161
|
|
|
|
162
|
|
|
// Base path |
163
|
32 |
|
if ($this->baseUri->getPath() !== '') { |
164
|
1 |
|
$path = $this->baseUri->getPath() . '/' . ltrim($uri->getPath(), '/'); |
165
|
1 |
|
$uri = $uri->withPath($path); |
166
|
1 |
|
} |
167
|
|
|
} |
168
|
34 |
|
} |
169
|
|
|
|
170
|
|
|
// Close connections to make sure invalidation (PURGE/BAN) requests |
171
|
|
|
// will not interfere with content (GET) requests. |
172
|
37 |
|
$request = $request->withUri($uri)->withHeader('Connection', 'Close'); |
173
|
|
|
|
174
|
|
|
// Create a request to each caching proxy server |
175
|
37 |
|
foreach ($this->servers as $server) { |
176
|
37 |
|
$requests[] = $request->withUri( |
177
|
|
|
$uri |
178
|
37 |
|
->withScheme($server->getScheme()) |
179
|
37 |
|
->withHost($server->getHost()) |
180
|
37 |
|
->withPort($server->getPort()) |
181
|
37 |
|
, |
182
|
|
|
true // Preserve application Host header |
183
|
37 |
|
); |
184
|
37 |
|
} |
185
|
|
|
|
186
|
37 |
|
return $requests; |
187
|
|
|
} |
188
|
|
|
|
189
|
|
|
/** |
190
|
|
|
* Set caching proxy server URI objects, validating them. |
191
|
|
|
* |
192
|
|
|
* @param string[] $servers Caching proxy proxy server hostnames or IP |
193
|
|
|
* addresses, including port if not port 80. |
194
|
|
|
* E.g. ['127.0.0.1:6081'] |
195
|
|
|
* |
196
|
|
|
* @throws InvalidUrlException If server is invalid or contains URL |
197
|
|
|
* parts other than scheme, host, port |
198
|
|
|
*/ |
199
|
45 |
|
private function setServers(array $servers) |
200
|
|
|
{ |
201
|
45 |
|
$this->servers = []; |
202
|
45 |
|
foreach ($servers as $server) { |
203
|
45 |
|
$this->servers[] = $this->filterUri($server, ['scheme', 'host', 'port']); |
204
|
42 |
|
} |
205
|
42 |
|
} |
206
|
|
|
|
207
|
|
|
/** |
208
|
|
|
* Set application base URI that will be prefixed to relative purge and |
209
|
|
|
* refresh requests, and validate it. |
210
|
|
|
* |
211
|
|
|
* @param string $uriString Your application’s base URI |
212
|
|
|
* |
213
|
|
|
* @throws InvalidUrlException If the base URI is not a valid URI. |
214
|
|
|
*/ |
215
|
42 |
|
private function setBaseUri($uriString = null) |
216
|
|
|
{ |
217
|
42 |
|
if (null === $uriString) { |
218
|
6 |
|
$this->baseUri = null; |
219
|
|
|
|
220
|
6 |
|
return; |
221
|
|
|
} |
222
|
|
|
|
223
|
36 |
|
$this->baseUri = $this->filterUri($uriString); |
224
|
36 |
|
} |
225
|
|
|
|
226
|
|
|
/** |
227
|
|
|
* Filter a URL |
228
|
|
|
* |
229
|
|
|
* Prefix the URL with "http://" if it has no scheme, then check the URL |
230
|
|
|
* for validity. You can specify what parts of the URL are allowed. |
231
|
|
|
* |
232
|
|
|
* @param string $uriString |
233
|
|
|
* @param string[] $allowedParts Array of allowed URL parts (optional) |
234
|
|
|
* |
235
|
|
|
* @return UriInterface Filtered URI (with default scheme if there was no scheme) |
236
|
|
|
* |
237
|
|
|
* @throws InvalidUrlException If URL is invalid, the scheme is not http or |
238
|
|
|
* contains parts that are not expected. |
239
|
|
|
*/ |
240
|
45 |
|
private function filterUri($uriString, array $allowedParts = []) |
241
|
|
|
{ |
242
|
|
|
// Creating a PSR-7 URI without scheme (with parse_url) results in the |
243
|
|
|
// original hostname to be seen as path. So first add a scheme if none |
244
|
|
|
// is given. |
245
|
45 |
|
if (false === strpos($uriString, '://')) { |
246
|
40 |
|
$uriString = sprintf('%s://%s', 'http', $uriString); |
247
|
40 |
|
} |
248
|
|
|
|
249
|
|
|
try { |
250
|
45 |
|
$uri = UriFactoryDiscovery::find()->createUri($uriString); |
251
|
45 |
|
} catch (\InvalidArgumentException $e) { |
252
|
1 |
|
throw InvalidUrlException::invalidUrl($uriString); |
253
|
|
|
} |
254
|
|
|
|
255
|
44 |
|
if (!$uri->getScheme()) { |
256
|
1 |
|
throw InvalidUrlException::invalidUrl($uriString, 'empty scheme'); |
257
|
|
|
} |
258
|
|
|
|
259
|
43 |
|
if (count($allowedParts) > 0) { |
260
|
43 |
|
$parts = parse_url((string) $uri); |
261
|
43 |
|
$diff = array_diff(array_keys($parts), $allowedParts); |
262
|
43 |
|
if (count($diff) > 0) { |
263
|
1 |
|
throw InvalidUrlException::invalidUrlParts($uriString, $allowedParts); |
264
|
|
|
} |
265
|
42 |
|
} |
266
|
|
|
|
267
|
42 |
|
return $uri; |
268
|
|
|
} |
269
|
|
|
|
270
|
|
|
/** |
271
|
|
|
* Build a request signature based on the request data. Unique for every different request, identical |
272
|
|
|
* for the same requests. |
273
|
|
|
* |
274
|
|
|
* This signature is used to avoid sending the same invalidation request twice. |
275
|
|
|
* |
276
|
|
|
* @param RequestInterface $request An invalidation request. |
277
|
|
|
* |
278
|
|
|
* @return string A signature for this request. |
279
|
|
|
*/ |
280
|
37 |
|
private function getRequestSignature(RequestInterface $request) |
281
|
|
|
{ |
282
|
37 |
|
$headers = $request->getHeaders(); |
283
|
37 |
|
ksort($headers); |
284
|
|
|
|
285
|
37 |
|
return md5($request->getMethod(). "\n" . $request->getUri(). "\n" . var_export($headers, true)); |
286
|
|
|
} |
287
|
|
|
} |
288
|
|
|
|
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: