<?php
namespace App\Entity;
use App\Repository\UserRepository;
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;
use Symfony\Component\Validator\Constraints as Assert;
#[ORM\Entity(repositoryClass: UserRepository::class)]
#[ORM\Table(name: "`user`")]
#[UniqueEntity(fields: ['email'], message: 'There is already an account with this email')]
class User implements UserInterface, PasswordAuthenticatedUserInterface
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'string', length: 180, unique: true)]
#[Assert\NotNull(message:'Ce champ est obligatoire.')]
#[Assert\Email(message: 'Le champ email n\'est pas valide.')]
private $email;
#[ORM\Column(type: 'json')]
private $roles = [];
#[ORM\Column(type: 'string')]
private $password;
#[ORM\Column(type: 'boolean')]
private $isVerified = false;
#[ORM\Column(type: 'boolean', nullable: true)]
private $isVerifiedKyc;
#[ORM\Column(type: 'boolean', nullable: true)]
private $isAdminValidated;
#[ORM\Column(type: 'string', length: 255)]
#[Assert\NotNull(message:'Ce champ est obligatoire.')]
private $firstName;
#[ORM\Column(type: 'string', length: 255)]
#[Assert\NotNull(message:'Ce champ est obligatoire.')]
private $lastName;
#[ORM\Column(type: 'datetime', nullable: true)]
private $birthday;
#[ORM\Column(type: 'string')]
#[Assert\NotBlank(message:'Ce champ est obligatoire.')]
#[Assert\Regex(pattern: '#^\d{10}$#', message: 'Ce champ doit contenir uniquement des chiffres.')]
#[Assert\Length(min: 10, max: 10, exactMessage: 'Le numéro de téléphone doit contenir 10 chiffres.')]
private $phone;
#[ORM\Column(type: 'boolean', nullable: true)]
private $isAcceptNewsletter;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $civility;
#[ORM\Column(type: 'integer', nullable: true)]
private $licenceYear;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $address;
#[ORM\Column(type: 'integer', nullable: true)]
private $postalCode;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $city;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $departement;
#[ORM\Column(type: 'text', nullable: true)]
private $biograph;
#[ORM\Column(type: 'boolean', nullable: true)]
private $isInfosExact;
#[ORM\OneToMany(mappedBy: 'createdBy', targetEntity: Territory::class, orphanRemoval: true)]
private $territories;
#[ORM\OneToMany(mappedBy: 'user', targetEntity: Booking::class, orphanRemoval: true)]
private $bookings;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $stripeAccountId;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $stripePersonId;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $stripeAccountBankId;
#[ORM\Column(type: 'datetime', nullable: true)]
private $createdAt;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $stripeCustomerId;
public function __construct()
{
$this->territories = new ArrayCollection();
$this->bookings = new ArrayCollection();
}
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;
}
/**
* @deprecated since Symfony 5.3, use getUserIdentifier instead
*/
public function getUsername(): 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;
}
public function getRole(): string
{
return (empty($this->roles)) ? 'ROLE_USER' : $this->roles[0];
}
public function setRole(string $role): self
{
$this->setRoles([$role]);
return $this;
}
/**
* @see PasswordAuthenticatedUserInterface
*/
public function getPassword(): string
{
return $this->password;
}
public function setPassword(string $password): self
{
$this->password = $password;
return $this;
}
/**
* Returning a salt is only needed, if you are not using a modern
* hashing algorithm (e.g. bcrypt or sodium) in your security.yaml.
*
* @see UserInterface
*/
public function getSalt(): ?string
{
return null;
}
/**
* @see UserInterface
*/
public function eraseCredentials()
{
// If you store any temporary, sensitive data on the user, clear it here
// $this->plainPassword = null;
}
public function isVerified(): bool
{
return $this->isVerified;
}
public function setIsVerified(bool $isVerified): self
{
$this->isVerified = $isVerified;
return $this;
}
public function getIsVerifiedKyc(): ?bool
{
return $this->isVerifiedKyc;
}
public function setIsVerifiedKyc(?bool $isVerifiedKyc): self
{
$this->isVerifiedKyc = $isVerifiedKyc;
return $this;
}
public function getIsAdminValidated(): ?bool
{
return $this->isAdminValidated;
}
public function setIsAdminValidated(?bool $isAdminValidated): self
{
$this->isAdminValidated = $isAdminValidated;
return $this;
}
public function getFirstName(): ?string
{
return $this->firstName;
}
public function setFirstName(string $firstName): self
{
$this->firstName = $firstName;
return $this;
}
public function getLastName(): ?string
{
return $this->lastName;
}
public function setLastName(string $lastName): self
{
$this->lastName = $lastName;
return $this;
}
public function getBirthday(): ?\DateTimeInterface
{
return $this->birthday;
}
public function setBirthday(?\DateTimeInterface $birthday): self
{
$this->birthday = $birthday;
return $this;
}
public function getPhone(): ?string
{
return $this->phone;
}
public function setPhone(string $phone): self
{
$this->phone = $phone;
return $this;
}
public function getIsAcceptNewsletter(): ?bool
{
return $this->isAcceptNewsletter;
}
public function setIsAcceptNewsletter(?bool $isAcceptNewsletter): self
{
$this->isAcceptNewsletter = $isAcceptNewsletter;
return $this;
}
public function getFullName(): ?string
{
return $this->firstName . ' ' . $this->lastName;
}
public function __toString(): string
{
return $this->getFullName();
}
public function getCivility(): ?string
{
return $this->civility;
}
public function setCivility(?string $civility): self
{
$this->civility = $civility;
return $this;
}
public function getLicenceYear(): ?int
{
return $this->licenceYear;
}
public function setLicenceYear(?int $licenceYear): self
{
$this->licenceYear = $licenceYear;
return $this;
}
public function getAddress(): ?string
{
return $this->address;
}
public function setAddress(?string $address): self
{
$this->address = $address;
return $this;
}
public function getPostalCode(): ?int
{
return $this->postalCode;
}
public function setPostalCode(?int $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 getDepartement(): ?string
{
return $this->departement;
}
public function setDepartement(?string $departement): self
{
$this->departement = $departement;
return $this;
}
public function getBiograph(): ?string
{
return $this->biograph;
}
public function setBiograph(?string $biograph): self
{
$this->biograph = $biograph;
return $this;
}
public function getIsInfosExact(): ?bool
{
return $this->isInfosExact;
}
public function setIsInfosExact(?bool $isInfosExact): self
{
$this->isInfosExact = $isInfosExact;
return $this;
}
/**
* @return Collection<int, Territory>
*/
public function getTerritories(): Collection
{
return $this->territories;
}
public function addTerritory(Territory $territory): self
{
if (!$this->territories->contains($territory)) {
$this->territories[] = $territory;
$territory->setCreatedBy($this);
}
return $this;
}
public function removeTerritory(Territory $territory): self
{
if ($this->territories->removeElement($territory)) {
// set the owning side to null (unless already changed)
if ($territory->getCreatedBy() === $this) {
$territory->setCreatedBy(null);
}
}
return $this;
}
/**
* @return Collection<int, Booking>
*/
public function getBookings(): Collection
{
return $this->bookings;
}
public function addBooking(Booking $booking): self
{
if (!$this->bookings->contains($booking)) {
$this->bookings[] = $booking;
$booking->setUser($this);
}
return $this;
}
public function removeBooking(Booking $booking): self
{
if ($this->bookings->removeElement($booking)) {
// set the owning side to null (unless already changed)
if ($booking->getUser() === $this) {
$booking->setUser(null);
}
}
return $this;
}
public function getStripeAccountId(): ?string
{
return $this->stripeAccountId;
}
public function setStripeAccountId(?string $stripeAccountId): self
{
$this->stripeAccountId = $stripeAccountId;
return $this;
}
public function getStripePersonId(): ?string
{
return $this->stripePersonId;
}
public function setStripePersonId(?string $stripePersonId): self
{
$this->stripePersonId = $stripePersonId;
return $this;
}
public function getStripeAccountBankId(): ?string
{
return $this->stripeAccountBankId;
}
public function setStripeAccountBankId(?string $stripeAccountBankId): self
{
$this->stripeAccountBankId = $stripeAccountBankId;
return $this;
}
public function getIsVerified(): ?bool
{
return $this->isVerified;
}
public function getCreatedAt(): ?\DateTimeInterface
{
return $this->createdAt;
}
public function setCreatedAt(?\DateTimeInterface $createdAt): self
{
$this->createdAt = $createdAt;
return $this;
}
public function getName(): ?string
{
return $this->firstName . ' ' . $this->lastName;
}
public function getStripeCustomerId(): ?string
{
return $this->stripeCustomerId;
}
public function setStripeCustomerId(?string $stripeCustomerId): self
{
$this->stripeCustomerId = $stripeCustomerId;
return $this;
}
public function hasRole(string $role): bool
{
return in_array($role, $this->roles);
}
}