TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:34 +02:00
commit 8a3bef5a34
61 changed files with 4603 additions and 0 deletions
@@ -0,0 +1,87 @@
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Reports\Controller;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use TYPO3\CMS\Backend\Attribute\AsController;
use TYPO3\CMS\Backend\Routing\UriBuilder;
use TYPO3\CMS\Backend\Template\Components\ButtonBar;
use TYPO3\CMS\Backend\Template\Components\ComponentFactory;
use TYPO3\CMS\Backend\Template\Enum\ModuleLayout;
use TYPO3\CMS\Backend\Template\ModuleTemplateFactory;
use TYPO3\CMS\Core\Localization\LanguageService;
use TYPO3\CMS\Reports\Service\ContentStatisticsService;
/**
* @internal This class is a specific Backend controller implementation and is not considered part of the Public TYPO3 API.
*/
#[AsController]
final readonly class ContentStatisticsController
{
public function __construct(
private ModuleTemplateFactory $moduleTemplateFactory,
private ContentStatisticsService $contentStatisticsService,
private UriBuilder $uriBuilder,
private ComponentFactory $componentFactory,
) {}
public function handleRequest(ServerRequestInterface $request): ResponseInterface
{
$languageService = $this->getLanguageService();
$view = $this->moduleTemplateFactory->create($request);
$view->setLayout(ModuleLayout::NORMAL);
$view->setTitle(
$languageService->sL('reports.messages:mlang_tabs_tab'),
$languageService->sL('reports.messages:contentStatistics.title')
);
$view->makeDocHeaderModuleMenu();
$buttonBar = $view->getDocHeaderComponent()->getButtonBar();
$cType = $request->getQueryParams()['ctype'] ?? '';
if ($this->contentStatisticsService->isValidCtype($cType)) {
$backButton = $this->componentFactory->createBackButton((string)$this->uriBuilder->buildUriFromRoute('system_reports_contentstatistics'));
$buttonBar->addButton($backButton);
$shortcutButton = $this->componentFactory->createShortcutButton()
->setRouteIdentifier('system_reports_contentstatistics')
->setArguments(['ctype' => $cType])
->setDisplayName($languageService->sL('reports.messages:contentStatistics.title'));
$buttonBar->addButton($shortcutButton, ButtonBar::BUTTON_POSITION_RIGHT);
return $view->assignMultiple(
$this->contentStatisticsService->collectStatisticForCtype($cType, (int)($request->getQueryParams()['page'] ?? 1)),
)->renderResponse('ContentStatisticsDetail');
}
$shortcutButton = $this->componentFactory->createShortcutButton()
->setRouteIdentifier('system_reports_contentstatistics')
->setDisplayName($languageService->sL('reports.messages:contentStatistics.title'));
$buttonBar->addButton($shortcutButton, ButtonBar::BUTTON_POSITION_RIGHT);
return $view->assignMultiple([
'data' => $this->contentStatisticsService->collectStatistic(),
])->renderResponse('ContentStatistics');
}
private function getLanguageService(): LanguageService
{
return $GLOBALS['LANG'];
}
}
@@ -0,0 +1,68 @@
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Reports\Controller;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use TYPO3\CMS\Backend\Attribute\AsController;
use TYPO3\CMS\Backend\Template\Enum\ModuleLayout;
use TYPO3\CMS\Backend\Template\ModuleTemplateFactory;
use TYPO3\CMS\Core\Localization\LanguageService;
use TYPO3\CMS\Reports\Service\RecordStatisticsService;
/**
* @internal This class is a specific Backend controller implementation and is not considered part of the Public TYPO3 API.
*/
#[AsController]
final readonly class RecordStatisticsController
{
public function __construct(
private ModuleTemplateFactory $moduleTemplateFactory,
private RecordStatisticsService $recordStatisticsService,
) {}
/**
* Main action - displays database record statistics
*/
public function handleRequest(ServerRequestInterface $request): ResponseInterface
{
$languageService = $this->getLanguageService();
$view = $this->moduleTemplateFactory->create($request);
$view->setLayout(ModuleLayout::NORMAL);
$view->setTitle(
$languageService->translate('title', 'reports.modules.overview'),
$languageService->translate('title', 'reports.modules.statistics')
);
$view->makeDocHeaderModuleMenu();
$view->getDocHeaderComponent()->setShortcutContext(
'system_reports_statistics',
$languageService->translate('title', 'reports.modules.statistics')
);
return $view->assignMultiple([
'pages' => $this->recordStatisticsService->collectPageStatistics(),
'doktypes' => $this->recordStatisticsService->collectDoktypeStatistics(),
'tables' => $this->recordStatisticsService->collectTableStatistics(),
])->renderResponse('RecordStatistics');
}
private function getLanguageService(): LanguageService
{
return $GLOBALS['LANG'];
}
}
@@ -0,0 +1,84 @@
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Reports\Controller;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use TYPO3\CMS\Backend\Attribute\AsController;
use TYPO3\CMS\Backend\Template\Enum\ModuleLayout;
use TYPO3\CMS\Backend\Template\ModuleTemplateFactory;
use TYPO3\CMS\Core\Localization\LanguageService;
use TYPO3\CMS\Core\Type\ContextualFeedbackSeverity;
use TYPO3\CMS\Reports\Service\StatusService;
/**
* @internal This class is a specific Backend controller implementation and is not considered part of the Public TYPO3 API.
*/
#[AsController]
final readonly class StatusReportController
{
public function __construct(
private ModuleTemplateFactory $moduleTemplateFactory,
private StatusService $statusService,
) {}
/**
* Main action - displays the system status report
*/
public function handleRequest(ServerRequestInterface $request): ResponseInterface
{
$statusCollection = $this->statusService->getSystemStatus($request);
$this->statusService->collectAndStoreSystemStatus($request);
// Apply sorting to collection and the providers
$statusCollection = $this->statusService->sortStatusProviders($statusCollection);
foreach ($statusCollection as &$statuses) {
$statuses = $this->statusService->sortStatuses($statuses);
}
unset($statuses);
$languageService = $this->getLanguageService();
$view = $this->moduleTemplateFactory->create($request);
$view->setLayout(ModuleLayout::NORMAL);
$view->setTitle(
$languageService->translate('title', 'reports.modules.overview'),
$languageService->translate('title', 'reports.modules.status')
);
$view->makeDocHeaderModuleMenu();
$view->getDocHeaderComponent()->setShortcutContext(
'system_reports_status',
$languageService->translate('title', 'reports.modules.status')
);
return $view->assignMultiple([
'statusCollection' => $statusCollection,
'severityIconMapping' => [
ContextualFeedbackSeverity::NOTICE->value => 'actions-info',
ContextualFeedbackSeverity::INFO->value => 'actions-info',
ContextualFeedbackSeverity::OK->value => 'actions-check',
ContextualFeedbackSeverity::WARNING->value => 'actions-exclamation',
ContextualFeedbackSeverity::ERROR->value => 'actions-exclamation',
],
])->renderResponse('StatusReport');
}
private function getLanguageService(): LanguageService
{
return $GLOBALS['LANG'];
}
}