Skip to content

Commit fcabc29

Browse files
authored
Read attributes as provided by the event object, and pass on attributes to other event handlers (#53)
This PR uses the new API introduced in symfony/symfony#46001 to read controller attributes through the `ControllerEvent`, and to make them available to other event handlers when replacing the controller. This is necessary when using the ´Send304IfNotModified` attribute in combination with `\Symfony\Component\HttpKernel\Attribute\Cache`. Without this change, `\Symfony\Component\HttpKernel\EventListener\CacheAttributeListener` will not set `Cache` headers accordingly. The result is that you may get `304 Not Modified` responses on conditional requests with `If-Modified-Since`, but these are treated as `stale/cache` only in the HttpCache and have a `Cache-Control: must-revalidate, private` header.
1 parent 60bfdaf commit fcabc29

File tree

3 files changed

+6
-27
lines changed

3 files changed

+6
-27
lines changed

.github/workflows/tests.yml

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
matrix:
2020
include:
2121
- { php-version: 8.1, symfony-locked-version: none, dependency-version: prefer-lowest }
22-
- { php-version: 8.2, symfony-locked-version: 5.4.*, dependency-version: prefer-stable }
2322
- { php-version: 8.2, symfony-locked-version: 6.4.*, dependency-version: prefer-stable }
2423
- { php-version: 8.3, symfony-locked-version: none, dependency-version: prefer-stable }
2524
name: PHPUnit (PHP ${{matrix.php-version}}, Symfony Version Lock ${{ matrix.symfony-locked-version }}, ${{ matrix.dependency-version }})

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"symfony/filesystem": "^5.4|^6.4|^7.0",
2828
"symfony/finder": "^5.4|^6.4|^7.0",
2929
"symfony/http-foundation": "^5.4|^6.4|^7.0",
30-
"symfony/http-kernel": "^5.4|^6.4|^7.0",
30+
"symfony/http-kernel": "^6.4|^7.0",
3131
"symfony/lock": "^5.4|^6.4|^7.0",
3232
"symfony/twig-bundle": "^5.4|^6.4|^7.0",
3333
"twig/twig": "^2.0|^3.0"

src/Caching/EventListener.php

+5-25
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
namespace Webfactory\Bundle\WfdMetaBundle\Caching;
1010

11-
use ReflectionObject;
1211
use SplObjectStorage;
1312
use Symfony\Component\HttpFoundation\Response;
1413
use Symfony\Component\HttpKernel\Event\ControllerEvent;
@@ -38,21 +37,19 @@ public function __construct(MetaQueryFactory $metaQueryFactory, $debug)
3837

3938
public function onKernelController(ControllerEvent $event)
4039
{
41-
$controller = $event->getController();
42-
$request = $event->getRequest();
43-
44-
$attribute = $this->findAttribute($controller);
40+
$attributes = $event->getAttributes(Send304IfNotModified::class);
4541

46-
if (!$attribute) {
42+
if (!$attributes) {
4743
return;
4844
}
4945

50-
$lastTouched = $attribute->calculateLastModified($this->metaQueryFactory);
46+
$lastTouched = $attributes[0]->calculateLastModified($this->metaQueryFactory);
5147

5248
if (!$lastTouched) {
5349
return;
5450
}
5551

52+
$request = $event->getRequest();
5653
$this->lastTouchedResults[$request] = $lastTouched;
5754

5855
/*
@@ -73,7 +70,7 @@ public function onKernelController(ControllerEvent $event)
7370
if ($response->isNotModified($request)) {
7471
$event->setController(function () use ($response) {
7572
return $response;
76-
});
73+
}, $event->getAttributes());
7774
}
7875
}
7976

@@ -86,21 +83,4 @@ public function onKernelResponse(ResponseEvent $event)
8683
$response->setLastModified($this->lastTouchedResults[$request]);
8784
}
8885
}
89-
90-
/**
91-
* @param $callback array A PHP callback (array) pointing to the method to reflect on.
92-
*/
93-
protected function findAttribute($callback): ?Send304IfNotModified
94-
{
95-
if (!\is_array($callback)) {
96-
return null;
97-
}
98-
99-
$object = new ReflectionObject($callback[0]);
100-
$method = $object->getMethod($callback[1]);
101-
102-
$attributes = $method->getAttributes(Send304IfNotModified::class);
103-
104-
return $attributes ? $attributes[0]->newInstance() : null;
105-
}
10686
}

0 commit comments

Comments
 (0)