Skip to content

Commit 76f1e56

Browse files
authored
Version 4.0.0
1 parent 310c035 commit 76f1e56

File tree

8 files changed

+94
-204
lines changed

8 files changed

+94
-204
lines changed

.github/workflows/ci.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
2020
with:
21-
php-version: 7.4
21+
php-version: '8.1'
2222
coverage: none
2323
tools: php-cs-fixer
2424

@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
fail-fast: false
3737
matrix:
38-
php: [7.2, 7.3, 7.4, 8.0]
38+
php: ['8.0', '8.1']
3939
steps:
4040
- name: Setup PHP
4141
uses: shivammathur/setup-php@v2
@@ -61,7 +61,7 @@ jobs:
6161
strategy:
6262
fail-fast: false
6363
matrix:
64-
php: [7.2, 7.3, 7.4, 8.0]
64+
php: ['8.0', '8.1']
6565
steps:
6666
- name: Setup PHP
6767
uses: shivammathur/setup-php@v2

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/vendor/
2-
.php_cs.cache
2+
.php-cs-fixer.cache
33
.phpunit.result.cache
44
composer.lock

.php-cs-fixer.dist.php

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?php
2+
3+
$date = date('Y');
4+
5+
$header = <<<EOF
6+
This file is part of the toflar/psr6-symfony-http-cache-store package.
7+
8+
For the full copyright and license information, please view the LICENSE
9+
file that was distributed with this source code.
10+
11+
@copyright Yanick Witschi <[email protected]>
12+
EOF;
13+
14+
$finder = PhpCsFixer\Finder::create()
15+
->in([__DIR__.'/src', __DIR__.'/tests'])
16+
;
17+
18+
$config = new PhpCsFixer\Config();
19+
$config
20+
->setRiskyAllowed(true)
21+
->setRules([
22+
'@Symfony' => true,
23+
'@Symfony:risky' => true,
24+
'array_syntax' => ['syntax' => 'short'],
25+
'combine_consecutive_unsets' => true,
26+
'declare_strict_types' => true,
27+
'general_phpdoc_annotation_remove' => true,
28+
'header_comment' => ['header' => $header],
29+
'heredoc_to_nowdoc' => true,
30+
'no_extra_blank_lines' => true,
31+
'no_unreachable_default_argument_value' => true,
32+
'no_useless_else' => true,
33+
'no_useless_return' => true,
34+
'no_superfluous_phpdoc_tags' => true,
35+
'ordered_class_elements' => true,
36+
'ordered_imports' => true,
37+
'php_unit_strict' => true,
38+
'phpdoc_add_missing_param_annotation' => true,
39+
'phpdoc_order' => true,
40+
'psr_autoloading' => true,
41+
'strict_comparison' => true,
42+
'strict_param' => true,
43+
'native_function_invocation' => ['include' => ['@compiler_optimized']],
44+
'void_return' => true,
45+
])
46+
->setFinder($finder)
47+
;
48+
49+
return $config;

.php_cs.dist

-49
This file was deleted.

README.md

-23
Original file line numberDiff line numberDiff line change
@@ -38,29 +38,6 @@ $ composer require toflar/psr6-symfony-http-cache-store
3838

3939
## Configuration
4040

41-
For the Symfony 3 standard edition file structure, use the `Psr6Store` by
42-
enabling it in your `AppCache` as follows:
43-
44-
```php
45-
<?php
46-
47-
// app/AppCache.php
48-
49-
/**
50-
* Overwrite constructor to register the Psr6Store.
51-
*/
52-
public function __construct(
53-
HttpKernelInterface $kernel,
54-
SurrogateInterface $surrogate = null,
55-
array $options = []
56-
) {
57-
$store = new Psr6Store(['cache_directory' => $kernel->getCacheDir()]);
58-
59-
parent::__construct($kernel, $store, $surrogate, $options);
60-
}
61-
62-
```
63-
6441
For the Symfony 4/Flex structure, you need to adjust your `index.php` like this:
6542

6643
```php

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^7.2 | ^8.0",
14-
"symfony/lock": "^4.4 | ^5.0",
15-
"symfony/cache": "^4.4 | ^5.0",
16-
"symfony/http-foundation": "^4.4 | ^5.0",
17-
"symfony/http-kernel": "^4.4 | ^5.0",
18-
"symfony/options-resolver": "^4.4 | ^5.0"
13+
"php": "^8.0",
14+
"symfony/lock": "^6.0",
15+
"symfony/cache": "^6.0",
16+
"symfony/http-foundation": "^6.0",
17+
"symfony/http-kernel": "^6.0",
18+
"symfony/options-resolver": "^6.0"
1919
},
2020
"require-dev": {
21-
"symfony/phpunit-bridge": "^5.0"
21+
"symfony/phpunit-bridge": "^6.0"
2222
},
2323
"autoload": {
2424
"psr-4": {

src/Psr6Store.php

+15-84
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313

1414
namespace Toflar\Psr6HttpCacheStore;
1515

16-
use Psr\Cache\CacheItemInterface;
1716
use Psr\Cache\InvalidArgumentException as CacheInvalidArgumentException;
1817
use Symfony\Component\Cache\Adapter\AdapterInterface;
1918
use Symfony\Component\Cache\Adapter\FilesystemTagAwareAdapter;
2019
use Symfony\Component\Cache\Adapter\TagAwareAdapterInterface;
20+
use Symfony\Component\Cache\CacheItem;
2121
use Symfony\Component\Cache\PruneableInterface;
2222
use Symfony\Component\HttpFoundation\BinaryFileResponse;
2323
use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
@@ -44,29 +44,18 @@
4444
*/
4545
class Psr6Store implements Psr6StoreInterface, ClearableInterface
4646
{
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';
5050

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;
6554

6655
/**
6756
* @var LockInterface[]
6857
*/
69-
private $locks = [];
58+
private array $locks = [];
7059

7160
/**
7261
* When creating a Psr6Store you can configure a number options.
@@ -111,17 +100,11 @@ public function __construct(array $options = [])
111100
$this->lockFactory = $this->options['lock_factory'];
112101
}
113102

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-
*/
121103
public function lookup(Request $request): ?Response
122104
{
123105
$cacheKey = $this->getCacheKey($request);
124106

107+
/** @var CacheItem $item */
125108
$item = $this->cache->getItem($cacheKey);
126109

127110
if (!$item->isHit()) {
@@ -150,17 +133,6 @@ public function lookup(Request $request): ?Response
150133
return null;
151134
}
152135

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-
*/
164136
public function write(Request $request, Response $response): string
165137
{
166138
if (null === $response->getMaxAge()) {
@@ -174,6 +146,7 @@ public function write(Request $request, Response $response): string
174146
$headers = $response->headers->all();
175147
unset($headers['age']);
176148

149+
/** @var CacheItem $item */
177150
$item = $this->cache->getItem($cacheKey);
178151

179152
if (!$item->isHit()) {
@@ -220,26 +193,14 @@ public function write(Request $request, Response $response): string
220193
return $cacheKey;
221194
}
222195

223-
/**
224-
* Invalidates all cache entries that match the request.
225-
*
226-
* @param Request $request A Request instance
227-
*/
228196
public function invalidate(Request $request): void
229197
{
230198
$cacheKey = $this->getCacheKey($request);
231199

232200
$this->cache->deleteItem($cacheKey);
233201
}
234202

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
243204
{
244205
$cacheKey = $this->getCacheKey($request);
245206

@@ -253,13 +214,6 @@ public function lock(Request $request)
253214
return $this->locks[$cacheKey]->acquire();
254215
}
255216

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-
*/
263217
public function unlock(Request $request): bool
264218
{
265219
$cacheKey = $this->getCacheKey($request);
@@ -279,13 +233,6 @@ public function unlock(Request $request): bool
279233
return true;
280234
}
281235

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-
*/
289236
public function isLocked(Request $request): bool
290237
{
291238
$cacheKey = $this->getCacheKey($request);
@@ -297,25 +244,13 @@ public function isLocked(Request $request): bool
297244
return $this->locks[$cacheKey]->isAcquired();
298245
}
299246

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
308248
{
309249
$cacheKey = $this->getCacheKey(Request::create($url));
310250

311251
return $this->cache->deleteItem($cacheKey);
312252
}
313253

314-
/**
315-
* Release all locks.
316-
*
317-
* {@inheritdoc}
318-
*/
319254
public function cleanup(): void
320255
{
321256
try {
@@ -485,7 +420,7 @@ private function saveContentDigest(Response $response): void
485420

486421
// Make sure the content-length header is present
487422
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()));
489424
}
490425
}
491426

@@ -526,16 +461,12 @@ private function autoPruneExpiredEntries(): void
526461
$this->cache->saveDeferred($item);
527462
}
528463

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
534465
{
535466
$item->set($data);
536467
$item->expiresAfter($expiresAfter);
537468

538-
if (0 !== \count($tags) && method_exists($item, 'tag')) {
469+
if (0 !== \count($tags)) {
539470
$item->tag($tags);
540471
}
541472

0 commit comments

Comments
 (0)