2021-02-01 14:14:05 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 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.
|
|
|
|
*/
|
|
|
|
|
2021-08-05 15:18:39 +02:00
|
|
|
namespace WerkraumMedia\ThueCat\Domain\Import\Typo3Converter;
|
2021-08-10 09:38:59 +02:00
|
|
|
|
2021-08-05 15:18:39 +02:00
|
|
|
use WerkraumMedia\ThueCat\Domain\Import\Entity\MapsToType;
|
|
|
|
use WerkraumMedia\ThueCat\Domain\Import\Entity\Properties\ForeignReference;
|
|
|
|
use WerkraumMedia\ThueCat\Domain\Import\Entity\Town as TownEntity;
|
|
|
|
use WerkraumMedia\ThueCat\Domain\Import\Model\Entity;
|
2021-02-01 14:14:05 +01:00
|
|
|
use WerkraumMedia\ThueCat\Domain\Import\Model\GenericEntity;
|
2021-02-17 15:33:15 +01:00
|
|
|
use WerkraumMedia\ThueCat\Domain\Model\Backend\ImportConfiguration;
|
2021-02-01 14:14:05 +01:00
|
|
|
use WerkraumMedia\ThueCat\Domain\Repository\Backend\OrganisationRepository;
|
|
|
|
|
|
|
|
class Town implements Converter
|
|
|
|
{
|
2021-04-13 14:43:04 +02:00
|
|
|
/**
|
|
|
|
* @var OrganisationRepository
|
|
|
|
*/
|
|
|
|
private $organisationRepository;
|
2021-02-01 14:14:05 +01:00
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
OrganisationRepository $organisationRepository
|
|
|
|
) {
|
|
|
|
$this->organisationRepository = $organisationRepository;
|
|
|
|
}
|
|
|
|
|
2021-08-05 15:18:39 +02:00
|
|
|
public function canConvert(MapsToType $entity): bool
|
2021-02-01 14:14:05 +01:00
|
|
|
{
|
2021-08-05 15:18:39 +02:00
|
|
|
return $entity instanceof TownEntity;
|
|
|
|
}
|
2021-02-03 17:20:01 +01:00
|
|
|
|
2021-08-05 15:18:39 +02:00
|
|
|
public function convert(
|
|
|
|
MapsToType $entity,
|
|
|
|
ImportConfiguration $configuration,
|
|
|
|
string $language
|
|
|
|
): ?Entity {
|
|
|
|
if (!$entity instanceof TownEntity) {
|
|
|
|
throw new \InvalidArgumentException('Did not get entity of expected type.', 1628243431);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($entity->hasName() === false) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$manager = null;
|
|
|
|
if ($entity->getManagedBy() instanceof ForeignReference) {
|
|
|
|
$manager = $this->organisationRepository->findOneByRemoteId(
|
|
|
|
$entity->getManagedBy()->getId()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return new GenericEntity(
|
2021-02-17 15:33:15 +01:00
|
|
|
$configuration->getStoragePid(),
|
2021-02-01 14:14:05 +01:00
|
|
|
'tx_thuecat_town',
|
2021-02-03 17:20:01 +01:00
|
|
|
0,
|
2021-08-05 15:18:39 +02:00
|
|
|
$entity->getId(),
|
2021-02-01 14:14:05 +01:00
|
|
|
[
|
2021-08-05 15:18:39 +02:00
|
|
|
'title' => $entity->getName(),
|
|
|
|
'description' => $entity->getDescription(),
|
2021-02-01 14:14:05 +01:00
|
|
|
'managed_by' => $manager ? $manager->getUid() : 0,
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|