Feature: #96147 - New PSR-14 RedirectWasHitEvent
See forge#96147
Description
A new PSR-14 event \TYPO3\
has been added to TYPO3 Core. This event is fired in the
\TYPO3\
middleware and allows extensions to further process the matched
redirect and to adjust the PSR-7 response.
The event features the following methods:
get
: Returns the current PSR-7 RequestRequest () get
: Returns the current PSR-7 ResponseResponse () set
: Can be used to set / update the PSR-7 ResponseResponse () get
: Returns the matched redirect recordMatched Redirect () set
: Can be used to set / update the matched redirect recordMatched Redirect () get
: Returns the resolved redirect targetTarget Url ()
TYPO3 already implements the Increment
listener. It is
used to increment the hit count of the matched redirect record, if the
feature is enabled. In case you want to prevent the increment in some
cases, e.g. when the request was initiated by a monitoring tool, you
can either implement your own listener with the same identifier
(redirects-
) or add your custom listener
before and dynamically set the records disable_
flag.
Registration of the event in your extension's Services.
:
MyVendor\MyPackage\Redirects\MyEventListener:
tags:
- name: event.listener
identifier: 'my-package/redirects/validate-hit-count'
before: 'redirects-increment-hit-count'
The corresponding event listener class:
use TYPO3\CMS\Redirects\Event\RedirectWasHitEvent;
class MyEventListener {
public function __invoke(RedirectWasHitEvent $event): void
{
$matchedRedirect = $event->getMatchedRedirect();
// This will disable the hit count increment in case the target
// is the page 123 and the request is from the monitoring tool.
if (str_contains($matchedRedirect['target'], 'uid=123')
&& $event->getRequest()->getAttribute('normalizedParams')->getHttpUserAgent() === 'my monitoring tool'
) {
$matchedRedirect['disable_hitcount'] = true;
$event->setMatchedRedirect(
$matchedRedirect
);
// Also add a custom response header
$event->setResponse(
$event->getResponse()->withAddedHeader('X-Custom-Header', 'Hit count increment skipped')
);
}
}
}
Impact
This event can be used to further process the matched redirect and to adjust the PSR-7 Response. It furthermore allows to influence Core functionality, e.g. the hit count increment.