<?php
namespace App\Entity;
use App\Entity\Trait\CreatedAtTrait;
use App\Repository\UsersRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
use Symfony\Component\Security\Core\User\UserInterface;
/**
* @UniqueEntity(fields={"email"}, message="There is already an account with this email")
*/
#[ORM\Entity(repositoryClass: UsersRepository::class)]
class Users implements UserInterface, PasswordAuthenticatedUserInterface
{
use CreatedAtTrait;
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'string', length: 180, unique: true)]
private $email;
#[ORM\Column(length: 20, nullable: true)]
private ?string $mobilePhone = null;
#[ORM\Column(length: 20, nullable: true)]
private ?string $phone = null;
#[ORM\Column(type: 'json')]
private $roles = [];
#[ORM\Column(type: 'string')]
private $password;
#[ORM\Column(type: 'string', length: 100)]
private $lastname;
#[ORM\Column(type: 'string', length: 100)]
private $firstname;
#[ORM\Column(type: 'string', length: 255)]
private $address;
#[ORM\Column(type: 'string', length: 20)]
private $zipcode;
#[ORM\Column(type: 'string', length: 150)]
private $city;
#[ORM\Column(type: 'boolean')]
private $is_verified = false;
#[ORM\Column(type: 'string', length: 100, nullable: true)]
private $resetToken;
#[ORM\OneToMany(mappedBy: 'users', targetEntity: Orders::class)]
private $orders;
#[ORM\ManyToOne(inversedBy: 'usersEntreprise')]
#[ORM\JoinColumn(nullable: true)]
private ?Entreprise $entreprise = null;
#[ORM\ManyToOne(inversedBy: 'usersAgence')]
#[ORM\JoinColumn(nullable: true)]
private ?Agence $agence = null;
public function __construct()
{
$this->orders = new ArrayCollection();
$this->created_at = new \DateTimeImmutable();
}
public function getId(): ?int
{
return $this->id;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(string $email): self
{
$this->email = $email;
return $this;
}
/**
* A visual identifier that represents this user.
*
* @see UserInterface
*/
public function getUserIdentifier(): string
{
return (string) $this->email;
}
/**
* @see UserInterface
*/
public function getRoles(): array
{
$roles = $this->roles;
// guarantee every user at least has ROLE_USER
$roles[] = 'ROLE_USER';
return array_unique($roles);
}
public function setRoles(array $roles): self
{
$this->roles = $roles;
return $this;
}
/**
* @see PasswordAuthenticatedUserInterface
*/
public function getPassword(): string
{
return $this->password;
}
public function setPassword(string $password): self
{
$this->password = $password;
return $this;
}
/**
* @see UserInterface
*/
public function eraseCredentials()
{
// If you store any temporary, sensitive data on the user, clear it here
// $this->plainPassword = null;
}
public function getLastname(): ?string
{
return $this->lastname;
}
public function setLastname(string $lastname): self
{
$this->lastname = $lastname;
return $this;
}
public function getFirstname(): ?string
{
return $this->firstname;
}
public function setFirstname(string $firstname): self
{
$this->firstname = $firstname;
return $this;
}
public function getAddress(): ?string
{
return $this->address;
}
public function setAddress(string $address): self
{
$this->address = $address;
return $this;
}
public function getZipcode(): ?string
{
return $this->zipcode;
}
public function setZipcode(string $zipcode): self
{
$this->zipcode = $zipcode;
return $this;
}
public function getCity(): ?string
{
return $this->city;
}
public function setCity(string $city): self
{
$this->city = $city;
return $this;
}
public function getIsVerified(): ?bool
{
return $this->is_verified;
}
public function setIsVerified(bool $is_verified): self
{
$this->is_verified = $is_verified;
return $this;
}
public function getResetToken(): ?string
{
return $this->resetToken;
}
public function setResetToken(?string $resetToken): self
{
$this->resetToken = $resetToken;
return $this;
}
/**
* @return Collection|Orders[]
*/
public function getOrders(): Collection
{
return $this->orders;
}
public function addOrder(Orders $order): self
{
if (!$this->orders->contains($order)) {
$this->orders[] = $order;
$order->setUsers($this);
}
return $this;
}
public function removeOrder(Orders $order): self
{
if ($this->orders->removeElement($order)) {
// set the owning side to null (unless already changed)
if ($order->getUsers() === $this) {
$order->setUsers(null);
}
}
return $this;
}
public function getAgence(): ?Agence { return $this->agence; }
public function setAgence(?Agence $agence): static { $this->agence = $agence; return $this; }
public function getEntreprise(): ?Entreprise { return $this->entreprise; }
public function setEntreprise(?Entreprise $entreprise): static { $this->entreprise = $entreprise; return $this; }
public function getPhone(): ?string{ return $this->phone; }
public function setPhone(?string $phone): static { $this->phone = $phone; return $this; }
public function getMobilePhone(): ?string{ return $this->mobilePhone; }
public function setMobilePhone(?string $mobilePhone): static { $this->mobilePhone = $mobilePhone; return $this; }
}