mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Reorganize person resource code to create an abstract class
This commit is contained in:
parent
81220b5b22
commit
ee45ff61a6
@ -0,0 +1,190 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Chill\PersonBundle\Entity\Person;
|
||||||
|
|
||||||
|
use Chill\MainBundle\Doctrine\Model\TrackCreationInterface;
|
||||||
|
use Chill\MainBundle\Doctrine\Model\TrackCreationTrait;
|
||||||
|
use Chill\MainBundle\Doctrine\Model\TrackUpdateInterface;
|
||||||
|
use Chill\MainBundle\Doctrine\Model\TrackUpdateTrait;
|
||||||
|
use Chill\MainBundle\Entity\Embeddable\CommentEmbeddable;
|
||||||
|
use Chill\PersonBundle\Entity\Person;
|
||||||
|
use Chill\ThirdPartyBundle\Entity\ThirdParty;
|
||||||
|
use Symfony\Component\Validator\Context\ExecutionContextInterface;
|
||||||
|
use Doctrine\ORM\Mapping as ORM;
|
||||||
|
use Symfony\Component\Serializer\Annotation as Serializer;
|
||||||
|
use Symfony\Component\Validator\Constraints as Assert;
|
||||||
|
|
||||||
|
#[ORM\MappedSuperclass]
|
||||||
|
class AbstractPersonResource implements TrackCreationInterface, TrackUpdateInterface
|
||||||
|
{
|
||||||
|
use TrackCreationTrait;
|
||||||
|
|
||||||
|
use TrackUpdateTrait;
|
||||||
|
|
||||||
|
#[ORM\Embedded(class: CommentEmbeddable::class, columnPrefix: 'comment_')]
|
||||||
|
#[Serializer\Groups(['read', 'docgen:read'])]
|
||||||
|
private CommentEmbeddable $comment;
|
||||||
|
|
||||||
|
#[ORM\Column(type: 'text', nullable: true)]
|
||||||
|
#[Serializer\Groups(['read', 'docgen:read'])]
|
||||||
|
private ?string $freeText = null;
|
||||||
|
|
||||||
|
#[ORM\ManyToOne(targetEntity: PersonResourceKind::class, inversedBy: 'personResources')]
|
||||||
|
#[ORM\JoinColumn(nullable: true)]
|
||||||
|
#[Serializer\Groups(['read', 'docgen:read'])]
|
||||||
|
private ?PersonResourceKind $kind = null;
|
||||||
|
|
||||||
|
#[ORM\ManyToOne(targetEntity: Person::class)]
|
||||||
|
#[ORM\JoinColumn(nullable: true)]
|
||||||
|
#[Serializer\Groups(['read', 'docgen:read'])]
|
||||||
|
private ?Person $person = null;
|
||||||
|
|
||||||
|
#[ORM\ManyToOne(targetEntity: Person::class, inversedBy: 'resources')]
|
||||||
|
#[ORM\JoinColumn(nullable: false)]
|
||||||
|
#[Serializer\Groups(['read'])]
|
||||||
|
private ?Person $personOwner = null;
|
||||||
|
|
||||||
|
#[ORM\ManyToOne(targetEntity: ThirdParty::class, inversedBy: 'personResources')]
|
||||||
|
#[ORM\JoinColumn(nullable: true)]
|
||||||
|
#[Serializer\Groups(['read', 'docgen:read'])]
|
||||||
|
private ?ThirdParty $thirdParty = null;
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$this->comment = new CommentEmbeddable();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getComment(): CommentEmbeddable
|
||||||
|
{
|
||||||
|
return $this->comment;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getFreeText(): ?string
|
||||||
|
{
|
||||||
|
return $this->freeText;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getKind(): ?PersonResourceKind
|
||||||
|
{
|
||||||
|
return $this->kind;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPerson(): ?Person
|
||||||
|
{
|
||||||
|
return $this->person;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getPersonOwner(): ?Person
|
||||||
|
{
|
||||||
|
return $this->personOwner;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Groups({"read", "docgen:read"})
|
||||||
|
*/
|
||||||
|
public function getResourceKind(): string
|
||||||
|
{
|
||||||
|
if ($this->getPerson() instanceof Person) {
|
||||||
|
return 'person';
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->getThirdParty() instanceof ThirdParty) {
|
||||||
|
return 'thirdparty';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (null !== $this->getFreeText()) {
|
||||||
|
return 'freetext';
|
||||||
|
}
|
||||||
|
|
||||||
|
return 'none';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getThirdParty(): ?ThirdParty
|
||||||
|
{
|
||||||
|
return $this->thirdParty;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setComment(?CommentEmbeddable $comment): self
|
||||||
|
{
|
||||||
|
if (null === $comment) {
|
||||||
|
$this->comment->setComment('');
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->comment = $comment;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setFreeText(?string $freeText): self
|
||||||
|
{
|
||||||
|
$this->freeText = $freeText;
|
||||||
|
|
||||||
|
if ('' !== $freeText && null !== $freeText) {
|
||||||
|
$this->setPerson(null);
|
||||||
|
$this->setThirdParty(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ('' === $freeText) {
|
||||||
|
$this->freeText = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setKind(?PersonResourceKind $kind): self
|
||||||
|
{
|
||||||
|
$this->kind = $kind;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setPerson(?Person $person): self
|
||||||
|
{
|
||||||
|
$this->person = $person;
|
||||||
|
|
||||||
|
if (null !== $person) {
|
||||||
|
$this->setFreeText('');
|
||||||
|
$this->setThirdParty(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setPersonOwner(?Person $personOwner): self
|
||||||
|
{
|
||||||
|
$this->personOwner = $personOwner;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setThirdParty(?ThirdParty $thirdParty): self
|
||||||
|
{
|
||||||
|
$this->thirdParty = $thirdParty;
|
||||||
|
|
||||||
|
if (null !== $thirdParty) {
|
||||||
|
$this->setFreeText('');
|
||||||
|
$this->setPerson(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Assert\Callback
|
||||||
|
*/
|
||||||
|
public function validate(ExecutionContextInterface $context, mixed $payload): void
|
||||||
|
{
|
||||||
|
if (null === $this->person && null === $this->thirdParty && (null === $this->freeText || '' === $this->freeText)) {
|
||||||
|
$context->buildViolation('You must associate at least one entity')
|
||||||
|
->addViolation();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (null !== $this->person && $this->person === $this->personOwner) {
|
||||||
|
$context->buildViolation('You cannot associate a resource with the same person')
|
||||||
|
->addViolation();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -27,191 +27,16 @@ use Symfony\Component\Validator\Context\ExecutionContextInterface;
|
|||||||
#[Serializer\DiscriminatorMap(typeProperty: 'type', mapping: ['personResource' => PersonResource::class])]
|
#[Serializer\DiscriminatorMap(typeProperty: 'type', mapping: ['personResource' => PersonResource::class])]
|
||||||
#[ORM\Entity]
|
#[ORM\Entity]
|
||||||
#[ORM\Table(name: 'chill_person_resource')]
|
#[ORM\Table(name: 'chill_person_resource')]
|
||||||
class PersonResource implements TrackCreationInterface, TrackUpdateInterface
|
class PersonResource extends AbstractPersonResource implements TrackCreationInterface, TrackUpdateInterface
|
||||||
{
|
{
|
||||||
use TrackCreationTrait;
|
|
||||||
|
|
||||||
use TrackUpdateTrait;
|
|
||||||
|
|
||||||
#[Groups(['read', 'docgen:read'])]
|
|
||||||
#[ORM\Embedded(class: CommentEmbeddable::class, columnPrefix: 'comment_')]
|
|
||||||
private CommentEmbeddable $comment;
|
|
||||||
|
|
||||||
#[Groups(['read', 'docgen:read'])]
|
|
||||||
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::TEXT, nullable: true)]
|
|
||||||
private ?string $freeText = null;
|
|
||||||
|
|
||||||
#[Groups(['read', 'docgen:read'])]
|
#[Groups(['read', 'docgen:read'])]
|
||||||
#[ORM\Id]
|
#[ORM\Id]
|
||||||
#[ORM\GeneratedValue]
|
#[ORM\GeneratedValue]
|
||||||
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::INTEGER)]
|
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::INTEGER)]
|
||||||
private ?int $id = null;
|
private ?int $id = null;
|
||||||
|
|
||||||
#[Groups(['read', 'docgen:read'])]
|
|
||||||
#[ORM\ManyToOne(targetEntity: PersonResourceKind::class, inversedBy: 'personResources')]
|
|
||||||
#[ORM\JoinColumn(nullable: true)]
|
|
||||||
private ?PersonResourceKind $kind = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The person which host the owner of this resource.
|
|
||||||
*/
|
|
||||||
#[Groups(['read', 'docgen:read'])]
|
|
||||||
#[ORM\ManyToOne(targetEntity: Person::class)]
|
|
||||||
#[ORM\JoinColumn(nullable: true)]
|
|
||||||
private ?Person $person = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The person linked with this resource.
|
|
||||||
*/
|
|
||||||
#[Groups(['read'])]
|
|
||||||
#[ORM\ManyToOne(targetEntity: Person::class, inversedBy: 'resources')]
|
|
||||||
#[ORM\JoinColumn(nullable: false)]
|
|
||||||
private ?Person $personOwner = null;
|
|
||||||
|
|
||||||
#[Groups(['read', 'docgen:read'])]
|
|
||||||
#[ORM\ManyToOne(targetEntity: ThirdParty::class, inversedBy: 'personResources')]
|
|
||||||
#[ORM\JoinColumn(nullable: true)]
|
|
||||||
private ?ThirdParty $thirdParty = null;
|
|
||||||
|
|
||||||
public function __construct()
|
|
||||||
{
|
|
||||||
$this->comment = new CommentEmbeddable();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getComment(): CommentEmbeddable
|
|
||||||
{
|
|
||||||
return $this->comment;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getFreeText(): ?string
|
|
||||||
{
|
|
||||||
return $this->freeText;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* GETTERS.
|
|
||||||
*/
|
|
||||||
public function getId(): ?int
|
public function getId(): ?int
|
||||||
{
|
{
|
||||||
return $this->id;
|
return $this->id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getKind(): ?PersonResourceKind
|
|
||||||
{
|
|
||||||
return $this->kind;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getPerson(): ?Person
|
|
||||||
{
|
|
||||||
return $this->person;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getPersonOwner(): ?Person
|
|
||||||
{
|
|
||||||
return $this->personOwner;
|
|
||||||
}
|
|
||||||
|
|
||||||
#[Groups(['read', 'docgen:read'])]
|
|
||||||
public function getResourceKind(): string
|
|
||||||
{
|
|
||||||
if ($this->getPerson() instanceof Person) {
|
|
||||||
return 'person';
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->getThirdParty() instanceof ThirdParty) {
|
|
||||||
return 'thirdparty';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (null !== $this->getFreeText()) {
|
|
||||||
return 'freetext';
|
|
||||||
}
|
|
||||||
|
|
||||||
return 'none';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getThirdParty(): ?ThirdParty
|
|
||||||
{
|
|
||||||
return $this->thirdParty;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setComment(?CommentEmbeddable $comment): self
|
|
||||||
{
|
|
||||||
if (null === $comment) {
|
|
||||||
$this->comment->setComment('');
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->comment = $comment;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setFreeText(?string $freeText): self
|
|
||||||
{
|
|
||||||
$this->freeText = $freeText;
|
|
||||||
|
|
||||||
if ('' !== $freeText && null !== $freeText) {
|
|
||||||
$this->setPerson(null);
|
|
||||||
$this->setThirdParty(null);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ('' === $freeText) {
|
|
||||||
$this->freeText = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setKind(?PersonResourceKind $kind): self
|
|
||||||
{
|
|
||||||
$this->kind = $kind;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setPerson(?Person $person): self
|
|
||||||
{
|
|
||||||
$this->person = $person;
|
|
||||||
|
|
||||||
if (null !== $person) {
|
|
||||||
$this->setFreeText('');
|
|
||||||
$this->setThirdParty(null);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setPersonOwner(?Person $personOwner): self
|
|
||||||
{
|
|
||||||
$this->personOwner = $personOwner;
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setThirdParty(?ThirdParty $thirdParty): self
|
|
||||||
{
|
|
||||||
$this->thirdParty = $thirdParty;
|
|
||||||
|
|
||||||
if (null !== $thirdParty) {
|
|
||||||
$this->setFreeText('');
|
|
||||||
$this->setPerson(null);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
#[Assert\Callback]
|
|
||||||
public function validate(ExecutionContextInterface $context, mixed $payload)
|
|
||||||
{
|
|
||||||
if (null === $this->person && null === $this->thirdParty && (null === $this->freeText || '' === $this->freeText)) {
|
|
||||||
$context->buildViolation('You must associate at least one entity')
|
|
||||||
->addViolation();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (null !== $this->person && $this->person === $this->personOwner) {
|
|
||||||
$context->buildViolation('You cannot associate a resource with the same person')
|
|
||||||
->addViolation();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user