2021-02-18 14:54:00 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace WerkraumMedia\ThueCat\Domain\Import\JsonLD\Parser;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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-25 09:16:48 +01:00
|
|
|
use TYPO3\CMS\Core\Site\Entity\SiteLanguage;
|
|
|
|
|
2021-02-18 14:54:00 +01:00
|
|
|
class Offers
|
|
|
|
{
|
|
|
|
private GenericFields $genericFields;
|
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
GenericFields $genericFields
|
|
|
|
) {
|
|
|
|
$this->genericFields = $genericFields;
|
|
|
|
}
|
|
|
|
|
2021-02-25 09:16:48 +01:00
|
|
|
public function get(array $jsonLD, SiteLanguage $language): array
|
2021-02-18 14:54:00 +01:00
|
|
|
{
|
|
|
|
$offers = [];
|
|
|
|
$jsonLDOffers = $jsonLD['schema:makesOffer'] ?? [];
|
2021-02-25 09:16:48 +01:00
|
|
|
|
|
|
|
if (isset($jsonLDOffers['@id'])) {
|
|
|
|
return [
|
|
|
|
$this->getOffer($jsonLDOffers, $language),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2021-02-18 14:54:00 +01:00
|
|
|
foreach ($jsonLDOffers as $jsonLDOffer) {
|
|
|
|
$offer = $this->getOffer($jsonLDOffer, $language);
|
|
|
|
if ($offer !== []) {
|
|
|
|
$offers[] = $offer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $offers;
|
|
|
|
}
|
|
|
|
|
2021-02-25 09:16:48 +01:00
|
|
|
private function getOffer(array $jsonLD, SiteLanguage $language): array
|
2021-02-18 14:54:00 +01:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'title' => $this->genericFields->getTitle($jsonLD, $language),
|
|
|
|
'description' => $this->genericFields->getDescription($jsonLD, $language),
|
|
|
|
'prices' => $this->getPrices($jsonLD, $language),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2021-02-25 09:16:48 +01:00
|
|
|
private function getPrices(array $jsonLD, SiteLanguage $language): array
|
2021-02-18 14:54:00 +01:00
|
|
|
{
|
|
|
|
$prices = [];
|
|
|
|
$jsonLDPrices = $jsonLD['schema:priceSpecification'] ?? [];
|
|
|
|
|
2021-02-25 09:16:48 +01:00
|
|
|
if (isset($jsonLDPrices['@id'])) {
|
|
|
|
return [
|
|
|
|
$this->getPrice($jsonLDPrices, $language),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2021-02-18 14:54:00 +01:00
|
|
|
foreach ($jsonLDPrices as $jsonLDPrice) {
|
|
|
|
$price = $this->getPrice($jsonLDPrice, $language);
|
|
|
|
if ($price !== []) {
|
|
|
|
$prices[] = $price;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $prices;
|
|
|
|
}
|
|
|
|
|
2021-02-25 09:16:48 +01:00
|
|
|
private function getPrice(array $jsonLD, SiteLanguage $language): array
|
2021-02-18 14:54:00 +01:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'title' => $this->genericFields->getTitle($jsonLD, $language),
|
|
|
|
'description' => $this->genericFields->getDescription($jsonLD, $language),
|
|
|
|
'price' => $this->getPriceValue($jsonLD),
|
|
|
|
'currency' => $this->getCurrencyValue($jsonLD),
|
|
|
|
'rule' => $this->getRuleValue($jsonLD),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getPriceValue(array $jsonLD): float
|
|
|
|
{
|
|
|
|
$price = $jsonLD['schema:price']['@value'] ?? 0.0;
|
|
|
|
$price = floatval($price);
|
|
|
|
return $price;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getCurrencyValue(array $jsonLD): string
|
|
|
|
{
|
|
|
|
$currency = $jsonLD['schema:priceCurrency']['@value'] ?? '';
|
|
|
|
$currency = str_replace('thuecat:', '', $currency);
|
|
|
|
return $currency;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getRuleValue(array $jsonLD): string
|
|
|
|
{
|
|
|
|
$rule = $jsonLD['thuecat:calculationRule']['@value'] ?? '';
|
|
|
|
$rule = str_replace('thuecat:', '', $rule);
|
|
|
|
return $rule;
|
|
|
|
}
|
|
|
|
}
|