• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Yoast / Yoast-SEO-for-TYPO3 / 24723291290

21 Apr 2026 12:50PM UTC coverage: 10.457% (+9.2%) from 1.275%
24723291290

push

github

web-flow
Merge pull request #632 from Yoast/feature/yoast-v12

[FEATURE] Version 12.0.0, added v14 support, removed v11 support including php8.0 and php8.1, rewrote backend javascript functionality to typescript and webcomponents

40 of 806 new or added lines in 69 files covered. (4.96%)

40 existing lines in 23 files now uncovered.

284 of 2716 relevant lines covered (10.46%)

0.29 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/Classes/Middleware/PageRequestMiddleware.php
1
<?php
2

3
/**
4
 * This file is part of the "yoast_seo" extension for TYPO3 CMS.
5
 *
6
 * For the full copyright and license information, please read the
7
 * LICENSE.txt file that was distributed with this source code.
8
 */
9

10
declare(strict_types=1);
11

12
namespace YoastSeoForTypo3\YoastSeo\Middleware;
13

14
use Psr\Http\Message\ResponseInterface;
15
use Psr\Http\Message\ServerRequestInterface;
16
use Psr\Http\Server\MiddlewareInterface;
17
use Psr\Http\Server\RequestHandlerInterface;
18
use TYPO3\CMS\Core\Configuration\Features;
19
use TYPO3\CMS\Core\Context\Context;
20
use TYPO3\CMS\Core\Context\VisibilityAspect;
21
use TYPO3\CMS\Core\Utility\GeneralUtility;
22
use YoastSeoForTypo3\YoastSeo\Service\YoastRequestService;
23

24
final readonly class PageRequestMiddleware implements MiddlewareInterface
25
{
26
    public function __construct(
27
        protected YoastRequestService $yoastRequestService,
28
        protected Features $features,
UNCOV
29
    ) {}
×
30

31
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
32
    {
NEW
33
        if (!$this->yoastRequestService->isValidRequest($request->getServerParams())) {
×
NEW
34
            return $handler->handle($request);
×
35
        }
36

NEW
37
        $context = GeneralUtility::makeInstance(Context::class);
×
NEW
38
        $context->setAspect('visibility', new VisibilityAspect(true));
×
39

NEW
40
        if ($this->features->isFeatureEnabled('yoastSeoDisableAllCachesOnPreviewRequest')) {
×
NEW
41
            $request = $request->withAttribute('noCache', true);
×
42
        }
43

UNCOV
44
        return $handler->handle($request);
×
45
    }
46
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc