Closes two annex items that turned out to be the same defect seen from two
sides: markets could link to a detail page, solutions could not, and the code
that turns a page uid into a URL existed four times over.
detail_page for Solution (B-11)
- ext_tables.sql, TCA (group on pages, maxitems 1, in showitem behind slug)
and Domain\Model\Solution mirror the Market field exactly
- SolutionShowJsonRenderer emits detailUrl
- ModelcardJsonRenderer serialized no detailUrl at all: its shared
market|solution branch never carried the field. Market modelcards therefore
gain a link here too, not just solutions.
Service\LinkResolver (B-12)
- one implementation replaces four private copies (Market list/show, Usecase
list/show). The copies had drifted: Market returned null on failure, Usecase
an empty string. The contract is now explicit -- null means "no link".
- Usecase keeps a thin resolvePageUrl() wrapper appending ?? '', because it
concatenates paths and a null would tear the strings apart.
- LocationsJsonRenderer and NewsJsonRenderer stay out on purpose: they resolve
a full parameter construct resp. slug paths plus canonical, which is not
page-uid-to-URL and does not fit the same contract.
Requires on the server, the column exists in code only:
vendor/bin/typo3 database:updateschema "*.add,*.change"
vendor/bin/typo3 cache:flush
176 lines
6.2 KiB
PHP
176 lines
6.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Evomedien\Vitec\UserFunc;
|
|
|
|
use Doctrine\DBAL\ParameterType;
|
|
use Evomedien\Vitec\Service\LinkResolver;
|
|
use Evomedien\Vitec\Service\RteResolver;
|
|
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 all VITEC markets as JSON (headless).
|
|
*
|
|
* Output under content.markets:
|
|
* { "layout": "grid|list|carousel", "markets": [ … ] }
|
|
*
|
|
* Selection semantics (FlexForm `settings.markets`):
|
|
* - nothing selected -> ALL visible markets, alphabetical by title
|
|
* (tx_vitec_domain_model_market has no `sorting` column)
|
|
* - markets selected -> exactly those, in the order the editor arranged
|
|
* them in the FlexForm
|
|
*
|
|
* The page carrying the plugin is never used as a filter.
|
|
*
|
|
* Each item uses the same shape as the card payload (ModelcardJsonRenderer,
|
|
* model type "market"), so the frontend can render list and single card with
|
|
* one component. Image resolution is delegated to UsecaseSerializer::image()
|
|
* rather than re-implemented inline (architecture spec, clause 9.2).
|
|
*
|
|
* `render()` = top-level plugin / page discovery. `renderForRecord()` = one
|
|
* specific tt_content row (reused by ContainerChildrenProcessor for nested
|
|
* plugins). Exception-safe.
|
|
*/
|
|
class MarketListJsonRenderer
|
|
{
|
|
private const TABLE = 'tx_vitec_domain_model_market';
|
|
private const CTYPE = 'vitec_marketlist';
|
|
|
|
#[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'] ?? '') === self::CTYPE) {
|
|
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(self::CTYPE, 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 {
|
|
$flexFormService = GeneralUtility::makeInstance(FlexFormService::class);
|
|
$flexFormData = $flexFormService->convertFlexFormContentToArray($contentElement['pi_flexform'] ?? '');
|
|
$settings = $flexFormData['settings'] ?? [];
|
|
|
|
$layout = (string)($settings['layout'] ?? 'grid');
|
|
$debugMode = (bool)($settings['debug'] ?? false);
|
|
$selectedUids = GeneralUtility::intExplode(',', (string)($settings['markets'] ?? ''), true);
|
|
|
|
// Always fetch the full (small) table once — that way a selected
|
|
// record that has meanwhile been hidden or deleted simply drops out.
|
|
$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)
|
|
)
|
|
->orderBy('title', 'ASC')
|
|
->executeQuery()
|
|
->fetchAllAssociative();
|
|
|
|
$serializer = GeneralUtility::makeInstance(UsecaseSerializer::class);
|
|
|
|
if ($selectedUids === []) {
|
|
$markets = array_map(
|
|
fn(array $r): array => $this->serializeMarket($r, $serializer),
|
|
$rows
|
|
);
|
|
} else {
|
|
// Keep the editor's FlexForm order. A SQL IN() would return the
|
|
// rows in storage order, so the sequence is rebuilt here.
|
|
$byUid = [];
|
|
foreach ($rows as $r) {
|
|
$byUid[(int)$r['uid']] = $r;
|
|
}
|
|
$markets = [];
|
|
foreach ($selectedUids as $uid) {
|
|
if (isset($byUid[$uid])) {
|
|
$markets[] = $this->serializeMarket($byUid[$uid], $serializer);
|
|
}
|
|
}
|
|
}
|
|
|
|
$response = [
|
|
'layout' => $layout,
|
|
'markets' => $markets,
|
|
];
|
|
|
|
if ($debugMode) {
|
|
$response['debug'] = [
|
|
'count' => count($markets),
|
|
'selected' => $selectedUids,
|
|
'settings' => $settings,
|
|
];
|
|
}
|
|
|
|
return (string)json_encode($response);
|
|
} catch (\Throwable $e) {
|
|
return '';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param array<string,mixed> $r
|
|
* @return array<string,mixed>
|
|
*/
|
|
private function serializeMarket(array $r, UsecaseSerializer $serializer): array
|
|
{
|
|
$uid = (int)$r['uid'];
|
|
|
|
return [
|
|
'uid' => $uid,
|
|
'title' => (string)($r['title'] ?? ''),
|
|
'slug' => (string)($r['slug'] ?? ''),
|
|
'subtitle' => (string)($r['subtitle'] ?? ''),
|
|
'teaser' => (string)($r['teaser'] ?? ''),
|
|
'description' => RteResolver::html($r['description'] ?? ''),
|
|
'detailUrl' => LinkResolver::pageUrl((int)($r['detail_page'] ?? 0)),
|
|
'image' => $serializer->image($uid, 'image', self::TABLE, true),
|
|
];
|
|
}
|
|
}
|