2019-07-18 13:44:19 +02:00
|
|
|
<?php
|
2021-01-07 08:50:43 +01:00
|
|
|
|
2019-07-18 13:44:19 +02:00
|
|
|
namespace Wrm\Events\Controller;
|
|
|
|
|
2022-07-11 08:59:32 +02:00
|
|
|
use TYPO3\CMS\Core\EventDispatcher\EventDispatcher;
|
2019-11-11 12:43:50 +01:00
|
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
2021-01-11 09:20:51 +01:00
|
|
|
use TYPO3\CMS\Extbase\Annotation as Extbase;
|
2021-01-07 08:58:03 +01:00
|
|
|
use TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface;
|
|
|
|
use Wrm\Events\Domain\Model\Date;
|
2019-07-18 13:44:19 +02:00
|
|
|
use Wrm\Events\Domain\Model\Dto\DateDemand;
|
2021-12-06 12:14:19 +01:00
|
|
|
use Wrm\Events\Domain\Model\Dto\DateDemandFactory;
|
2021-07-13 15:50:14 +02:00
|
|
|
use Wrm\Events\Domain\Repository\CategoryRepository;
|
2019-07-18 13:44:19 +02:00
|
|
|
use Wrm\Events\Domain\Repository\DateRepository;
|
2019-08-14 17:22:01 +02:00
|
|
|
use Wrm\Events\Domain\Repository\RegionRepository;
|
2022-07-11 08:59:32 +02:00
|
|
|
use Wrm\Events\Events\Controller\DateListVariables;
|
|
|
|
use Wrm\Events\Events\Controller\DateSearchVariables;
|
2022-08-02 17:15:47 +02:00
|
|
|
use Wrm\Events\Pagination\Factory;
|
2021-01-11 09:20:51 +01:00
|
|
|
use Wrm\Events\Service\DataProcessingForModels;
|
2019-07-18 13:44:19 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* DateController
|
|
|
|
*/
|
2021-06-16 11:19:11 +02:00
|
|
|
class DateController extends AbstractController
|
2019-07-18 13:44:19 +02:00
|
|
|
{
|
2021-12-06 12:14:19 +01:00
|
|
|
/**
|
|
|
|
* @var DateDemandFactory
|
|
|
|
*/
|
|
|
|
protected $demandFactory;
|
|
|
|
|
2019-07-18 13:44:19 +02:00
|
|
|
/**
|
|
|
|
* @var dateRepository
|
|
|
|
*/
|
2019-08-14 17:22:01 +02:00
|
|
|
protected $dateRepository;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var regionRepository
|
|
|
|
*/
|
|
|
|
protected $regionRepository;
|
2019-07-18 13:44:19 +02:00
|
|
|
|
2021-07-13 15:50:14 +02:00
|
|
|
/**
|
|
|
|
* @var CategoryRepository
|
|
|
|
*/
|
|
|
|
protected $categoryRepository;
|
|
|
|
|
2019-07-18 13:44:19 +02:00
|
|
|
/**
|
2022-07-11 08:59:32 +02:00
|
|
|
* @var EventDispatcher
|
2019-07-18 13:44:19 +02:00
|
|
|
*/
|
2022-07-11 08:59:32 +02:00
|
|
|
protected $eventDispatcher;
|
2019-07-18 13:44:19 +02:00
|
|
|
|
2022-08-02 17:15:47 +02:00
|
|
|
/**
|
|
|
|
* @var Factory
|
|
|
|
*/
|
|
|
|
protected $paginationFactory;
|
|
|
|
|
2021-01-11 09:20:51 +01:00
|
|
|
/**
|
|
|
|
* @var DataProcessingForModels
|
|
|
|
*/
|
|
|
|
protected $dataProcessing;
|
|
|
|
|
2019-08-14 17:22:01 +02:00
|
|
|
public function __construct(
|
2021-12-06 12:14:19 +01:00
|
|
|
DateDemandFactory $demandFactory,
|
2019-08-14 17:22:01 +02:00
|
|
|
RegionRepository $regionRepository,
|
2021-07-13 15:50:14 +02:00
|
|
|
DateRepository $dateRepository,
|
2022-07-11 08:59:32 +02:00
|
|
|
CategoryRepository $categoryRepository,
|
|
|
|
DataProcessingForModels $dataProcessing,
|
2022-08-02 17:15:47 +02:00
|
|
|
EventDispatcher $eventDispatcher,
|
|
|
|
Factory $paginationFactory
|
2019-08-14 17:22:01 +02:00
|
|
|
) {
|
2021-12-06 12:14:19 +01:00
|
|
|
$this->demandFactory = $demandFactory;
|
2019-08-14 17:22:01 +02:00
|
|
|
$this->regionRepository = $regionRepository;
|
2019-07-18 13:44:19 +02:00
|
|
|
$this->dateRepository = $dateRepository;
|
2021-07-13 15:50:14 +02:00
|
|
|
$this->categoryRepository = $categoryRepository;
|
2021-01-11 09:20:51 +01:00
|
|
|
$this->dataProcessing = $dataProcessing;
|
2022-07-11 08:59:32 +02:00
|
|
|
$this->eventDispatcher = $eventDispatcher;
|
2022-08-02 17:15:47 +02:00
|
|
|
$this->paginationFactory = $paginationFactory;
|
2021-01-11 09:20:51 +01:00
|
|
|
}
|
|
|
|
|
2021-09-07 09:52:14 +02:00
|
|
|
protected function initializeAction(): void
|
2019-07-18 13:44:19 +02:00
|
|
|
{
|
2021-12-06 12:14:19 +01:00
|
|
|
$contentObject = $this->configurationManager->getContentObject();
|
|
|
|
if ($contentObject !== null) {
|
|
|
|
$this->demandFactory->setContentObjectRenderer($contentObject);
|
|
|
|
}
|
2021-01-11 09:20:51 +01:00
|
|
|
$this->dataProcessing->setConfigurationManager($this->configurationManager);
|
2019-07-18 13:44:19 +02:00
|
|
|
}
|
|
|
|
|
2022-06-28 11:38:55 +02:00
|
|
|
/**
|
|
|
|
* @param array $search
|
2022-08-02 17:15:47 +02:00
|
|
|
* @param int $currentPage
|
2022-06-28 11:38:55 +02:00
|
|
|
*/
|
2022-08-02 17:15:47 +02:00
|
|
|
public function listAction(
|
|
|
|
array $search = [],
|
|
|
|
int $currentPage = 1
|
|
|
|
): void {
|
2022-07-12 09:49:28 +02:00
|
|
|
$demand = $this->demandFactory->fromSettings($this->settings);
|
2022-06-28 11:38:55 +02:00
|
|
|
if ($search !== []) {
|
|
|
|
$demand = DateDemand::createFromRequestValues($search, $this->settings);
|
|
|
|
} elseif (
|
2021-07-13 15:50:14 +02:00
|
|
|
($this->request->hasArgument('searchword') && $this->request->getArgument('searchword') != '')
|
|
|
|
|| ($this->request->hasArgument('region') && $this->request->getArgument('region') != '')
|
|
|
|
|| ($this->request->hasArgument('start') && $this->request->getArgument('start') != '')
|
|
|
|
|| ($this->request->hasArgument('end') && $this->request->getArgument('end') != '')
|
|
|
|
|| ($this->request->hasArgument('events_search') && $this->request->getArgument('events_search') != [])
|
|
|
|
) {
|
2019-11-11 12:43:50 +01:00
|
|
|
$demand = $this->createDemandFromSearch();
|
|
|
|
}
|
2022-06-28 11:38:55 +02:00
|
|
|
|
2022-08-02 17:15:47 +02:00
|
|
|
$dates = $this->dateRepository->findByDemand($demand);
|
2022-07-11 08:59:32 +02:00
|
|
|
$event = $this->eventDispatcher->dispatch(new DateListVariables(
|
|
|
|
$search,
|
|
|
|
$demand,
|
2022-08-02 17:15:47 +02:00
|
|
|
$dates,
|
|
|
|
$this->paginationFactory->create(
|
|
|
|
$currentPage,
|
|
|
|
$this->settings['itemsPerPage'] ?? 25,
|
|
|
|
$this->settings['maximumLinks'] ?? 5,
|
|
|
|
$dates
|
|
|
|
)
|
2022-07-11 08:59:32 +02:00
|
|
|
));
|
|
|
|
if (!$event instanceof DateListVariables) {
|
|
|
|
throw new \Exception('Did not retrieve DateSearchVariables from event dispatcher, got: ' . get_class($event), 1657542318);
|
|
|
|
}
|
|
|
|
$this->view->assignMultiple($event->getVariablesForView());
|
2019-07-18 13:44:19 +02:00
|
|
|
}
|
|
|
|
|
2022-06-28 11:38:55 +02:00
|
|
|
/**
|
|
|
|
* @param array $search
|
|
|
|
*/
|
|
|
|
public function searchAction(array $search = []): void
|
2019-08-14 17:22:01 +02:00
|
|
|
{
|
2022-06-28 11:38:55 +02:00
|
|
|
$arguments = GeneralUtility::_GET('tx_events_datelist') ?? $search;
|
2021-12-13 09:09:13 +01:00
|
|
|
if (is_array($arguments) === false) {
|
|
|
|
$arguments = [];
|
|
|
|
}
|
2022-06-28 11:38:55 +02:00
|
|
|
if (isset($arguments['events_search']) && is_array($arguments['events_search'])) {
|
2021-07-13 15:50:14 +02:00
|
|
|
$arguments += $arguments['events_search'];
|
|
|
|
unset($arguments['events_search']);
|
|
|
|
}
|
|
|
|
|
2022-07-11 08:59:32 +02:00
|
|
|
// For legacy systems.
|
2021-07-13 15:50:14 +02:00
|
|
|
$this->view->assignMultiple([
|
|
|
|
'searchword' => $arguments['searchword'] ?? '',
|
|
|
|
'selRegion' => $arguments['region'] ?? '',
|
|
|
|
'start' => $arguments['start'] ?? '',
|
|
|
|
'end' => $arguments['end'] ?? '',
|
|
|
|
'considerDate' => $arguments['considerDate'] ?? '',
|
|
|
|
]);
|
2022-07-11 08:59:32 +02:00
|
|
|
|
2022-07-12 09:49:28 +02:00
|
|
|
$demand = $this->demandFactory->fromSettings($this->settings);
|
|
|
|
if ($search !== []) {
|
|
|
|
$demand = DateDemand::createFromRequestValues($search, $this->settings);
|
|
|
|
}
|
|
|
|
|
2022-07-11 08:59:32 +02:00
|
|
|
$event = $this->eventDispatcher->dispatch(new DateSearchVariables(
|
|
|
|
$search,
|
2022-07-12 09:49:28 +02:00
|
|
|
$demand,
|
2022-07-11 08:59:32 +02:00
|
|
|
$this->regionRepository->findAll(),
|
|
|
|
$this->categoryRepository->findAllCurrentlyAssigned($this->settings['uids']['categoriesParent'] ?? 0, 'categories'),
|
|
|
|
$this->categoryRepository->findAllCurrentlyAssigned($this->settings['uids']['featuresParent'] ?? 0, 'features')
|
|
|
|
));
|
|
|
|
if (!$event instanceof DateSearchVariables) {
|
|
|
|
throw new \Exception('Did not retrieve DateSearchVariables from event dispatcher, got: ' . get_class($event), 1657542318);
|
|
|
|
}
|
|
|
|
$this->view->assignMultiple($event->getVariablesForView());
|
2019-08-14 17:22:01 +02:00
|
|
|
}
|
|
|
|
|
2021-09-07 09:52:14 +02:00
|
|
|
public function teaserAction(): void
|
2019-07-18 13:44:19 +02:00
|
|
|
{
|
|
|
|
$dates = $this->dateRepository->findByUids($this->settings['eventUids']);
|
|
|
|
$this->view->assign('dates', $dates);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-01-11 09:20:51 +01:00
|
|
|
* @Extbase\IgnoreValidation("date")
|
2019-07-18 13:44:19 +02:00
|
|
|
*/
|
2021-09-07 09:52:14 +02:00
|
|
|
public function showAction(Date $date): void
|
2019-07-18 13:44:19 +02:00
|
|
|
{
|
|
|
|
$this->view->assign('date', $date);
|
|
|
|
}
|
|
|
|
|
2019-08-14 17:22:01 +02:00
|
|
|
protected function createDemandFromSearch(): DateDemand
|
|
|
|
{
|
2021-12-13 09:09:13 +01:00
|
|
|
$arguments = $this->request->getArguments();
|
2021-07-13 15:50:14 +02:00
|
|
|
if (isset($arguments['events_search'])) {
|
|
|
|
$arguments += $arguments['events_search'];
|
|
|
|
unset($arguments['events_search']);
|
2019-07-18 13:44:19 +02:00
|
|
|
}
|
|
|
|
|
2021-07-13 15:50:14 +02:00
|
|
|
return DateDemand::createFromRequestValues(
|
|
|
|
$arguments,
|
|
|
|
$this->settings
|
|
|
|
);
|
2019-07-18 13:44:19 +02:00
|
|
|
}
|
|
|
|
}
|