105 lines
3.3 KiB
PHP
105 lines
3.3 KiB
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
namespace App\Entity;
|
||
|
||
use ApiPlatform\Doctrine\Orm\Filter\SearchFilter;
|
||
use ApiPlatform\Metadata\ApiFilter;
|
||
use ApiPlatform\Metadata\ApiResource;
|
||
use ApiPlatform\Metadata\Delete;
|
||
use ApiPlatform\Metadata\Get;
|
||
use ApiPlatform\Metadata\GetCollection;
|
||
use ApiPlatform\Metadata\Patch;
|
||
use ApiPlatform\Metadata\Post;
|
||
use ApiPlatform\Metadata\Put;
|
||
use App\Entity\Trait\CuidEntityTrait;
|
||
use App\Repository\ComposantConstructeurLinkRepository;
|
||
use DateTimeImmutable;
|
||
use Doctrine\DBAL\Types\Types;
|
||
use Doctrine\ORM\Mapping as ORM;
|
||
|
||
#[ORM\Entity(repositoryClass: ComposantConstructeurLinkRepository::class)]
|
||
#[ORM\Table(name: 'composant_constructeur_links')]
|
||
#[ORM\UniqueConstraint(name: 'uniq_composant_constructeur', columns: ['composantid', 'constructeurid'])]
|
||
#[ORM\HasLifecycleCallbacks]
|
||
#[ApiResource(
|
||
description: 'Liaisons composant–fournisseur. Chaque liaison peut porter une référence fournisseur spécifique.',
|
||
operations: [
|
||
new Get(security: "is_granted('ROLE_VIEWER')"),
|
||
new GetCollection(security: "is_granted('ROLE_VIEWER')"),
|
||
new Post(security: "is_granted('ROLE_GESTIONNAIRE')"),
|
||
new Put(security: "is_granted('ROLE_GESTIONNAIRE')"),
|
||
new Patch(security: "is_granted('ROLE_GESTIONNAIRE')"),
|
||
new Delete(security: "is_granted('ROLE_GESTIONNAIRE')"),
|
||
]
|
||
)]
|
||
#[ApiFilter(SearchFilter::class, properties: ['composant' => 'exact', 'constructeur' => 'exact'])]
|
||
class ComposantConstructeurLink
|
||
{
|
||
use CuidEntityTrait;
|
||
|
||
#[ORM\Id]
|
||
#[ORM\Column(type: Types::STRING, length: 36)]
|
||
private ?string $id = null;
|
||
|
||
#[ORM\ManyToOne(targetEntity: Composant::class, inversedBy: 'constructeurLinks')]
|
||
#[ORM\JoinColumn(name: 'composantId', referencedColumnName: 'id', nullable: false, onDelete: 'CASCADE')]
|
||
private Composant $composant;
|
||
|
||
#[ORM\ManyToOne(targetEntity: Constructeur::class, inversedBy: 'composantLinks')]
|
||
#[ORM\JoinColumn(name: 'constructeurId', referencedColumnName: 'id', nullable: false, onDelete: 'CASCADE')]
|
||
private Constructeur $constructeur;
|
||
|
||
#[ORM\Column(type: Types::STRING, length: 255, nullable: true, name: 'supplierReference')]
|
||
private ?string $supplierReference = null;
|
||
|
||
#[ORM\Column(type: Types::DATETIME_IMMUTABLE, name: 'createdAt')]
|
||
private DateTimeImmutable $createdAt;
|
||
|
||
#[ORM\Column(type: Types::DATETIME_IMMUTABLE, name: 'updatedAt')]
|
||
private DateTimeImmutable $updatedAt;
|
||
|
||
public function __construct()
|
||
{
|
||
$this->createdAt = new DateTimeImmutable();
|
||
$this->updatedAt = new DateTimeImmutable();
|
||
}
|
||
|
||
public function getComposant(): Composant
|
||
{
|
||
return $this->composant;
|
||
}
|
||
|
||
public function setComposant(Composant $composant): static
|
||
{
|
||
$this->composant = $composant;
|
||
|
||
return $this;
|
||
}
|
||
|
||
public function getConstructeur(): Constructeur
|
||
{
|
||
return $this->constructeur;
|
||
}
|
||
|
||
public function setConstructeur(Constructeur $constructeur): static
|
||
{
|
||
$this->constructeur = $constructeur;
|
||
|
||
return $this;
|
||
}
|
||
|
||
public function getSupplierReference(): ?string
|
||
{
|
||
return $this->supplierReference;
|
||
}
|
||
|
||
public function setSupplierReference(?string $supplierReference): static
|
||
{
|
||
$this->supplierReference = $supplierReference;
|
||
|
||
return $this;
|
||
}
|
||
}
|