- Success Stories: full migration from old site (48/48, audited), markets n:n, quotation content block, columns content block, pretty SEO detail URLs via SuccessStoryPathRewrite middleware, list/detail split (list page 4 / story page), detailUrl/backUrl - New plugins: VITEC Locations (grid/list/map + RTE map text), VITEC Customer Logos (color/bw logic, only-show-selected), VITEC Card (one plugin for product/story/market/solution with reloading FlexForm + custom backend preview renderer) - Eventlist: layout dropdown (list/grid/teaserbar) in settings - Hero section CB: Images/Video tabs, background video + overlay - Product JSON: full category rootline (parents), fixed missing ConnectionPool import (all-products crash), category tree map - Backend preview CSS: container-query responsive (narrow columns) - Docs: ISO architecture spec, root + extension READMEs Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
160 lines
6.1 KiB
PHP
Executable File
160 lines
6.1 KiB
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Evomedien\Vitec\UserFunc;
|
|
|
|
use Doctrine\DBAL\ParameterType;
|
|
use Evomedien\Vitec\Service\UsecaseSerializer;
|
|
use TYPO3\CMS\Core\Attribute\AsAllowedCallable;
|
|
use TYPO3\CMS\Core\Database\ConnectionPool;
|
|
use TYPO3\CMS\Core\Service\FlexFormService;
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
|
|
/**
|
|
* UserFunc: render the Success Story list as JSON (headless).
|
|
*
|
|
* `render()` = top-level plugin / page discovery. `renderForRecord()` = one
|
|
* specific tt_content row (reused by ContainerChildrenProcessor for nested
|
|
* usecase-list plugins). All serialisation is delegated to UsecaseSerializer.
|
|
* Exception-safe.
|
|
*/
|
|
class UsecaseListJsonRenderer
|
|
{
|
|
private const TABLE = 'tx_vitec_domain_model_usecase';
|
|
|
|
#[AsAllowedCallable]
|
|
public function render(string $content, array $conf): string
|
|
{
|
|
$row = is_array($this->cObj->data ?? null) ? $this->cObj->data : null;
|
|
if ($row && (string)($row['CType'] ?? '') === 'vitec_usecaselist') {
|
|
return $this->renderForRecord($row);
|
|
}
|
|
|
|
$pageId = 0;
|
|
$request = $GLOBALS['TYPO3_REQUEST'] ?? null;
|
|
if ($request !== null) {
|
|
$pageInfo = $request->getAttribute('frontend.page.information');
|
|
if ($pageInfo !== null) {
|
|
$pageId = (int)$pageInfo->getId();
|
|
}
|
|
}
|
|
if ($pageId <= 0) {
|
|
$pageId = (int)($GLOBALS['TSFE']->id ?? 0);
|
|
}
|
|
if ($pageId <= 0) {
|
|
return '';
|
|
}
|
|
|
|
$qb = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('tt_content');
|
|
$ces = $qb
|
|
->select('*')
|
|
->from('tt_content')
|
|
->where(
|
|
$qb->expr()->eq('pid', $qb->createNamedParameter($pageId, ParameterType::INTEGER)),
|
|
$qb->expr()->eq('CType', $qb->createNamedParameter('vitec_usecaselist', ParameterType::STRING)),
|
|
$qb->expr()->eq('deleted', 0),
|
|
$qb->expr()->eq('hidden', 0)
|
|
)
|
|
->executeQuery()
|
|
->fetchAllAssociative();
|
|
|
|
if (empty($ces)) {
|
|
return '';
|
|
}
|
|
|
|
return $this->renderForRecord($ces[0]);
|
|
}
|
|
|
|
/**
|
|
* @param array<string,mixed> $contentElement
|
|
*/
|
|
public function renderForRecord(array $contentElement): string
|
|
{
|
|
try {
|
|
// Detail context: when the request carries a story argument the
|
|
// list stays silent — the usecaseshow plugin on the same page
|
|
// renders the story. Keeps old SEO URLs on one page.
|
|
$request = $GLOBALS['TYPO3_REQUEST'] ?? null;
|
|
$routing = $request?->getAttribute('routing');
|
|
$detailParam = null;
|
|
if ($routing instanceof \TYPO3\CMS\Core\Routing\PageArguments) {
|
|
$detailParam = $routing->getRouteArguments()['tx_vitec_usecaseshow']['usecase'] ?? null;
|
|
}
|
|
if ($detailParam === null || $detailParam === '') {
|
|
$detailParam = ($request?->getQueryParams() ?? [])['tx_vitec_usecaseshow']['usecase'] ?? null;
|
|
}
|
|
if ($detailParam !== null && $detailParam !== '') {
|
|
return '';
|
|
}
|
|
|
|
$flexFormService = GeneralUtility::makeInstance(FlexFormService::class);
|
|
$flexFormData = $flexFormService->convertFlexFormContentToArray($contentElement['pi_flexform'] ?? '');
|
|
$settings = $flexFormData['settings'] ?? [];
|
|
$debugMode = (bool)($settings['debug'] ?? false);
|
|
|
|
$qb = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable(self::TABLE);
|
|
$rows = $qb
|
|
->select('*')
|
|
->from(self::TABLE)
|
|
->where(
|
|
$qb->expr()->eq('deleted', 0),
|
|
$qb->expr()->eq('hidden', 0),
|
|
$qb->expr()->eq('hideonwebsite', 0)
|
|
)
|
|
->orderBy('featured', 'DESC')
|
|
->addOrderBy('title', 'ASC')
|
|
->executeQuery()
|
|
->fetchAllAssociative();
|
|
|
|
$serializer = GeneralUtility::makeInstance(UsecaseSerializer::class);
|
|
|
|
// Detail links: the PUBLIC URL is the PARENT path of the
|
|
// FlexForm-selected "Single PID" page plus the story slug —
|
|
// /success-stories/<slug>, not /success-stories/story/<slug>.
|
|
// The SuccessStoryPathRewrite middleware maps it back to the
|
|
// detail subpage at request time.
|
|
$singlePid = (int)($settings['singlePid'] ?? 0);
|
|
$detailBase = '';
|
|
if ($singlePid > 0) {
|
|
$detailPath = rtrim($this->resolvePageUrl($singlePid), '/');
|
|
$parent = str_contains($detailPath, '/') ? substr($detailPath, 0, (int)strrpos($detailPath, '/')) : '';
|
|
$detailBase = $parent !== '' ? $parent : $detailPath;
|
|
}
|
|
|
|
$usecases = array_map(
|
|
static function (array $u) use ($serializer, $detailBase): array {
|
|
$item = $serializer->serializeListItem($u);
|
|
$item['detailUrl'] = ($detailBase !== '' && ($item['slug'] ?? '') !== '')
|
|
? $detailBase . '/' . ltrim((string)$item['slug'], '/')
|
|
: null;
|
|
return $item;
|
|
},
|
|
$rows
|
|
);
|
|
|
|
if ($debugMode) {
|
|
return (string)json_encode([
|
|
'usecases' => $usecases,
|
|
'debug' => ['count' => count($usecases), 'settings' => $settings],
|
|
]);
|
|
}
|
|
|
|
return (string)json_encode($usecases);
|
|
} catch (\Throwable $e) {
|
|
return '';
|
|
}
|
|
}
|
|
|
|
/** Resolve a page uid to its frontend path (route enhancer aware). */
|
|
private function resolvePageUrl(int $pageUid): string
|
|
{
|
|
try {
|
|
$cObj = GeneralUtility::makeInstance(\TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::class);
|
|
return (string)$cObj->typoLink_URL(['parameter' => (string)$pageUid]);
|
|
} catch (\Throwable $e) {
|
|
return '';
|
|
}
|
|
}
|
|
}
|