2019-08-12 07:43:37 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Wrm\Events\Service;
|
|
|
|
|
2022-12-21 13:16:20 +01:00
|
|
|
use Exception;
|
2021-12-16 09:11:45 +01:00
|
|
|
use TYPO3\CMS\Core\Database\ConnectionPool;
|
2021-01-07 08:58:03 +01:00
|
|
|
use TYPO3\CMS\Core\DataHandling\DataHandler;
|
|
|
|
use TYPO3\CMS\Core\DataHandling\SlugHelper;
|
2021-12-14 16:59:12 +01:00
|
|
|
use TYPO3\CMS\Core\Log\Logger;
|
2021-12-16 09:11:45 +01:00
|
|
|
use TYPO3\CMS\Core\Log\LogManager;
|
2021-09-06 15:18:48 +02:00
|
|
|
use TYPO3\CMS\Core\Resource\Exception\FolderDoesNotExistException;
|
2021-12-14 16:59:12 +01:00
|
|
|
use TYPO3\CMS\Core\Resource\File;
|
2019-08-12 07:43:37 +02:00
|
|
|
use TYPO3\CMS\Core\Resource\Index\MetaDataRepository;
|
2021-12-14 16:59:12 +01:00
|
|
|
use TYPO3\CMS\Core\Resource\ResourceStorage;
|
2019-08-12 07:43:37 +02:00
|
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
|
|
use TYPO3\CMS\Extbase\Configuration\ConfigurationManager;
|
|
|
|
use TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface;
|
|
|
|
use TYPO3\CMS\Extbase\Object\ObjectManager;
|
2021-01-07 08:58:03 +01:00
|
|
|
use TYPO3\CMS\Extbase\Persistence\Generic\PersistenceManager;
|
2019-08-12 07:43:37 +02:00
|
|
|
use TYPO3\CMS\Extbase\Persistence\ObjectStorage;
|
2021-09-08 12:32:51 +02:00
|
|
|
use Wrm\Events\Domain\Model\Category;
|
2021-01-07 08:58:03 +01:00
|
|
|
use Wrm\Events\Domain\Model\Date;
|
|
|
|
use Wrm\Events\Domain\Model\Event;
|
2022-01-27 14:14:02 +01:00
|
|
|
use Wrm\Events\Domain\Model\Import;
|
2021-01-07 08:58:03 +01:00
|
|
|
use Wrm\Events\Domain\Model\Organizer;
|
2021-12-14 16:22:29 +01:00
|
|
|
use Wrm\Events\Domain\Model\Region;
|
2021-09-06 15:19:06 +02:00
|
|
|
use Wrm\Events\Domain\Repository\CategoryRepository;
|
2019-08-12 07:43:37 +02:00
|
|
|
use Wrm\Events\Domain\Repository\DateRepository;
|
|
|
|
use Wrm\Events\Domain\Repository\EventRepository;
|
|
|
|
use Wrm\Events\Domain\Repository\OrganizerRepository;
|
2022-07-05 14:08:14 +02:00
|
|
|
use Wrm\Events\Service\DestinationDataImportService\CategoriesAssignment;
|
|
|
|
use Wrm\Events\Service\DestinationDataImportService\CategoriesAssignment\Import as CategoryImport;
|
2021-12-15 12:28:06 +01:00
|
|
|
use Wrm\Events\Service\DestinationDataImportService\DataFetcher;
|
2022-04-21 08:07:25 +02:00
|
|
|
use Wrm\Events\Service\DestinationDataImportService\DatesFactory;
|
2022-08-02 15:56:18 +02:00
|
|
|
use Wrm\Events\Service\DestinationDataImportService\LocationAssignment;
|
2022-11-23 10:59:55 +01:00
|
|
|
use Wrm\Events\Service\DestinationDataImportService\Slugger;
|
2019-08-12 07:43:37 +02:00
|
|
|
|
2021-01-07 08:50:43 +01:00
|
|
|
class DestinationDataImportService
|
|
|
|
{
|
2019-08-12 07:43:37 +02:00
|
|
|
/**
|
2022-01-26 14:16:12 +01:00
|
|
|
* @var Import
|
2019-08-12 07:43:37 +02:00
|
|
|
*/
|
2022-01-26 14:16:12 +01:00
|
|
|
private $import;
|
2021-12-14 16:59:12 +01:00
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
/**
|
2021-12-14 16:59:12 +01:00
|
|
|
* @var Event
|
2019-08-12 07:43:37 +02:00
|
|
|
*/
|
2021-12-14 16:59:12 +01:00
|
|
|
private $tmpCurrentEvent;
|
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
/**
|
2021-12-14 16:59:12 +01:00
|
|
|
* @var Logger
|
2019-08-12 07:43:37 +02:00
|
|
|
*/
|
2021-12-14 16:59:12 +01:00
|
|
|
private $logger;
|
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
/**
|
|
|
|
* @var EventRepository
|
|
|
|
*/
|
2021-12-14 16:59:12 +01:00
|
|
|
private $eventRepository;
|
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
/**
|
|
|
|
* @var OrganizerRepository
|
|
|
|
*/
|
2021-12-14 16:59:12 +01:00
|
|
|
private $organizerRepository;
|
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
/**
|
|
|
|
* @var DateRepository
|
|
|
|
*/
|
2021-12-14 16:59:12 +01:00
|
|
|
private $dateRepository;
|
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
/**
|
|
|
|
* @var MetaDataRepository
|
|
|
|
*/
|
2021-12-14 16:59:12 +01:00
|
|
|
private $metaDataRepository;
|
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
/**
|
|
|
|
* @var ConfigurationManager
|
|
|
|
*/
|
2021-12-14 16:59:12 +01:00
|
|
|
private $configurationManager;
|
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
/**
|
|
|
|
* @var ObjectManager
|
|
|
|
*/
|
2021-12-14 16:59:12 +01:00
|
|
|
private $objectManager;
|
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
/**
|
|
|
|
* @var PersistenceManager
|
|
|
|
*/
|
2021-12-14 16:59:12 +01:00
|
|
|
private $persistenceManager;
|
|
|
|
|
2021-12-15 12:28:06 +01:00
|
|
|
/**
|
|
|
|
* @var DataFetcher
|
|
|
|
*/
|
|
|
|
private $dataFetcher;
|
|
|
|
|
2022-04-21 08:07:25 +02:00
|
|
|
/**
|
|
|
|
* @var DatesFactory
|
|
|
|
*/
|
|
|
|
private $datesFactory;
|
|
|
|
|
2022-07-05 14:08:14 +02:00
|
|
|
/**
|
|
|
|
* @var CategoriesAssignment
|
|
|
|
*/
|
|
|
|
private $categoriesAssignment;
|
|
|
|
|
2022-08-02 15:56:18 +02:00
|
|
|
/**
|
|
|
|
* @var LocationAssignment
|
|
|
|
*/
|
|
|
|
private $locationAssignment;
|
|
|
|
|
2022-11-23 10:59:55 +01:00
|
|
|
/**
|
|
|
|
* @var Slugger
|
|
|
|
*/
|
|
|
|
private $slugger;
|
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
/**
|
|
|
|
* ImportService constructor.
|
|
|
|
* @param EventRepository $eventRepository
|
|
|
|
* @param OrganizerRepository $organizerRepository
|
|
|
|
* @param DateRepository $dateRepository
|
|
|
|
* @param MetaDataRepository $metaDataRepository
|
|
|
|
* @param ConfigurationManager $configurationManager
|
|
|
|
* @param PersistenceManager $persistenceManager
|
|
|
|
* @param ObjectManager $objectManager
|
2021-12-15 12:28:06 +01:00
|
|
|
* @param DataFetcher $dataFetcher
|
2022-07-05 14:08:14 +02:00
|
|
|
* @param CategoriesAssignment $categoriesAssignment
|
2022-08-02 15:56:18 +02:00
|
|
|
* @param LocationAssignment $locationAssignment
|
2022-11-23 10:59:55 +01:00
|
|
|
* @param Slugger $slugger
|
2019-08-12 07:43:37 +02:00
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
EventRepository $eventRepository,
|
|
|
|
OrganizerRepository $organizerRepository,
|
|
|
|
DateRepository $dateRepository,
|
|
|
|
MetaDataRepository $metaDataRepository,
|
|
|
|
ConfigurationManager $configurationManager,
|
|
|
|
PersistenceManager $persistenceManager,
|
2019-08-12 15:49:52 +02:00
|
|
|
ObjectManager $objectManager,
|
2022-04-21 08:07:25 +02:00
|
|
|
DataFetcher $dataFetcher,
|
2022-07-05 14:08:14 +02:00
|
|
|
DatesFactory $datesFactory,
|
2022-08-02 15:56:18 +02:00
|
|
|
CategoriesAssignment $categoriesAssignment,
|
2022-11-23 10:59:55 +01:00
|
|
|
LocationAssignment $locationAssignment,
|
|
|
|
Slugger $slugger
|
2019-08-12 07:43:37 +02:00
|
|
|
) {
|
2021-09-07 09:03:02 +02:00
|
|
|
$this->eventRepository = $eventRepository;
|
|
|
|
$this->organizerRepository = $organizerRepository;
|
|
|
|
$this->dateRepository = $dateRepository;
|
|
|
|
$this->metaDataRepository = $metaDataRepository;
|
|
|
|
$this->configurationManager = $configurationManager;
|
|
|
|
$this->persistenceManager = $persistenceManager;
|
|
|
|
$this->objectManager = $objectManager;
|
2021-12-15 12:28:06 +01:00
|
|
|
$this->dataFetcher = $dataFetcher;
|
2022-04-21 08:07:25 +02:00
|
|
|
$this->datesFactory = $datesFactory;
|
2022-07-05 14:08:14 +02:00
|
|
|
$this->categoriesAssignment = $categoriesAssignment;
|
2022-08-02 15:56:18 +02:00
|
|
|
$this->locationAssignment = $locationAssignment;
|
2022-11-23 10:59:55 +01:00
|
|
|
$this->slugger = $slugger;
|
2019-08-12 15:49:52 +02:00
|
|
|
}
|
2019-08-12 07:43:37 +02:00
|
|
|
|
2021-12-14 16:59:12 +01:00
|
|
|
public function import(
|
2022-01-26 14:16:12 +01:00
|
|
|
Import $import
|
2021-12-14 16:59:12 +01:00
|
|
|
): int {
|
2022-01-26 14:16:12 +01:00
|
|
|
$this->import = $import;
|
2019-08-12 15:49:52 +02:00
|
|
|
|
|
|
|
// Get configuration
|
2019-08-12 07:43:37 +02:00
|
|
|
$frameworkConfiguration = $this->configurationManager->getConfiguration(
|
|
|
|
ConfigurationManagerInterface::CONFIGURATION_TYPE_FRAMEWORK
|
|
|
|
);
|
|
|
|
|
2019-08-12 15:49:52 +02:00
|
|
|
// Set storage pid
|
2019-08-12 07:43:37 +02:00
|
|
|
$persistenceConfiguration = [
|
|
|
|
'persistence' => [
|
2022-01-26 14:16:12 +01:00
|
|
|
'storagePid' => $this->import->getStoragePid(),
|
2019-08-12 07:43:37 +02:00
|
|
|
],
|
|
|
|
];
|
2019-08-12 15:49:52 +02:00
|
|
|
|
|
|
|
// Set Configuration
|
2019-08-12 07:43:37 +02:00
|
|
|
$this->configurationManager->setConfiguration(array_merge($frameworkConfiguration, $persistenceConfiguration));
|
2019-08-13 11:17:34 +02:00
|
|
|
$this->logger = GeneralUtility::makeInstance(LogManager::class)->getLogger(__CLASS__);
|
2019-10-09 15:03:58 +02:00
|
|
|
$this->logger->info('Starting Destination Data Import Service');
|
2019-08-12 07:43:37 +02:00
|
|
|
|
2021-12-14 16:59:12 +01:00
|
|
|
try {
|
2022-01-26 14:16:12 +01:00
|
|
|
$data = $this->dataFetcher->fetchSearchResult($import);
|
2022-12-21 13:16:20 +01:00
|
|
|
} catch (Exception $e) {
|
2019-08-13 09:12:30 +02:00
|
|
|
$this->logger->error('Could not receive data.');
|
2019-08-12 07:43:37 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2021-12-14 16:59:12 +01:00
|
|
|
|
2022-01-26 14:16:12 +01:00
|
|
|
return $this->processData($data);
|
2021-12-14 16:59:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function processData(array $data): int
|
2021-01-07 08:50:43 +01:00
|
|
|
{
|
2019-10-09 15:03:58 +02:00
|
|
|
$this->logger->info('Processing json ' . count($data['items']));
|
|
|
|
|
|
|
|
// Get selected region
|
2022-01-27 14:14:02 +01:00
|
|
|
$selectedRegion = $this->import->getRegion();
|
2019-08-12 07:43:37 +02:00
|
|
|
|
|
|
|
foreach ($data['items'] as $event) {
|
2019-08-12 15:49:52 +02:00
|
|
|
$this->logger->info('Processing event ' . substr($event['title'], 0, 20));
|
2019-08-13 11:52:34 +02:00
|
|
|
|
2019-08-12 15:49:52 +02:00
|
|
|
// Event already exists? If not create one!
|
|
|
|
$this->tmpCurrentEvent = $this->getOrCreateEvent($event['global_id'], $event['title']);
|
2019-08-13 11:52:34 +02:00
|
|
|
|
2020-10-01 08:34:13 +02:00
|
|
|
// Set language UID
|
|
|
|
$this->tmpCurrentEvent->setLanguageUid(-1);
|
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
// Set selected Region
|
2021-12-14 16:22:29 +01:00
|
|
|
if ($selectedRegion instanceof Region) {
|
|
|
|
$this->tmpCurrentEvent->setRegion($selectedRegion);
|
|
|
|
}
|
2019-08-13 11:52:34 +02:00
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
// Set Title
|
|
|
|
$this->tmpCurrentEvent->setTitle(substr($event['title'], 0, 254));
|
2019-08-13 11:52:34 +02:00
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
// Set Highlight (Is only set in rest if true)
|
2022-07-13 15:58:05 +02:00
|
|
|
if ($event['highlight'] ?? false) {
|
2019-08-12 07:43:37 +02:00
|
|
|
$this->tmpCurrentEvent->setHighlight($event['highlight']);
|
2021-01-07 08:50:43 +01:00
|
|
|
}
|
2019-08-13 11:52:34 +02:00
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
// Set Texts
|
2022-07-13 15:58:05 +02:00
|
|
|
if ($event['texts'] ?? false) {
|
2019-08-13 11:52:34 +02:00
|
|
|
$this->setTexts($event['texts']);
|
2021-01-07 08:50:43 +01:00
|
|
|
}
|
2019-08-13 11:52:34 +02:00
|
|
|
|
2022-08-02 15:56:18 +02:00
|
|
|
$this->tmpCurrentEvent->setLocation(
|
|
|
|
$this->locationAssignment->getLocation($event)
|
|
|
|
);
|
2019-09-23 15:41:41 +02:00
|
|
|
|
2019-08-13 09:12:30 +02:00
|
|
|
// Set Categories
|
2022-07-13 15:58:05 +02:00
|
|
|
if ($event['categories'] ?? false) {
|
2019-08-13 11:52:34 +02:00
|
|
|
$this->setCategories($event['categories']);
|
2021-01-07 08:50:43 +01:00
|
|
|
}
|
2019-08-13 11:52:34 +02:00
|
|
|
|
2022-07-05 14:08:14 +02:00
|
|
|
// Set Features
|
|
|
|
if ($event['features']) {
|
|
|
|
$this->setFeatures($event['features']);
|
|
|
|
}
|
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
// Set Organizer
|
2022-07-13 15:58:05 +02:00
|
|
|
if ($event['addresses'] ?? false) {
|
2019-08-13 11:52:34 +02:00
|
|
|
$this->setOrganizer($event['addresses']);
|
2021-01-07 08:50:43 +01:00
|
|
|
}
|
2019-08-13 11:52:34 +02:00
|
|
|
|
2020-10-01 09:45:32 +02:00
|
|
|
// Set Social
|
2022-07-13 15:58:05 +02:00
|
|
|
if ($event['media_objects'] ?? false) {
|
2020-08-19 11:30:13 +02:00
|
|
|
$this->setSocial($event['media_objects']);
|
2021-01-07 08:50:43 +01:00
|
|
|
}
|
2020-08-19 11:30:13 +02:00
|
|
|
|
2022-08-02 15:56:18 +02:00
|
|
|
if ($event['web'] ?? false) {
|
|
|
|
$this->tmpCurrentEvent->setWeb($event['web']);
|
|
|
|
}
|
|
|
|
|
2020-10-01 09:45:32 +02:00
|
|
|
// Set Tickets
|
2022-07-13 15:58:05 +02:00
|
|
|
if ($event['media_objects'] ?? false) {
|
2020-10-01 09:45:32 +02:00
|
|
|
$this->setTickets($event['media_objects']);
|
2021-01-07 08:50:43 +01:00
|
|
|
}
|
2020-10-01 09:45:32 +02:00
|
|
|
|
2019-08-12 07:43:37 +02:00
|
|
|
// Set Dates
|
2022-07-13 15:58:05 +02:00
|
|
|
if ($event['timeIntervals'] ?? false) {
|
2021-09-07 08:36:48 +02:00
|
|
|
$this->setDates(
|
|
|
|
$event['timeIntervals'],
|
|
|
|
(bool) $this->getAttributeValue($event, 'DETAILS_ABGESAGT')
|
|
|
|
);
|
2021-01-07 08:50:43 +01:00
|
|
|
}
|
2019-08-13 11:52:34 +02:00
|
|
|
|
2019-08-12 15:49:52 +02:00
|
|
|
// Set Assets
|
2022-07-13 15:58:05 +02:00
|
|
|
if ($event['media_objects'] ?? false) {
|
2019-08-13 11:52:34 +02:00
|
|
|
$this->setAssets($event['media_objects']);
|
2021-01-07 08:50:43 +01:00
|
|
|
}
|
2019-08-13 11:52:34 +02:00
|
|
|
|
2019-08-12 15:49:52 +02:00
|
|
|
// Update and persist
|
|
|
|
$this->logger->info('Persist database');
|
|
|
|
$this->eventRepository->update($this->tmpCurrentEvent);
|
|
|
|
$this->persistenceManager->persistAll();
|
|
|
|
}
|
2022-11-23 10:59:55 +01:00
|
|
|
|
|
|
|
$this->logger->info('Update slugs');
|
|
|
|
$this->slugger->update('tx_events_domain_model_event');
|
|
|
|
$this->slugger->update('tx_events_domain_model_date');
|
|
|
|
|
2019-10-09 15:03:58 +02:00
|
|
|
$this->logger->info('Finished import');
|
2019-08-12 15:49:52 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2019-08-12 07:43:37 +02:00
|
|
|
|
2021-12-14 16:59:12 +01:00
|
|
|
private function setCategories(array $categories): void
|
2021-01-07 08:50:43 +01:00
|
|
|
{
|
2022-07-05 14:08:14 +02:00
|
|
|
$categories = $this->categoriesAssignment->getCategories(new CategoryImport(
|
|
|
|
$this->import->getCategoryParent(),
|
|
|
|
$this->import->getCategoriesPid(),
|
|
|
|
$categories
|
|
|
|
));
|
2021-12-14 16:59:12 +01:00
|
|
|
|
2022-07-05 14:08:14 +02:00
|
|
|
$this->tmpCurrentEvent->setCategories($categories);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function setFeatures(array $features): void
|
|
|
|
{
|
|
|
|
$features = $this->categoriesAssignment->getCategories(new CategoryImport(
|
|
|
|
$this->import->getFeaturesParent(),
|
|
|
|
$this->import->getFeaturesPid(),
|
|
|
|
$features,
|
|
|
|
true
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->tmpCurrentEvent->setFeatures($features);
|
2019-08-13 09:12:30 +02:00
|
|
|
}
|
|
|
|
|
2021-12-14 16:59:12 +01:00
|
|
|
private function setDates(
|
2021-09-07 08:36:48 +02:00
|
|
|
array $timeIntervals,
|
|
|
|
bool $canceled
|
2021-12-14 16:59:12 +01:00
|
|
|
): void {
|
2019-10-09 15:03:58 +02:00
|
|
|
// @TODO: does not seem to work -->
|
2019-08-12 15:49:52 +02:00
|
|
|
//$currentEventDates = $this->tmpCurrentEvent->getDates();
|
|
|
|
//$this->tmpCurrentEvent->removeAllDates($currentEventDates);
|
|
|
|
// <--
|
|
|
|
// TODO: Workaround delete dates
|
|
|
|
$currentEventDates = $this->tmpCurrentEvent->getDates();
|
|
|
|
$this->logger->info('Found ' . count($currentEventDates) . ' to delete');
|
|
|
|
foreach ($currentEventDates as $currentDate) {
|
|
|
|
$this->dateRepository->remove($currentDate);
|
|
|
|
}
|
2019-08-12 07:43:37 +02:00
|
|
|
|
2022-04-21 08:07:25 +02:00
|
|
|
$dates = $this->datesFactory->createDates($timeIntervals, $canceled);
|
|
|
|
foreach ($dates as $date) {
|
|
|
|
$this->tmpCurrentEvent->addDate($date);
|
2019-08-12 15:49:52 +02:00
|
|
|
}
|
2022-04-21 08:07:25 +02:00
|
|
|
|
2019-10-11 15:12:07 +02:00
|
|
|
$this->logger->info('Finished setup dates');
|
2019-08-12 15:49:52 +02:00
|
|
|
}
|
2019-08-12 07:43:37 +02:00
|
|
|
|
2021-12-14 16:59:12 +01:00
|
|
|
private function setOrganizer(array $addresses): void
|
2021-01-07 08:50:43 +01:00
|
|
|
{
|
|
|
|
foreach ($addresses as $address) {
|
2019-08-12 15:49:52 +02:00
|
|
|
if ($address['rel'] == "organizer") {
|
|
|
|
$tmpOrganizer = $this->organizerRepository->findOneByName($address['name']);
|
2019-08-13 11:17:34 +02:00
|
|
|
if ($tmpOrganizer) {
|
2019-08-12 15:49:52 +02:00
|
|
|
$this->tmpCurrentEvent->setOrganizer($tmpOrganizer);
|
2019-08-13 11:17:34 +02:00
|
|
|
continue;
|
2019-08-12 15:49:52 +02:00
|
|
|
}
|
2021-01-07 08:47:15 +01:00
|
|
|
$tmpOrganizer = $this->objectManager->get(Organizer::class);
|
2020-10-01 08:34:13 +02:00
|
|
|
$tmpOrganizer->setLanguageUid(-1);
|
2021-09-07 09:52:14 +02:00
|
|
|
$tmpOrganizer->setName($address['name'] ?? '');
|
|
|
|
$tmpOrganizer->setCity($address['city'] ?? '');
|
|
|
|
$tmpOrganizer->setZip($address['zip'] ?? '');
|
|
|
|
$tmpOrganizer->setStreet($address['street'] ?? '');
|
|
|
|
$tmpOrganizer->setPhone($address['phone'] ?? '');
|
|
|
|
$tmpOrganizer->setWeb($address['web'] ?? '');
|
|
|
|
$tmpOrganizer->setEmail($address['email'] ?? '');
|
|
|
|
$tmpOrganizer->setDistrict($address['district'] ?? '');
|
2019-08-13 11:17:34 +02:00
|
|
|
$this->organizerRepository->add($tmpOrganizer);
|
|
|
|
$this->tmpCurrentEvent->setOrganizer($tmpOrganizer);
|
2019-08-12 15:49:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-12 07:43:37 +02:00
|
|
|
|
2020-08-19 11:30:13 +02:00
|
|
|
/**
|
|
|
|
* @param array $media
|
|
|
|
*/
|
2021-12-14 16:59:12 +01:00
|
|
|
private function setSocial(array $media): void
|
2021-01-07 08:50:43 +01:00
|
|
|
{
|
|
|
|
foreach ($media as $link) {
|
|
|
|
if ($link['rel'] == "socialmedia" && $link['value'] == "Facebook") {
|
2020-08-19 11:30:13 +02:00
|
|
|
$this->tmpCurrentEvent->setFacebook($link['url']);
|
2021-01-07 08:50:43 +01:00
|
|
|
}
|
|
|
|
if ($link['rel'] == "socialmedia" && $link['value'] == "YouTube") {
|
2020-08-19 11:30:13 +02:00
|
|
|
$this->tmpCurrentEvent->setYouTube($link['url']);
|
2021-01-07 08:50:43 +01:00
|
|
|
}
|
|
|
|
if ($link['rel'] == "socialmedia" && $link['value'] == "Instagram") {
|
2020-08-19 11:30:13 +02:00
|
|
|
$this->tmpCurrentEvent->setInstagram($link['url']);
|
2021-01-07 08:50:43 +01:00
|
|
|
}
|
2020-10-01 09:45:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-14 16:59:12 +01:00
|
|
|
private function setTickets(array $media): void
|
2021-01-07 08:50:43 +01:00
|
|
|
{
|
|
|
|
foreach ($media as $link) {
|
2022-07-07 08:22:45 +02:00
|
|
|
if (isset($link['rel']) === false) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($link['rel'] === 'ticket') {
|
2020-10-01 09:45:32 +02:00
|
|
|
$this->tmpCurrentEvent->setTicket($link['url']);
|
2022-07-07 08:22:45 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
|
|
|
$link['rel'] === 'booking'
|
|
|
|
&& !$this->hasRelation('ticket', $media)
|
|
|
|
) {
|
2020-08-19 11:30:13 +02:00
|
|
|
$this->tmpCurrentEvent->setTicket($link['url']);
|
2022-07-07 08:22:45 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
|
|
|
$link['rel'] === 'PRICE_KARTENLINK'
|
|
|
|
&& !$this->hasRelation('ticket', $media)
|
|
|
|
&& !$this->hasRelation('booking', $media)
|
|
|
|
) {
|
2020-10-01 09:45:32 +02:00
|
|
|
$this->tmpCurrentEvent->setTicket($link['url']);
|
2022-07-07 08:22:45 +02:00
|
|
|
return;
|
2020-10-01 09:45:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-07 08:22:45 +02:00
|
|
|
private function hasRelation(string $needle, array $haystack): bool
|
2021-01-07 08:50:43 +01:00
|
|
|
{
|
|
|
|
foreach ($haystack as $key => $value) {
|
2022-07-07 08:22:45 +02:00
|
|
|
if (isset($haystack['rel']) && $haystack['rel'] === $needle) {
|
2020-10-01 09:45:32 +02:00
|
|
|
return true;
|
|
|
|
}
|
2022-07-07 08:22:45 +02:00
|
|
|
|
|
|
|
if (is_array($value) && $this->hasRelation($needle, $value)) {
|
|
|
|
return true;
|
2020-10-01 09:45:32 +02:00
|
|
|
}
|
2020-08-19 11:30:13 +02:00
|
|
|
}
|
2022-07-07 08:22:45 +02:00
|
|
|
|
2020-10-01 09:45:32 +02:00
|
|
|
return false;
|
2020-08-19 11:30:13 +02:00
|
|
|
}
|
|
|
|
|
2021-12-14 16:59:12 +01:00
|
|
|
private function setTexts(array $texts): void
|
2021-01-07 08:50:43 +01:00
|
|
|
{
|
|
|
|
foreach ($texts as $text) {
|
2021-12-20 10:20:47 +01:00
|
|
|
if (isset($text['value']) === false) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-08-12 15:49:52 +02:00
|
|
|
if ($text['rel'] == "details" && $text['type'] == "text/plain") {
|
2020-08-19 11:30:13 +02:00
|
|
|
$this->tmpCurrentEvent->setDetails(str_replace('\n\n', '\n', $text['value']));
|
2019-08-12 15:49:52 +02:00
|
|
|
}
|
|
|
|
if ($text['rel'] == "teaser" && $text['type'] == "text/plain") {
|
2020-08-19 11:30:13 +02:00
|
|
|
$this->tmpCurrentEvent->setTeaser(str_replace('\n\n', '\n', $text['value']));
|
2019-08-12 15:49:52 +02:00
|
|
|
}
|
2020-03-16 14:06:03 +01:00
|
|
|
if ($text['rel'] == "PRICE_INFO" && $text['type'] == "text/plain") {
|
2020-08-19 11:30:13 +02:00
|
|
|
$this->tmpCurrentEvent->setPriceInfo(str_replace('\n\n', '\n', $text['value']));
|
2020-03-16 14:06:03 +01:00
|
|
|
}
|
2019-08-12 15:49:52 +02:00
|
|
|
}
|
|
|
|
}
|
2019-08-12 07:43:37 +02:00
|
|
|
|
2021-12-14 16:59:12 +01:00
|
|
|
private function getOrCreateEvent(string $globalId, string $title): Event
|
2021-01-07 08:50:43 +01:00
|
|
|
{
|
2019-08-12 15:49:52 +02:00
|
|
|
$event = $this->eventRepository->findOneByGlobalId($globalId);
|
2019-08-12 07:43:37 +02:00
|
|
|
|
2021-12-14 16:59:12 +01:00
|
|
|
if ($event instanceof Event) {
|
|
|
|
$this->logger->info(
|
|
|
|
'Found "' . substr($title, 0, 20) . '..." with global id ' . $globalId . ' in database'
|
|
|
|
);
|
2019-08-13 11:17:34 +02:00
|
|
|
return $event;
|
2019-08-12 15:49:52 +02:00
|
|
|
}
|
2019-08-12 07:43:37 +02:00
|
|
|
|
2019-08-13 11:17:34 +02:00
|
|
|
// New event is created
|
|
|
|
$this->logger->info(substr($title, 0, 20) . ' does not exist');
|
2021-01-07 08:47:15 +01:00
|
|
|
$event = $this->objectManager->get(Event::class);
|
2019-08-13 11:17:34 +02:00
|
|
|
// Create event and persist
|
|
|
|
$event->setGlobalId($globalId);
|
|
|
|
$this->eventRepository->add($event);
|
|
|
|
$this->persistenceManager->persistAll();
|
2021-12-14 16:59:12 +01:00
|
|
|
$this->logger->info(
|
|
|
|
'Not found "' . substr($title, 0, 20) . '..." with global id ' . $globalId . ' in database.'
|
|
|
|
. ' Created new one.'
|
|
|
|
);
|
2019-08-12 15:49:52 +02:00
|
|
|
return $event;
|
|
|
|
}
|
2019-08-12 07:43:37 +02:00
|
|
|
|
2021-12-14 16:59:12 +01:00
|
|
|
private function setAssets(array $assets): void
|
2021-01-07 08:50:43 +01:00
|
|
|
{
|
2019-10-09 15:03:58 +02:00
|
|
|
$this->logger->info("Set assets");
|
|
|
|
|
2023-01-24 13:01:27 +01:00
|
|
|
$allowedMimeTypes = [
|
|
|
|
'image/jpeg',
|
|
|
|
'image/png',
|
|
|
|
];
|
2022-01-27 14:14:02 +01:00
|
|
|
$importFolder = $this->import->getFilesFolder();
|
2021-12-14 16:59:12 +01:00
|
|
|
|
2019-08-13 11:17:34 +02:00
|
|
|
$error = false;
|
|
|
|
|
2021-01-07 08:50:43 +01:00
|
|
|
foreach ($assets as $media_object) {
|
2023-01-24 13:01:27 +01:00
|
|
|
if (
|
|
|
|
$media_object['rel'] == "default"
|
|
|
|
&& in_array($media_object['type'], $allowedMimeTypes)
|
|
|
|
) {
|
2021-12-16 10:00:51 +01:00
|
|
|
$fileUrl = urldecode($media_object['url']);
|
2022-01-27 14:14:02 +01:00
|
|
|
$orgFileNameSanitized = $importFolder->getStorage()->sanitizeFileName(
|
2020-08-18 15:22:34 +02:00
|
|
|
basename(
|
|
|
|
urldecode($media_object['url'])
|
2020-08-18 14:27:44 +02:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2021-12-16 10:00:51 +01:00
|
|
|
$this->logger->info('File attached:' . $fileUrl);
|
2020-08-18 14:27:44 +02:00
|
|
|
$this->logger->info('File attached sanitized:' . $orgFileNameSanitized);
|
2019-10-09 15:03:58 +02:00
|
|
|
|
2022-01-27 14:14:02 +01:00
|
|
|
if ($importFolder->hasFile($orgFileNameSanitized)) {
|
2019-08-13 09:12:30 +02:00
|
|
|
$this->logger->info('File already exists');
|
2019-08-12 15:49:52 +02:00
|
|
|
} else {
|
2020-08-18 14:27:44 +02:00
|
|
|
$this->logger->info("File don't exist " . $orgFileNameSanitized);
|
2019-08-12 15:49:52 +02:00
|
|
|
// Load the file
|
2021-12-16 10:00:51 +01:00
|
|
|
if ($filename = $this->loadFile($fileUrl)) {
|
2019-08-12 15:49:52 +02:00
|
|
|
// Move file to defined folder
|
2021-12-16 10:00:51 +01:00
|
|
|
$this->logger->info('Adding file ' . $filename);
|
2021-09-06 15:18:48 +02:00
|
|
|
|
2022-01-27 14:14:02 +01:00
|
|
|
$importFolder->addFile($filename, basename($fileUrl));
|
2019-08-12 07:43:37 +02:00
|
|
|
} else {
|
2019-08-12 15:49:52 +02:00
|
|
|
$error = true;
|
2019-08-12 07:43:37 +02:00
|
|
|
}
|
2019-08-12 15:49:52 +02:00
|
|
|
}
|
2019-08-12 07:43:37 +02:00
|
|
|
|
2019-08-12 15:49:52 +02:00
|
|
|
if ($error !== true) {
|
2021-09-06 16:33:18 +02:00
|
|
|
if ($this->tmpCurrentEvent->getImages()->count() > 0) {
|
2019-08-12 15:49:52 +02:00
|
|
|
$this->logger->info('Relation found');
|
2021-09-07 09:03:02 +02:00
|
|
|
// TODO: How to delete file references?
|
2019-08-12 15:49:52 +02:00
|
|
|
} else {
|
|
|
|
$this->logger->info('No relation found');
|
2022-01-27 14:14:02 +01:00
|
|
|
if ($importFolder->hasFile($orgFileNameSanitized) === false) {
|
|
|
|
$this->logger->warning('Could not find file.', [$orgFileNameSanitized]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$file = $importFolder->getStorage()->getFileInFolder($orgFileNameSanitized, $importFolder);
|
2021-12-14 16:59:12 +01:00
|
|
|
if (!$file instanceof File) {
|
2022-01-27 14:14:02 +01:00
|
|
|
$this->logger->warning('Could not find file.', [$orgFileNameSanitized]);
|
2021-12-14 16:59:12 +01:00
|
|
|
continue;
|
|
|
|
}
|
2022-01-27 14:14:02 +01:00
|
|
|
|
2021-12-14 16:59:12 +01:00
|
|
|
$this->metaDataRepository->update(
|
|
|
|
$file->getUid(),
|
|
|
|
[
|
2022-06-27 14:37:00 +02:00
|
|
|
'title' => $this->getShortenedString($media_object['value'], 100),
|
2021-12-20 10:20:47 +01:00
|
|
|
'description' => $media_object['description'] ?? '',
|
2021-12-14 16:59:12 +01:00
|
|
|
'alternative' => 'DD Import'
|
|
|
|
]
|
|
|
|
);
|
|
|
|
$this->createFileRelations(
|
|
|
|
$file->getUid(),
|
|
|
|
'tx_events_domain_model_event',
|
|
|
|
$this->tmpCurrentEvent->getUid(),
|
|
|
|
'images',
|
2022-01-26 14:16:12 +01:00
|
|
|
$this->import->getStoragePid()
|
2021-12-14 16:59:12 +01:00
|
|
|
);
|
2019-08-12 07:43:37 +02:00
|
|
|
}
|
|
|
|
}
|
2019-08-12 15:49:52 +02:00
|
|
|
}
|
2019-08-13 11:17:34 +02:00
|
|
|
$error = false;
|
2019-08-12 07:43:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-15 12:28:06 +01:00
|
|
|
private function loadFile(string $fileUrl): string
|
2021-01-07 08:50:43 +01:00
|
|
|
{
|
2021-12-16 10:00:51 +01:00
|
|
|
$this->logger->info('Getting file ' . $fileUrl);
|
|
|
|
|
|
|
|
$file = new \SplFileInfo($fileUrl);
|
|
|
|
$temporaryFilename = GeneralUtility::tempnam($file->getBasename());
|
2021-12-15 12:28:06 +01:00
|
|
|
|
2022-12-21 13:16:20 +01:00
|
|
|
try {
|
|
|
|
$response = $this->dataFetcher->fetchImage($fileUrl);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
$this->logger->error('Cannot load file ' . $fileUrl);
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2021-12-16 10:00:51 +01:00
|
|
|
$fileContent = $response->getBody()->__toString();
|
|
|
|
if ($response->getStatusCode() !== 200) {
|
|
|
|
$this->logger->error('Cannot load file ' . $fileUrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GeneralUtility::writeFile($temporaryFilename, $fileContent, true) === false) {
|
|
|
|
$this->logger->error('Could not write temporary file.');
|
|
|
|
return '';
|
2019-08-12 07:43:37 +02:00
|
|
|
}
|
2021-12-15 12:28:06 +01:00
|
|
|
|
2021-12-16 10:00:51 +01:00
|
|
|
return $temporaryFilename;
|
2019-08-12 07:43:37 +02:00
|
|
|
}
|
|
|
|
|
2021-12-14 16:59:12 +01:00
|
|
|
private function createFileRelations(
|
|
|
|
int $uid_local,
|
|
|
|
string $tablenames,
|
|
|
|
int $uid_foreign,
|
|
|
|
string $fieldname,
|
|
|
|
int $storagePid
|
|
|
|
): bool {
|
2019-08-12 07:43:37 +02:00
|
|
|
$newId = 'NEW1234';
|
|
|
|
|
|
|
|
$data = array();
|
|
|
|
$data['sys_file_reference'][$newId] = array(
|
|
|
|
'table_local' => 'sys_file',
|
|
|
|
'uid_local' => $uid_local,
|
|
|
|
'tablenames' => $tablenames,
|
|
|
|
'uid_foreign' => $uid_foreign,
|
|
|
|
'fieldname' => $fieldname,
|
|
|
|
'pid' => $storagePid
|
|
|
|
);
|
|
|
|
|
|
|
|
$data[$tablenames][$uid_foreign] = array(
|
|
|
|
'pid' => $storagePid,
|
|
|
|
$fieldname => $newId
|
|
|
|
);
|
|
|
|
|
2021-01-07 08:47:15 +01:00
|
|
|
$dataHandler = $this->objectManager->get(DataHandler::class);
|
2019-08-12 07:43:37 +02:00
|
|
|
$dataHandler->start($data, array());
|
|
|
|
$dataHandler->process_datamap();
|
|
|
|
|
|
|
|
if (count($dataHandler->errorLog) === 0) {
|
|
|
|
return true;
|
|
|
|
}
|
2019-08-13 11:17:34 +02:00
|
|
|
|
2021-01-07 08:50:43 +01:00
|
|
|
foreach ($dataHandler->errorLog as $error) {
|
2019-08-13 11:17:34 +02:00
|
|
|
$this->logger->info($error);
|
|
|
|
}
|
|
|
|
return false;
|
2019-08-12 07:43:37 +02:00
|
|
|
}
|
|
|
|
|
2021-09-07 08:36:48 +02:00
|
|
|
/**
|
2021-12-14 16:59:12 +01:00
|
|
|
* Fetch the boolean value for requested attribute.
|
2021-09-07 08:36:48 +02:00
|
|
|
*
|
|
|
|
* Returns first if multiple attributes with same key exist.
|
|
|
|
* Casts "true" and "false" to true and false.
|
|
|
|
*/
|
|
|
|
private function getAttributeValue(
|
|
|
|
array $event,
|
|
|
|
string $attributeKey
|
2021-12-14 16:59:12 +01:00
|
|
|
): bool {
|
2021-09-07 08:36:48 +02:00
|
|
|
$attributes = array_filter($event['attributes'] ?? [], function (array $attribute) use ($attributeKey) {
|
|
|
|
$currentKey = $attribute['key'] ?? '';
|
|
|
|
return $currentKey === $attributeKey;
|
|
|
|
});
|
|
|
|
|
|
|
|
if ($attributes === []) {
|
2021-12-14 16:59:12 +01:00
|
|
|
return false;
|
2021-09-07 08:36:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$value = $attributes[0]['value'] ?? null;
|
|
|
|
|
|
|
|
if ($value === 'true') {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if ($value === 'false') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-12-14 16:59:12 +01:00
|
|
|
return (bool) $value;
|
2021-09-07 08:36:48 +02:00
|
|
|
}
|
2022-06-27 14:37:00 +02:00
|
|
|
|
|
|
|
private function getShortenedString(string $string, int $lenght): string
|
|
|
|
{
|
|
|
|
if ($string === mb_substr($string, 0, $lenght)) {
|
|
|
|
return $string;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mb_substr($string, 0, $lenght - 3) . ' …';
|
|
|
|
}
|
2019-10-09 15:03:58 +02:00
|
|
|
}
|