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 $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 $r * @return array */ 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' => $this->detailUrl((int)($r['detail_page'] ?? 0)), 'image' => $serializer->image($uid, 'image', self::TABLE, true), ]; } /** * Resolve the `detail_page` uid to a URL. The frontend cannot do anything * with a raw page uid, so the link is built server side — same convention * as `headerLink` and LocationsJsonRenderer. * * Returns null when no page is set or the link cannot be resolved. */ private function detailUrl(int $pageUid): ?string { if ($pageUid <= 0) { return null; } try { $cObj = GeneralUtility::makeInstance(ContentObjectRenderer::class); $url = $cObj->typoLink_URL(['parameter' => (string)$pageUid]); return $url !== '' ? $url : null; } catch (\Throwable $e) { return null; } } }