13
13
14
14
namespace Toflar \Psr6HttpCacheStore ;
15
15
16
- use Psr \Cache \CacheItemInterface ;
17
16
use Psr \Cache \InvalidArgumentException as CacheInvalidArgumentException ;
18
17
use Symfony \Component \Cache \Adapter \AdapterInterface ;
19
18
use Symfony \Component \Cache \Adapter \FilesystemTagAwareAdapter ;
20
19
use Symfony \Component \Cache \Adapter \TagAwareAdapterInterface ;
20
+ use Symfony \Component \Cache \CacheItem ;
21
21
use Symfony \Component \Cache \PruneableInterface ;
22
22
use Symfony \Component \HttpFoundation \BinaryFileResponse ;
23
23
use Symfony \Component \HttpFoundation \File \Exception \FileNotFoundException ;
44
44
*/
45
45
class Psr6Store implements Psr6StoreInterface, ClearableInterface
46
46
{
47
- const NON_VARYING_KEY = 'non-varying ' ;
48
- const COUNTER_KEY = 'write-operations-counter ' ;
49
- const CLEANUP_LOCK_KEY = 'cleanup-lock ' ;
47
+ public const NON_VARYING_KEY = 'non-varying ' ;
48
+ public const COUNTER_KEY = 'write-operations-counter ' ;
49
+ public const CLEANUP_LOCK_KEY = 'cleanup-lock ' ;
50
50
51
- /**
52
- * @var array
53
- */
54
- private $ options ;
55
-
56
- /**
57
- * @var TagAwareAdapterInterface
58
- */
59
- private $ cache ;
60
-
61
- /**
62
- * @var LockFactory
63
- */
64
- private $ lockFactory ;
51
+ private array $ options ;
52
+ private AdapterInterface $ cache ;
53
+ private LockFactory $ lockFactory ;
65
54
66
55
/**
67
56
* @var LockInterface[]
68
57
*/
69
- private $ locks = [];
58
+ private array $ locks = [];
70
59
71
60
/**
72
61
* When creating a Psr6Store you can configure a number options.
@@ -111,17 +100,11 @@ public function __construct(array $options = [])
111
100
$ this ->lockFactory = $ this ->options ['lock_factory ' ];
112
101
}
113
102
114
- /**
115
- * Locates a cached Response for the Request provided.
116
- *
117
- * @param Request $request A Request instance
118
- *
119
- * @return Response|null A Response instance, or null if no cache entry was found
120
- */
121
103
public function lookup (Request $ request ): ?Response
122
104
{
123
105
$ cacheKey = $ this ->getCacheKey ($ request );
124
106
107
+ /** @var CacheItem $item */
125
108
$ item = $ this ->cache ->getItem ($ cacheKey );
126
109
127
110
if (!$ item ->isHit ()) {
@@ -150,17 +133,6 @@ public function lookup(Request $request): ?Response
150
133
return null ;
151
134
}
152
135
153
- /**
154
- * Writes a cache entry to the store for the given Request and Response.
155
- *
156
- * Existing entries are read and any that match the response are removed. This
157
- * method calls write with the new list of cache entries.
158
- *
159
- * @param Request $request A Request instance
160
- * @param Response $response A Response instance
161
- *
162
- * @return string The key under which the response is stored
163
- */
164
136
public function write (Request $ request , Response $ response ): string
165
137
{
166
138
if (null === $ response ->getMaxAge ()) {
@@ -174,6 +146,7 @@ public function write(Request $request, Response $response): string
174
146
$ headers = $ response ->headers ->all ();
175
147
unset($ headers ['age ' ]);
176
148
149
+ /** @var CacheItem $item */
177
150
$ item = $ this ->cache ->getItem ($ cacheKey );
178
151
179
152
if (!$ item ->isHit ()) {
@@ -220,26 +193,14 @@ public function write(Request $request, Response $response): string
220
193
return $ cacheKey ;
221
194
}
222
195
223
- /**
224
- * Invalidates all cache entries that match the request.
225
- *
226
- * @param Request $request A Request instance
227
- */
228
196
public function invalidate (Request $ request ): void
229
197
{
230
198
$ cacheKey = $ this ->getCacheKey ($ request );
231
199
232
200
$ this ->cache ->deleteItem ($ cacheKey );
233
201
}
234
202
235
- /**
236
- * Locks the cache for a given Request.
237
- *
238
- * @param Request $request A Request instance
239
- *
240
- * @return bool|string true if the lock is acquired, the path to the current lock otherwise
241
- */
242
- public function lock (Request $ request )
203
+ public function lock (Request $ request ): bool |string
243
204
{
244
205
$ cacheKey = $ this ->getCacheKey ($ request );
245
206
@@ -253,13 +214,6 @@ public function lock(Request $request)
253
214
return $ this ->locks [$ cacheKey ]->acquire ();
254
215
}
255
216
256
- /**
257
- * Releases the lock for the given Request.
258
- *
259
- * @param Request $request A Request instance
260
- *
261
- * @return bool False if the lock file does not exist or cannot be unlocked, true otherwise
262
- */
263
217
public function unlock (Request $ request ): bool
264
218
{
265
219
$ cacheKey = $ this ->getCacheKey ($ request );
@@ -279,13 +233,6 @@ public function unlock(Request $request): bool
279
233
return true ;
280
234
}
281
235
282
- /**
283
- * Returns whether or not a lock exists.
284
- *
285
- * @param Request $request A Request instance
286
- *
287
- * @return bool true if lock exists, false otherwise
288
- */
289
236
public function isLocked (Request $ request ): bool
290
237
{
291
238
$ cacheKey = $ this ->getCacheKey ($ request );
@@ -297,25 +244,13 @@ public function isLocked(Request $request): bool
297
244
return $ this ->locks [$ cacheKey ]->isAcquired ();
298
245
}
299
246
300
- /**
301
- * Purges data for the given URL.
302
- *
303
- * @param string $url A URL
304
- *
305
- * @return bool true if the URL exists and has been purged, false otherwise
306
- */
307
- public function purge ($ url ): bool
247
+ public function purge (string $ url ): bool
308
248
{
309
249
$ cacheKey = $ this ->getCacheKey (Request::create ($ url ));
310
250
311
251
return $ this ->cache ->deleteItem ($ cacheKey );
312
252
}
313
253
314
- /**
315
- * Release all locks.
316
- *
317
- * {@inheritdoc}
318
- */
319
254
public function cleanup (): void
320
255
{
321
256
try {
@@ -485,7 +420,7 @@ private function saveContentDigest(Response $response): void
485
420
486
421
// Make sure the content-length header is present
487
422
if (!$ response ->headers ->has ('Transfer-Encoding ' )) {
488
- $ response ->headers ->set ('Content-Length ' , \strlen ((string ) $ response ->getContent ()));
423
+ $ response ->headers ->set ('Content-Length ' , ( string ) \strlen ((string ) $ response ->getContent ()));
489
424
}
490
425
}
491
426
@@ -526,16 +461,12 @@ private function autoPruneExpiredEntries(): void
526
461
$ this ->cache ->saveDeferred ($ item );
527
462
}
528
463
529
- /**
530
- * @param int $expiresAfter
531
- * @param array $tags
532
- */
533
- private function saveDeferred (CacheItemInterface $ item , $ data , $ expiresAfter = null , $ tags = []): bool
464
+ private function saveDeferred (CacheItem $ item , $ data , ?int $ expiresAfter = null , array $ tags = []): bool
534
465
{
535
466
$ item ->set ($ data );
536
467
$ item ->expiresAfter ($ expiresAfter );
537
468
538
- if (0 !== \count ($ tags ) && method_exists ( $ item , ' tag ' ) ) {
469
+ if (0 !== \count ($ tags )) {
539
470
$ item ->tag ($ tags );
540
471
}
541
472
0 commit comments