<?php
namespace App\Entity;
use App\Repository\AddressRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Blameable\Traits\BlameableEntity;
use Gedmo\Timestampable\Traits\TimestampableEntity;
use Symfony\Component\Serializer\Annotation\Groups;
use Symfony\Component\Validator\Constraints as Assert;
#[ORM\Entity(repositoryClass: AddressRepository::class)]
class Address
{
use BlameableEntity; //Hook blameable behaviour. Updates createdBy, updatedBy fields
use TimestampableEntity; //Hook timestampable behaviour. Updates createdAt, updatedAt fields
#[ORM\Id]
#[ORM\GeneratedValue(strategy: "IDENTITY")]
#[ORM\Column]
private ?int $id = null;
#[ORM\ManyToOne(inversedBy: 'addresses')]
#[ORM\JoinColumn(nullable: true)]
private ?User $user = null;
#[ORM\OneToMany(mappedBy: 'address', targetEntity: Producer::class)]
private Collection $producers;
#[ORM\Column(length: 511, nullable: true)]
#[Assert\Length(max: 511)]
#[Groups(['json'])]
private ?string $addressee = null;
#[ORM\Column(length: 255, nullable: true)]
#[Assert\Length(max: 255)]
#[Groups(['json'])]
private ?string $name = null;
#[ORM\Column(length: 511)]
#[Assert\NotNull()]
#[Assert\Length(max: 511)]
#[Groups(['json'])]
private ?string $address = null;
#[ORM\Column(length: 10)]
#[Assert\NotNull()]
#[Assert\Length(max: 10)]
#[Groups(['json'])]
private ?string $postalCode = null;
#[ORM\Column(length: 50)]
#[Assert\NotNull()]
#[Assert\Length(max: 50)]
#[Groups(['json'])]
private ?string $city = null;
#[ORM\ManyToOne(inversedBy: 'addresses')]
#[ORM\JoinColumn(nullable: false)]
#[Assert\NotNull()]
#[Groups(['json'])]
private ?Country $country = null;
#[ORM\Column]
#[Groups(['json'])]
private ?bool $isDefaultAddress = false;
#[ORM\Column]
#[Groups(['json'])]
private ?bool $isBillingAddress = false;
#[ORM\ManyToOne]
#[Assert\NotNull()]
#[Groups(['json'])]
private ?Province $province = null;
#[ORM\OneToMany(mappedBy: 'address', targetEntity: SharedAddress::class)]
private Collection $sharedAddresses;
#[ORM\OneToMany(mappedBy: 'address', targetEntity: BuyingGroup::class)]
private Collection $buyingGroups;
public function __toString()
{
return $this->name;
}
public function __construct()
{
$this->producers = new ArrayCollection();
$this->sharedAddresses = new ArrayCollection();
$this->buyingGroups = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getUser(): ?User
{
return $this->user;
}
public function setUser(?User $user): self
{
$this->user = $user;
return $this;
}
/**
* @return Collection<int, Producer>
*/
public function getProducers(): Collection
{
return $this->producers;
}
public function addProducer(Producer $producer): self
{
if (!$this->producers->contains($producer)) {
$this->producers->add($producer);
$producer->setAddress($this);
}
return $this;
}
public function removeProducer(Producer $producer): self
{
if ($this->producers->removeElement($producer)) {
// set the owning side to null (unless already changed)
if ($producer->getAddress() === $this) {
$producer->setAddress(null);
}
}
return $this;
}
public function getAddressee(): ?string
{
return $this->addressee;
}
public function setAddressee(?string $addressee): self
{
$this->addressee = $addressee;
return $this;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(?string $name): self
{
$this->name = $name;
return $this;
}
public function getAddress(): ?string
{
return $this->address;
}
public function setAddress(?string $address): self
{
$this->address = $address;
return $this;
}
public function getPostalCode(): ?string
{
return $this->postalCode;
}
public function setPostalCode(?string $postalCode): self
{
$this->postalCode = $postalCode;
return $this;
}
public function getCity(): ?string
{
return $this->city;
}
public function setCity(?string $city): self
{
$this->city = $city;
return $this;
}
public function getCountry(): ?Country
{
return $this->country;
}
public function setCountry(?Country $country): self
{
$this->country = $country;
return $this;
}
public function isIsDefaultAddress(): ?bool
{
return $this->isDefaultAddress;
}
public function setIsDefaultAddress(bool $isDefaultAddress): self
{
$this->isDefaultAddress = $isDefaultAddress;
return $this;
}
public function isIsBillingAddress(): ?bool
{
return $this->isBillingAddress;
}
public function setIsBillingAddress(bool $isBillingAddress): self
{
$this->isBillingAddress = $isBillingAddress;
return $this;
}
public function getProvince(): ?Province
{
return $this->province;
}
public function setProvince(?Province $province): self
{
$this->province = $province;
return $this;
}
/**
* @return Collection<int, SharedAddress>
*/
public function getSharedAddresses(): Collection
{
return $this->sharedAddresses;
}
public function addSharedAddress(SharedAddress $sharedAddress): self
{
if (!$this->sharedAddresses->contains($sharedAddress)) {
$this->sharedAddresses->add($sharedAddress);
$sharedAddress->setAddress($this);
}
return $this;
}
public function removeSharedAddress(SharedAddress $sharedAddress): self
{
if ($this->sharedAddresses->removeElement($sharedAddress)) {
// set the owning side to null (unless already changed)
if ($sharedAddress->getAddress() === $this) {
$sharedAddress->setAddress(null);
}
}
return $this;
}
/**
* @return Collection<int, BuyingGroup>
*/
public function getBuyingGroups(): Collection
{
return $this->buyingGroups;
}
public function addBuyingGroup(BuyingGroup $buyingGroup): self
{
if (!$this->buyingGroups->contains($buyingGroup)) {
$this->buyingGroups->add($buyingGroup);
$buyingGroup->setAddress($this);
}
return $this;
}
public function removeBuyingGroup(BuyingGroup $buyingGroup): self
{
if ($this->buyingGroups->removeElement($buyingGroup)) {
// set the owning side to null (unless already changed)
if ($buyingGroup->getAddress() === $this) {
$buyingGroup->setAddress(null);
}
}
return $this;
}
}