2021-02-03 17:20:01 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace WerkraumMedia\ThueCat\Domain\Import\JsonLD;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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-02-16 12:02:10 +01:00
|
|
|
use WerkraumMedia\ThueCat\Domain\Import\JsonLD\Parser\Address;
|
2021-02-18 14:54:00 +01:00
|
|
|
use WerkraumMedia\ThueCat\Domain\Import\JsonLD\Parser\GenericFields;
|
2021-02-16 15:08:15 +01:00
|
|
|
use WerkraumMedia\ThueCat\Domain\Import\JsonLD\Parser\Media;
|
2021-02-03 17:20:01 +01:00
|
|
|
use WerkraumMedia\ThueCat\Domain\Import\JsonLD\Parser\OpeningHours;
|
|
|
|
|
|
|
|
class Parser
|
|
|
|
{
|
2021-02-18 14:54:00 +01:00
|
|
|
private GenericFields $genericFields;
|
2021-02-03 17:20:01 +01:00
|
|
|
private OpeningHours $openingHours;
|
2021-02-16 12:02:10 +01:00
|
|
|
private Address $address;
|
2021-02-16 15:08:15 +01:00
|
|
|
private Media $media;
|
2021-02-03 17:20:01 +01:00
|
|
|
|
|
|
|
public function __construct(
|
2021-02-18 14:54:00 +01:00
|
|
|
GenericFields $genericFields,
|
2021-02-16 12:02:10 +01:00
|
|
|
OpeningHours $openingHours,
|
2021-02-16 15:08:15 +01:00
|
|
|
Address $address,
|
|
|
|
Media $media
|
2021-02-03 17:20:01 +01:00
|
|
|
) {
|
2021-02-18 14:54:00 +01:00
|
|
|
$this->genericFields = $genericFields;
|
2021-02-03 17:20:01 +01:00
|
|
|
$this->openingHours = $openingHours;
|
2021-02-16 12:02:10 +01:00
|
|
|
$this->address = $address;
|
2021-02-16 15:08:15 +01:00
|
|
|
$this->media = $media;
|
2021-02-03 17:20:01 +01:00
|
|
|
}
|
2021-02-16 15:08:15 +01:00
|
|
|
|
2021-02-03 17:20:01 +01:00
|
|
|
public function getId(array $jsonLD): string
|
|
|
|
{
|
|
|
|
return $jsonLD['@id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTitle(array $jsonLD, string $language = ''): string
|
|
|
|
{
|
2021-02-18 14:54:00 +01:00
|
|
|
return $this->genericFields->getTitle($jsonLD, $language);
|
2021-02-03 17:20:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getDescription(array $jsonLD, string $language = ''): string
|
|
|
|
{
|
2021-02-18 14:54:00 +01:00
|
|
|
return $this->genericFields->getDescription($jsonLD, $language);
|
2021-02-03 17:20:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getManagerId(array $jsonLD): string
|
|
|
|
{
|
|
|
|
return $jsonLD['thuecat:contentResponsible']['@id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string[]
|
|
|
|
*/
|
|
|
|
public function getContainedInPlaceIds(array $jsonLD): array
|
|
|
|
{
|
|
|
|
return array_map(function (array $place) {
|
|
|
|
return $place['@id'];
|
|
|
|
}, $jsonLD['schema:containedInPlace']);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getOpeningHours(array $jsonLD): array
|
|
|
|
{
|
|
|
|
return $this->openingHours->get($jsonLD);
|
|
|
|
}
|
|
|
|
|
2021-02-16 12:02:10 +01:00
|
|
|
public function getAddress(array $jsonLD): array
|
|
|
|
{
|
|
|
|
return $this->address->get($jsonLD);
|
|
|
|
}
|
|
|
|
|
2021-02-16 15:08:15 +01:00
|
|
|
public function getMedia(array $jsonLD): array
|
|
|
|
{
|
|
|
|
return $this->media->get($jsonLD);
|
|
|
|
}
|
|
|
|
|
2021-02-03 17:20:01 +01:00
|
|
|
/**
|
|
|
|
* @return string[]
|
|
|
|
*/
|
|
|
|
public function getLanguages(array $jsonLD): array
|
|
|
|
{
|
|
|
|
if (isset($jsonLD['schema:availableLanguage']) === false) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$languages = $jsonLD['schema:availableLanguage'];
|
|
|
|
|
|
|
|
$languages = array_filter($languages, function (array $language) {
|
|
|
|
return isset($language['@type'])
|
|
|
|
&& $language['@type'] === 'thuecat:Language'
|
|
|
|
;
|
|
|
|
});
|
|
|
|
|
|
|
|
$languages = array_map(function (array $language) {
|
|
|
|
$language = $language['@value'];
|
|
|
|
|
2021-02-18 14:54:00 +01:00
|
|
|
// TODO: Make configurable / easier to extend
|
2021-02-03 17:20:01 +01:00
|
|
|
if ($language === 'thuecat:German') {
|
|
|
|
return 'de';
|
|
|
|
}
|
|
|
|
if ($language === 'thuecat:English') {
|
|
|
|
return 'en';
|
|
|
|
}
|
|
|
|
if ($language === 'thuecat:French') {
|
|
|
|
return 'fr';
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new \Exception('Unsupported language "' . $language . '".', 1612367481);
|
|
|
|
}, $languages);
|
|
|
|
|
|
|
|
return $languages;
|
|
|
|
}
|
|
|
|
}
|