66 lines
2.3 KiB
PHP
66 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GeorgRinger\News\Service;
|
|
|
|
use TYPO3\CMS\Core\Database\ConnectionPool;
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer;
|
|
|
|
/**
|
|
* This file is part of the "news" Extension for TYPO3 CMS.
|
|
*
|
|
* For the full copyright and license information, please read the
|
|
* LICENSE.txt file that was distributed with this source code.
|
|
*/
|
|
class LinkHandlerTargetPageService
|
|
{
|
|
|
|
/** @var ContentObjectRenderer */
|
|
public $cObj;
|
|
|
|
public function process(string $content = '', array $configuration = []): int
|
|
{
|
|
$fallbackPageId = (int)($configuration['fallback'] ?? 0);
|
|
|
|
$newsId = (int)$this->cObj->stdWrapValue('news', $configuration, null);
|
|
if ($newsId === 0) {
|
|
return $fallbackPageId;
|
|
}
|
|
|
|
$singlePid = $this->getSinglePidFromCategory($newsId);
|
|
return $singlePid ?: $fallbackPageId;
|
|
}
|
|
|
|
/**
|
|
* Obtains a pid for the single view from the category.
|
|
*
|
|
* @param int $newsId
|
|
* @return int
|
|
*/
|
|
protected function getSinglePidFromCategory(int $newsId): int
|
|
{
|
|
$queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
|
|
->getQueryBuilderForTable('sys_category');
|
|
$categoryRecord = $queryBuilder
|
|
->select('title', 'single_pid')
|
|
->from('sys_category')
|
|
->leftJoin(
|
|
'sys_category',
|
|
'sys_category_record_mm',
|
|
'sys_category_record_mm',
|
|
$queryBuilder->expr()->eq('sys_category_record_mm.uid_local', $queryBuilder->quoteIdentifier('sys_category.uid'))
|
|
)
|
|
->where(
|
|
$queryBuilder->expr()->eq('sys_category_record_mm.tablenames', $queryBuilder->createNamedParameter('tx_news_domain_model_news', \PDO::PARAM_STR)),
|
|
$queryBuilder->expr()->gt('sys_category.single_pid', $queryBuilder->createNamedParameter(0, \PDO::PARAM_INT)),
|
|
$queryBuilder->expr()->eq('sys_category_record_mm.sorting_foreign', $queryBuilder->createNamedParameter($newsId, \PDO::PARAM_INT))
|
|
)
|
|
->orderBy('sys_category_record_mm.sorting')
|
|
->setMaxResults(1)
|
|
->execute()->fetch();
|
|
return (int)$categoryRecord['single_pid'];
|
|
}
|
|
}
|