Part-DB-server/src/Entity/Base/AbstractDBElement.php

146 lines
5.5 KiB
PHP
Raw Normal View History

<?php
/**
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
2022-11-29 22:28:53 +01:00
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
*
2020-02-22 18:14:36 +01:00
* 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
2020-02-22 18:14:36 +01:00
* GNU Affero General Public License for more details.
*
2020-02-22 18:14:36 +01:00
* 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);
2019-02-23 22:41:13 +01:00
namespace App\Entity\Base;
2019-02-23 22:41:13 +01:00
2023-06-11 14:55:06 +02:00
use App\Entity\Attachments\AttachmentType;
use App\Entity\Attachments\Attachment;
use App\Entity\Attachments\AttachmentTypeAttachment;
use App\Entity\Attachments\CategoryAttachment;
use App\Entity\Attachments\CurrencyAttachment;
use App\Entity\Attachments\FootprintAttachment;
use App\Entity\Attachments\GroupAttachment;
use App\Entity\Attachments\LabelAttachment;
use App\Entity\Attachments\ManufacturerAttachment;
use App\Entity\Attachments\MeasurementUnitAttachment;
use App\Entity\Attachments\PartAttachment;
use App\Entity\Attachments\PartCustomStateAttachment;
2023-06-11 14:55:06 +02:00
use App\Entity\Attachments\ProjectAttachment;
use App\Entity\Attachments\StorageLocationAttachment;
2023-06-11 14:55:06 +02:00
use App\Entity\Attachments\SupplierAttachment;
use App\Entity\Attachments\UserAttachment;
use App\Entity\Parameters\AbstractParameter;
2023-06-11 14:55:06 +02:00
use App\Entity\Parts\Category;
2025-08-03 21:59:51 +02:00
use App\Entity\PriceInformations\Pricedetail;
use App\Entity\Parts\PartCustomState;
2023-06-11 14:55:06 +02:00
use App\Entity\ProjectSystem\Project;
use App\Entity\ProjectSystem\ProjectBOMEntry;
use App\Entity\Parts\Footprint;
use App\Entity\UserSystem\Group;
use App\Entity\Parts\Manufacturer;
use App\Entity\PriceInformations\Orderdetail;
use App\Entity\Parts\Part;
use App\Entity\Parts\StorageLocation;
2023-06-11 14:55:06 +02:00
use App\Entity\Parts\PartLot;
use App\Entity\PriceInformations\Currency;
use App\Entity\Parts\MeasurementUnit;
use App\Entity\Parts\Supplier;
use App\Entity\UserSystem\User;
use App\Repository\DBElementRepository;
use Doctrine\DBAL\Types\Types;
2019-02-23 22:41:13 +01:00
use Doctrine\ORM\Mapping as ORM;
2022-08-14 19:32:53 +02:00
use JsonSerializable;
use Symfony\Component\Serializer\Annotation\DiscriminatorMap;
use Symfony\Component\Serializer\Annotation\Groups;
2019-02-23 22:41:13 +01:00
/**
* This class is for managing all database objects.
*
* You should use this class for ALL classes which manages database records!
* (except special tables like "internal"...)
* Every database table which are managed with this class (or a subclass of it)
* must have the table row "id"!! The ID is the unique key to identify the elements.
*/
#[DiscriminatorMap(typeProperty: 'type', mapping: [
'attachment_type' => AttachmentType::class,
'attachment' => Attachment::class,
'attachment_type_attachment' => AttachmentTypeAttachment::class,
'category_attachment' => CategoryAttachment::class,
'currency_attachment' => CurrencyAttachment::class,
'footprint_attachment' => FootprintAttachment::class,
'group_attachment' => GroupAttachment::class,
'label_attachment' => LabelAttachment::class,
'manufacturer_attachment' => ManufacturerAttachment::class,
'measurement_unit_attachment' => MeasurementUnitAttachment::class,
'part_attachment' => PartAttachment::class,
'part_custom_state_attachment' => PartCustomStateAttachment::class,
'project_attachment' => ProjectAttachment::class,
'storelocation_attachment' => StorageLocationAttachment::class,
'supplier_attachment' => SupplierAttachment::class,
'user_attachment' => UserAttachment::class,
'category' => Category::class,
'project' => Project::class,
'project_bom_entry' => ProjectBOMEntry::class,
'footprint' => Footprint::class,
'group' => Group::class,
'manufacturer' => Manufacturer::class,
'orderdetail' => Orderdetail::class,
'part' => Part::class,
'part_custom_state' => PartCustomState::class,
'pricedetail' => Pricedetail::class,
'storelocation' => StorageLocation::class,
'part_lot' => PartLot::class,
'currency' => Currency::class,
'measurement_unit' => MeasurementUnit::class,
'parameter' => AbstractParameter::class,
'supplier' => Supplier::class,
'user' => User::class]
)]
2023-06-11 14:55:06 +02:00
#[ORM\MappedSuperclass(repositoryClass: DBElementRepository::class)]
2022-08-14 19:32:53 +02:00
abstract class AbstractDBElement implements JsonSerializable
2019-02-23 22:41:13 +01:00
{
2020-02-01 19:42:28 +01:00
/** @var int|null The Identification number for this part. This value is unique for the element in this table.
* Null if the element is not saved to DB yet.
2019-02-23 22:41:13 +01:00
*/
#[Groups(['full', 'api:basic:read'])]
2023-06-11 14:55:06 +02:00
#[ORM\Column(type: Types::INTEGER)]
#[ORM\Id]
#[ORM\GeneratedValue]
2022-09-18 22:59:31 +02:00
protected ?int $id = null;
2019-02-23 22:41:13 +01:00
2020-01-05 15:46:58 +01:00
public function __clone()
{
if ($this->id) {
//Set ID to null, so that an new entry is created
$this->id = null;
}
2020-01-05 15:46:58 +01:00
}
2019-02-23 22:41:13 +01:00
/**
2019-11-10 14:00:56 +01:00
* Get the ID. The ID can be zero, or even negative (for virtual elements). If an element is virtual, can be
* checked with isVirtualElement().
2019-02-23 22:41:13 +01:00
*
* Returns null, if the element is not saved to the DB yet.
*
* @return int|null the ID of this element
2019-02-23 22:41:13 +01:00
*/
public function getID(): ?int
2019-02-23 22:41:13 +01:00
{
return $this->id;
2019-02-23 22:41:13 +01:00
}
2022-07-23 22:21:29 +02:00
public function jsonSerialize(): array
{
return ['@id' => $this->getID()];
}
}