2020-08-21 12:43:33 +02:00
|
|
|
<?php
|
|
|
|
|
2022-09-21 13:53:34 +02:00
|
|
|
declare(strict_types=1);
|
2020-08-21 12:43:33 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Daniel Siepmann <coding@daniel-siepmann.de>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2022-09-21 13:53:34 +02:00
|
|
|
namespace DanielSiepmann\DsSite\EventListener;
|
|
|
|
|
2020-08-21 12:43:33 +02:00
|
|
|
use TYPO3\CMS\Core\Resource\Event\EnrichFileMetaDataEvent;
|
|
|
|
use TYPO3\CMS\Core\Resource\FileReference;
|
|
|
|
use TYPO3\CMS\Frontend\Resource\FileCollector;
|
|
|
|
|
|
|
|
class AddFurtherMetadataToFile
|
|
|
|
{
|
2024-02-08 08:04:56 +01:00
|
|
|
public function __construct(
|
|
|
|
private FileCollector $fileCollector
|
|
|
|
) {
|
2020-08-21 12:43:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function resolvePoster(array $record): ?FileReference
|
|
|
|
{
|
|
|
|
$this->fileCollector->addFilesFromRelation(
|
|
|
|
'sys_file_metadata',
|
|
|
|
'poster',
|
|
|
|
$record
|
|
|
|
);
|
|
|
|
|
|
|
|
$files = $this->fileCollector->getFiles();
|
2024-02-08 08:04:56 +01:00
|
|
|
|
2020-08-21 12:43:33 +02:00
|
|
|
return $files[0] ?? null;
|
|
|
|
}
|
2024-02-08 08:04:56 +01:00
|
|
|
|
|
|
|
public function __invoke(EnrichFileMetaDataEvent $event): void
|
|
|
|
{
|
|
|
|
$record = $event->getRecord();
|
|
|
|
|
|
|
|
$record['poster'] = $this->resolvePoster($record);
|
|
|
|
|
|
|
|
$event->setRecord($record);
|
|
|
|
}
|
2020-08-21 12:43:33 +02:00
|
|
|
}
|