2023-07-09 23:31:40 +02:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 - 2023 Jan Böhmer (https://github.com/jbtronics)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
|
|
namespace App\Services\InfoProviderSystem;
|
|
|
|
|
|
|
|
use App\Entity\Attachments\AttachmentType;
|
|
|
|
use App\Entity\Attachments\PartAttachment;
|
2023-07-12 23:43:16 +02:00
|
|
|
use App\Entity\Base\AbstractStructuralDBElement;
|
2023-07-09 23:31:40 +02:00
|
|
|
use App\Entity\Parameters\AbstractParameter;
|
|
|
|
use App\Entity\Parameters\PartParameter;
|
2023-07-15 01:52:46 +02:00
|
|
|
use App\Entity\Parts\Footprint;
|
2023-07-12 23:43:16 +02:00
|
|
|
use App\Entity\Parts\Manufacturer;
|
2023-07-09 23:31:40 +02:00
|
|
|
use App\Entity\Parts\ManufacturingStatus;
|
|
|
|
use App\Entity\Parts\Part;
|
2023-07-14 00:09:22 +02:00
|
|
|
use App\Entity\Parts\Supplier;
|
|
|
|
use App\Entity\PriceInformations\Currency;
|
|
|
|
use App\Entity\PriceInformations\Orderdetail;
|
|
|
|
use App\Entity\PriceInformations\Pricedetail;
|
2023-07-09 23:31:40 +02:00
|
|
|
use App\Services\InfoProviderSystem\DTOs\FileDTO;
|
|
|
|
use App\Services\InfoProviderSystem\DTOs\ParameterDTO;
|
|
|
|
use App\Services\InfoProviderSystem\DTOs\PartDetailDTO;
|
2023-07-14 00:09:22 +02:00
|
|
|
use App\Services\InfoProviderSystem\DTOs\PriceDTO;
|
|
|
|
use App\Services\InfoProviderSystem\DTOs\PurchaseInfoDTO;
|
|
|
|
use Brick\Math\BigDecimal;
|
2023-07-12 23:43:16 +02:00
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
2023-07-09 23:31:40 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class converts DTOs to entities which can be persisted in the DB
|
|
|
|
*/
|
|
|
|
class DTOtoEntityConverter
|
|
|
|
{
|
|
|
|
|
2023-07-14 00:09:22 +02:00
|
|
|
public function __construct(private readonly EntityManagerInterface $em, private readonly string $base_currency)
|
2023-07-12 23:43:16 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-07-09 23:31:40 +02:00
|
|
|
public function convertParameter(ParameterDTO $dto, PartParameter $entity = new PartParameter()): PartParameter
|
|
|
|
{
|
|
|
|
$entity->setName($dto->name);
|
|
|
|
$entity->setValueText($dto->value_text ?? '');
|
|
|
|
$entity->setValueTypical($dto->value_typ);
|
|
|
|
$entity->setValueMin($dto->value_min);
|
|
|
|
$entity->setValueMax($dto->value_max);
|
|
|
|
$entity->setUnit($dto->unit ?? '');
|
|
|
|
$entity->setSymbol($dto->symbol ?? '');
|
|
|
|
$entity->setGroup($dto->group ?? '');
|
|
|
|
|
|
|
|
return $entity;
|
|
|
|
}
|
|
|
|
|
2023-07-14 00:09:22 +02:00
|
|
|
public function convertPrice(PriceDTO $dto, Pricedetail $entity = new Pricedetail()): Pricedetail
|
|
|
|
{
|
|
|
|
$entity->setMinDiscountQuantity($dto->minimum_discount_amount);
|
|
|
|
$entity->setPrice($dto->getPriceAsBigDecimal());
|
|
|
|
|
|
|
|
//Currency TODO
|
|
|
|
if ($dto->currency_iso_code !== null) {
|
|
|
|
$entity->setCurrency($this->getCurrency($dto->currency_iso_code));
|
|
|
|
} else {
|
|
|
|
$entity->setCurrency(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $entity;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function convertPurchaseInfo(PurchaseInfoDTO $dto, Orderdetail $entity = new Orderdetail()): Orderdetail
|
|
|
|
{
|
|
|
|
$entity->setSupplierpartnr($dto->order_number);
|
|
|
|
$entity->setSupplierProductUrl($dto->product_url ?? '');
|
|
|
|
|
|
|
|
$entity->setSupplier($this->getOrCreateEntityNonNull(Supplier::class, $dto->distributor_name));
|
|
|
|
foreach ($dto->prices as $price) {
|
|
|
|
$entity->addPricedetail($this->convertPrice($price));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $entity;
|
|
|
|
}
|
|
|
|
|
2023-07-09 23:31:40 +02:00
|
|
|
public function convertFile(FileDTO $dto, PartAttachment $entity = new PartAttachment()): PartAttachment
|
|
|
|
{
|
|
|
|
$entity->setURL($dto->url);
|
|
|
|
|
|
|
|
//If no name is given, try to extract the name from the URL
|
|
|
|
if (empty($dto->name)) {
|
|
|
|
$entity->setName(basename($dto->url));
|
|
|
|
} else {
|
|
|
|
$entity->setName($dto->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $entity;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts a PartDetailDTO to a Part entity
|
|
|
|
* @param PartDetailDTO $dto
|
|
|
|
* @param Part $entity The part entity to fill
|
|
|
|
* @return Part
|
|
|
|
*/
|
|
|
|
public function convertPart(PartDetailDTO $dto, Part $entity = new Part()): Part
|
|
|
|
{
|
|
|
|
$entity->setName($dto->name);
|
|
|
|
$entity->setDescription($dto->description ?? '');
|
|
|
|
$entity->setComment($dto->notes ?? '');
|
|
|
|
|
2023-07-15 01:01:20 +02:00
|
|
|
$entity->setMass($dto->mass);
|
|
|
|
|
2023-07-12 23:43:16 +02:00
|
|
|
$entity->setManufacturer($this->getOrCreateEntity(Manufacturer::class, $dto->manufacturer));
|
2023-07-15 01:52:46 +02:00
|
|
|
$entity->setFootprint($this->getOrCreateEntity(Footprint::class, $dto->footprint));
|
2023-07-12 23:43:16 +02:00
|
|
|
|
2023-07-09 23:31:40 +02:00
|
|
|
$entity->setManufacturerProductNumber($dto->mpn ?? '');
|
|
|
|
$entity->setManufacturingStatus($dto->manufacturing_status ?? ManufacturingStatus::NOT_SET);
|
|
|
|
|
|
|
|
//Add parameters
|
|
|
|
foreach ($dto->parameters ?? [] as $parameter) {
|
|
|
|
$entity->addParameter($this->convertParameter($parameter));
|
|
|
|
}
|
|
|
|
|
|
|
|
//Add datasheets
|
|
|
|
foreach ($dto->datasheets ?? [] as $datasheet) {
|
|
|
|
$entity->addAttachment($this->convertFile($datasheet));
|
|
|
|
}
|
|
|
|
|
2023-07-14 00:09:22 +02:00
|
|
|
//Add orderdetails and prices
|
|
|
|
foreach ($dto->vendor_infos ?? [] as $vendor_info) {
|
|
|
|
$entity->addOrderdetail($this->convertPurchaseInfo($vendor_info));
|
|
|
|
}
|
|
|
|
|
2023-07-09 23:31:40 +02:00
|
|
|
return $entity;
|
|
|
|
}
|
|
|
|
|
2023-07-14 00:09:22 +02:00
|
|
|
/**
|
|
|
|
* @template T of AbstractStructuralDBElement
|
|
|
|
* @param string $class
|
|
|
|
* @phpstan-param class-string<T> $class
|
|
|
|
* @param string|null $name
|
|
|
|
* @return AbstractStructuralDBElement|null
|
|
|
|
* @phpstan-return T|null
|
|
|
|
*/
|
2023-07-12 23:43:16 +02:00
|
|
|
private function getOrCreateEntity(string $class, ?string $name): ?AbstractStructuralDBElement
|
|
|
|
{
|
|
|
|
//Fall through to make converting easier
|
|
|
|
if ($name === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2023-07-14 00:09:22 +02:00
|
|
|
return $this->getOrCreateEntityNonNull($class, $name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @template T of AbstractStructuralDBElement
|
|
|
|
* @param string $class The class of the entity to create
|
|
|
|
* @phpstan-param class-string<T> $class
|
|
|
|
* @param string $name The name of the entity to create
|
|
|
|
* @return AbstractStructuralDBElement
|
|
|
|
* @phpstan-return T|null
|
|
|
|
*/
|
|
|
|
private function getOrCreateEntityNonNull(string $class, string $name): AbstractStructuralDBElement
|
|
|
|
{
|
2023-07-12 23:43:16 +02:00
|
|
|
return $this->em->getRepository($class)->findOrCreateForInfoProvider($name);
|
|
|
|
}
|
|
|
|
|
2023-07-14 00:09:22 +02:00
|
|
|
private function getCurrency(string $iso_code): ?Currency
|
|
|
|
{
|
|
|
|
//Check if the currency is the base currency (then we can just return null)
|
|
|
|
if ($iso_code === $this->base_currency) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->em->getRepository(Currency::class)->findOrCreateByISOCode($iso_code);
|
|
|
|
}
|
|
|
|
|
2023-07-09 23:31:40 +02:00
|
|
|
}
|