Files
cms-tstemplate/Classes/Controller/TemplateRecordsOverviewController.php
T

146 lines
6.3 KiB
PHP

<?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\Tstemplate\Controller;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use TYPO3\CMS\Backend\Attribute\AsController;
use TYPO3\CMS\Backend\Template\ModuleTemplateFactory;
use TYPO3\CMS\Backend\Utility\BackendUtility;
use TYPO3\CMS\Core\Database\Connection;
use TYPO3\CMS\Core\Database\Query\Restriction\DeletedRestriction;
use TYPO3\CMS\Core\Http\RedirectResponse;
use TYPO3\CMS\Core\Site\Entity\Site;
use TYPO3\CMS\Core\Utility\GeneralUtility;
/**
* Overview of all sys_template records from site root
*
* @internal This is a specific Backend Controller implementation and is not considered part of the Public TYPO3 API.
*/
#[AsController]
class TemplateRecordsOverviewController extends AbstractTemplateModuleController
{
public function __construct(
private readonly ModuleTemplateFactory $moduleTemplateFactory,
) {}
public function handleRequest(ServerRequestInterface $request): ResponseInterface
{
$backendUser = $this->getBackendUser();
$currentModule = $request->getAttribute('module');
$currentModuleIdentifier = $currentModule->getIdentifier();
$pageUid = (int)($request->getQueryParams()['id'] ?? 0);
$pageRecord = BackendUtility::readPageAccess($pageUid, '1=1') ?: [];
if ($pageUid > 0 && empty($pageRecord)) {
// Redirect to records overview of page 0 if page could not be determined.
// Edge case if page has been removed meanwhile.
BackendUtility::setUpdateSignal('updatePageTree');
return new RedirectResponse($this->uriBuilder->buildUriFromRoute('web_typoscript_recordsoverview'));
}
$moduleData = $request->getAttribute('moduleData');
if ($moduleData->cleanUp([])) {
$backendUser->pushModuleData($currentModuleIdentifier, $moduleData->toArray());
}
$pagesWithTemplates = [];
$sites = $this->siteFinder->getAllSites();
foreach ($sites as $site) {
if (!$site->isTypoScriptRoot()) {
continue;
}
$rootPageId = $site->getRootPageId();
$additionalFieldsForRootline = ['sorting', 'shortcut'];
$rootline = array_reverse(BackendUtility::BEgetRootLine($rootPageId, '', true, $additionalFieldsForRootline));
if ($rootline !== []) {
$pagesWithTemplates = $this->setInPageArray($pagesWithTemplates, $rootline, [
'type' => 'site',
'root' => 1,
'clear' => 1,
'pid' => $rootPageId,
'sorting' => -1,
'uid' => -1,
'title' => $site->getConfiguration()['websiteTitle'] ?? '',
'site' => $site,
]);
}
}
$queryBuilder = $this->connectionPool->getQueryBuilderForTable('sys_template');
$queryBuilder->getRestrictions()->removeAll()
->add(GeneralUtility::makeInstance(DeletedRestriction::class));
$result = $queryBuilder
->select('uid', 'pid', 'title', 'root', 'hidden', 'starttime', 'endtime')
->from('sys_template')
// sys_template shouldn't exist pid 0, they'll be ignored in FE anyway. Ignore them.
->where($queryBuilder->expr()->gt('pid', $queryBuilder->createNamedParameter(0, Connection::PARAM_INT)))
->orderBy('sys_template.pid')
->addOrderBy('sys_template.sorting')
->executeQuery();
while ($record = $result->fetchAssociative()) {
$additionalFieldsForRootline = ['sorting', 'shortcut'];
$rootline = array_reverse(BackendUtility::BEgetRootLine($record['pid'], '', true, $additionalFieldsForRootline));
if ($rootline !== []) {
$pagesWithTemplates = $this->setInPageArray($pagesWithTemplates, $rootline, [...$record, 'type' => 'sys_template']);
}
}
$view = $this->moduleTemplateFactory->create($request);
$view->setTitle($this->getLanguageService()->sL($currentModule->getTitle()), '');
$view->getDocHeaderComponent()->setPageBreadcrumb($pageRecord);
$this->addPreviewButtonToDocHeader($view, $pageRecord);
$this->addShortcutButtonToDocHeader($view, $currentModuleIdentifier, $pageRecord, $pageUid, $this->getLanguageService()->sL('LLL:EXT:tstemplate/Resources/Private/Language/locallang_overview.xlf:typoscriptRecords.title'));
if ($pageUid !== 0) {
$view->makeDocHeaderModuleMenu(['id' => $pageUid]);
}
$view->assign('pageTree', $pagesWithTemplates);
return $view->renderResponse('TemplateRecordsOverview');
}
/**
* Recursively add template row in pages tree array by given pages rootline to prepare tree rendering.
* @param non-empty-array $rootline
*/
private function setInPageArray(array $pages, array $rootline, array $row): array
{
if (!$rootline[0]['uid']) {
// Skip 'root'
array_shift($rootline);
}
$currentRootlineElement = current($rootline);
if (empty($pages[$currentRootlineElement['uid']])) {
// Page not in tree yet. Add it.
$pages[$currentRootlineElement['uid']] = $currentRootlineElement;
}
array_shift($rootline);
if (empty($rootline)) {
// Last rootline element: Add template row
$pages[$currentRootlineElement['uid']]['_templates'][] = $row;
} else {
// Recurse into sub array
$pages[$currentRootlineElement['uid']]['_nodes'] ??= [];
$pages[$currentRootlineElement['uid']]['_nodes'] = $this->setInPageArray($pages[$currentRootlineElement['uid']]['_nodes'], $rootline, $row);
}
// Tree node sorting by pages sorting field
uasort($pages, static fn($a, $b) => $a['sorting'] - $b['sorting']);
return $pages;
}
}