src/Entity/User.php line 17

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\UserRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  8. use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
  9. use Symfony\Component\Security\Core\User\UserInterface;
  10. use Symfony\Component\Validator\Constraints as Assert;
  11. #[ORM\Entity(repositoryClassUserRepository::class)]
  12. #[ORM\Table(name"`user`")]
  13. #[UniqueEntity(fields: ['email'], message'There is already an account with this email')]
  14. class User implements UserInterfacePasswordAuthenticatedUserInterface
  15. {
  16.     #[ORM\Id]
  17.     #[ORM\GeneratedValue]
  18.     #[ORM\Column(type'integer')]
  19.     private $id;
  20.     #[ORM\Column(type'string'length180uniquetrue)]
  21.     #[Assert\NotNull(message:'Ce champ est obligatoire.')]
  22.     #[Assert\Email(message'Le champ email n\'est pas valide.')]
  23.     private $email;
  24.     #[ORM\Column(type'json')]
  25.     private $roles = [];
  26.     #[ORM\Column(type'string')]
  27.     private $password;
  28.     #[ORM\Column(type'boolean')]
  29.     private $isVerified false;
  30.     #[ORM\Column(type'boolean'nullabletrue)]
  31.     private $isVerifiedKyc;
  32.     #[ORM\Column(type'boolean'nullabletrue)]
  33.     private $isAdminValidated;
  34.     #[ORM\Column(type'string'length255)]
  35.     #[Assert\NotNull(message:'Ce champ est obligatoire.')]
  36.     private $firstName;
  37.     #[ORM\Column(type'string'length255)]
  38.     #[Assert\NotNull(message:'Ce champ est obligatoire.')]
  39.     private $lastName;
  40.     #[ORM\Column(type'datetime'nullabletrue)]
  41.     private $birthday;
  42.     #[ORM\Column(type'string')]
  43.     #[Assert\NotBlank(message:'Ce champ est obligatoire.')]
  44.     #[Assert\Regex(pattern'#^\d{10}$#'message'Ce champ doit contenir uniquement des chiffres.')]
  45.     #[Assert\Length(min10max10exactMessage'Le numéro de téléphone doit contenir 10 chiffres.')]
  46.     private $phone;
  47.     #[ORM\Column(type'boolean'nullabletrue)]
  48.     private $isAcceptNewsletter;
  49.     #[ORM\Column(type'string'length255nullabletrue)]
  50.     private $civility;
  51.     #[ORM\Column(type'integer'nullabletrue)]
  52.     private $licenceYear;
  53.     #[ORM\Column(type'string'length255nullabletrue)]
  54.     private $address;
  55.     #[ORM\Column(type'integer'nullabletrue)]
  56.     private $postalCode;
  57.     #[ORM\Column(type'string'length255nullabletrue)]
  58.     private $city;
  59.     #[ORM\Column(type'string'length255nullabletrue)]
  60.     private $departement;
  61.     #[ORM\Column(type'text'nullabletrue)]
  62.     private $biograph;
  63.     #[ORM\Column(type'boolean'nullabletrue)]
  64.     private $isInfosExact;
  65.     #[ORM\OneToMany(mappedBy'createdBy'targetEntityTerritory::class, orphanRemovaltrue)]
  66.     private $territories;
  67.     #[ORM\OneToMany(mappedBy'user'targetEntityBooking::class, orphanRemovaltrue)]
  68.     private $bookings;
  69.     #[ORM\Column(type'string'length255nullabletrue)]
  70.     private $stripeAccountId;
  71.     #[ORM\Column(type'string'length255nullabletrue)]
  72.     private $stripePersonId;
  73.     #[ORM\Column(type'string'length255nullabletrue)]
  74.     private $stripeAccountBankId;
  75.     #[ORM\Column(type'datetime'nullabletrue)]
  76.     private $createdAt;
  77.     #[ORM\Column(type'string'length255nullabletrue)]
  78.     private $stripeCustomerId;
  79.     public function __construct()
  80.     {
  81.         $this->territories = new ArrayCollection();
  82.         $this->bookings = new ArrayCollection();
  83.     }
  84.     public function getId(): ?int
  85.     {
  86.         return $this->id;
  87.     }
  88.     public function getEmail(): ?string
  89.     {
  90.         return $this->email;
  91.     }
  92.     public function setEmail(string $email): self
  93.     {
  94.         $this->email $email;
  95.         return $this;
  96.     }
  97.     /**
  98.      * A visual identifier that represents this user.
  99.      *
  100.      * @see UserInterface
  101.      */
  102.     public function getUserIdentifier(): string
  103.     {
  104.         return (string)$this->email;
  105.     }
  106.     /**
  107.      * @deprecated since Symfony 5.3, use getUserIdentifier instead
  108.      */
  109.     public function getUsername(): string
  110.     {
  111.         return (string)$this->email;
  112.     }
  113.     /**
  114.      * @see UserInterface
  115.      */
  116.     public function getRoles(): array
  117.     {
  118.         $roles $this->roles;
  119.         // guarantee every user at least has ROLE_USER
  120.         $roles[] = 'ROLE_USER';
  121.         return array_unique($roles);
  122.     }
  123.     public function setRoles(array $roles): self
  124.     {
  125.         $this->roles $roles;
  126.         return $this;
  127.     }
  128.     public function getRole(): string
  129.     {
  130.         return (empty($this->roles)) ? 'ROLE_USER' $this->roles[0];
  131.     }
  132.     public function setRole(string $role): self
  133.     {
  134.         $this->setRoles([$role]);
  135.         return $this;
  136.     }
  137.     /**
  138.      * @see PasswordAuthenticatedUserInterface
  139.      */
  140.     public function getPassword(): string
  141.     {
  142.         return $this->password;
  143.     }
  144.     public function setPassword(string $password): self
  145.     {
  146.         $this->password $password;
  147.         return $this;
  148.     }
  149.     /**
  150.      * Returning a salt is only needed, if you are not using a modern
  151.      * hashing algorithm (e.g. bcrypt or sodium) in your security.yaml.
  152.      *
  153.      * @see UserInterface
  154.      */
  155.     public function getSalt(): ?string
  156.     {
  157.         return null;
  158.     }
  159.     /**
  160.      * @see UserInterface
  161.      */
  162.     public function eraseCredentials()
  163.     {
  164.         // If you store any temporary, sensitive data on the user, clear it here
  165.         // $this->plainPassword = null;
  166.     }
  167.     public function isVerified(): bool
  168.     {
  169.         return $this->isVerified;
  170.     }
  171.     public function setIsVerified(bool $isVerified): self
  172.     {
  173.         $this->isVerified $isVerified;
  174.         return $this;
  175.     }
  176.     public function getIsVerifiedKyc(): ?bool
  177.     {
  178.         return $this->isVerifiedKyc;
  179.     }
  180.     public function setIsVerifiedKyc(?bool $isVerifiedKyc): self
  181.     {
  182.         $this->isVerifiedKyc $isVerifiedKyc;
  183.         return $this;
  184.     }
  185.     public function getIsAdminValidated(): ?bool
  186.     {
  187.         return $this->isAdminValidated;
  188.     }
  189.     public function setIsAdminValidated(?bool $isAdminValidated): self
  190.     {
  191.         $this->isAdminValidated $isAdminValidated;
  192.         return $this;
  193.     }
  194.     public function getFirstName(): ?string
  195.     {
  196.         return $this->firstName;
  197.     }
  198.     public function setFirstName(string $firstName): self
  199.     {
  200.         $this->firstName $firstName;
  201.         return $this;
  202.     }
  203.     public function getLastName(): ?string
  204.     {
  205.         return $this->lastName;
  206.     }
  207.     public function setLastName(string $lastName): self
  208.     {
  209.         $this->lastName $lastName;
  210.         return $this;
  211.     }
  212.     public function getBirthday(): ?\DateTimeInterface
  213.     {
  214.         return $this->birthday;
  215.     }
  216.     public function setBirthday(?\DateTimeInterface $birthday): self
  217.     {
  218.         $this->birthday $birthday;
  219.         return $this;
  220.     }
  221.     public function getPhone(): ?string
  222.     {
  223.         return $this->phone;
  224.     }
  225.     public function setPhone(string $phone): self
  226.     {
  227.         $this->phone $phone;
  228.         return $this;
  229.     }
  230.     public function getIsAcceptNewsletter(): ?bool
  231.     {
  232.         return $this->isAcceptNewsletter;
  233.     }
  234.     public function setIsAcceptNewsletter(?bool $isAcceptNewsletter): self
  235.     {
  236.         $this->isAcceptNewsletter $isAcceptNewsletter;
  237.         return $this;
  238.     }
  239.     public function getFullName(): ?string
  240.     {
  241.         return $this->firstName ' ' $this->lastName;
  242.     }
  243.     public function __toString(): string
  244.     {
  245.         return $this->getFullName();
  246.     }
  247.     public function getCivility(): ?string
  248.     {
  249.         return $this->civility;
  250.     }
  251.     public function setCivility(?string $civility): self
  252.     {
  253.         $this->civility $civility;
  254.         return $this;
  255.     }
  256.     public function getLicenceYear(): ?int
  257.     {
  258.         return $this->licenceYear;
  259.     }
  260.     public function setLicenceYear(?int $licenceYear): self
  261.     {
  262.         $this->licenceYear $licenceYear;
  263.         return $this;
  264.     }
  265.     public function getAddress(): ?string
  266.     {
  267.         return $this->address;
  268.     }
  269.     public function setAddress(?string $address): self
  270.     {
  271.         $this->address $address;
  272.         return $this;
  273.     }
  274.     public function getPostalCode(): ?int
  275.     {
  276.         return $this->postalCode;
  277.     }
  278.     public function setPostalCode(?int $postalCode): self
  279.     {
  280.         $this->postalCode $postalCode;
  281.         return $this;
  282.     }
  283.     public function getCity(): ?string
  284.     {
  285.         return $this->city;
  286.     }
  287.     public function setCity(?string $city): self
  288.     {
  289.         $this->city $city;
  290.         return $this;
  291.     }
  292.     public function getDepartement(): ?string
  293.     {
  294.         return $this->departement;
  295.     }
  296.     public function setDepartement(?string $departement): self
  297.     {
  298.         $this->departement $departement;
  299.         return $this;
  300.     }
  301.     public function getBiograph(): ?string
  302.     {
  303.         return $this->biograph;
  304.     }
  305.     public function setBiograph(?string $biograph): self
  306.     {
  307.         $this->biograph $biograph;
  308.         return $this;
  309.     }
  310.     public function getIsInfosExact(): ?bool
  311.     {
  312.         return $this->isInfosExact;
  313.     }
  314.     public function setIsInfosExact(?bool $isInfosExact): self
  315.     {
  316.         $this->isInfosExact $isInfosExact;
  317.         return $this;
  318.     }
  319.     /**
  320.      * @return Collection<int, Territory>
  321.      */
  322.     public function getTerritories(): Collection
  323.     {
  324.         return $this->territories;
  325.     }
  326.     public function addTerritory(Territory $territory): self
  327.     {
  328.         if (!$this->territories->contains($territory)) {
  329.             $this->territories[] = $territory;
  330.             $territory->setCreatedBy($this);
  331.         }
  332.         return $this;
  333.     }
  334.     public function removeTerritory(Territory $territory): self
  335.     {
  336.         if ($this->territories->removeElement($territory)) {
  337.             // set the owning side to null (unless already changed)
  338.             if ($territory->getCreatedBy() === $this) {
  339.                 $territory->setCreatedBy(null);
  340.             }
  341.         }
  342.         return $this;
  343.     }
  344.     /**
  345.      * @return Collection<int, Booking>
  346.      */
  347.     public function getBookings(): Collection
  348.     {
  349.         return $this->bookings;
  350.     }
  351.     public function addBooking(Booking $booking): self
  352.     {
  353.         if (!$this->bookings->contains($booking)) {
  354.             $this->bookings[] = $booking;
  355.             $booking->setUser($this);
  356.         }
  357.         return $this;
  358.     }
  359.     public function removeBooking(Booking $booking): self
  360.     {
  361.         if ($this->bookings->removeElement($booking)) {
  362.             // set the owning side to null (unless already changed)
  363.             if ($booking->getUser() === $this) {
  364.                 $booking->setUser(null);
  365.             }
  366.         }
  367.         return $this;
  368.     }
  369.     public function getStripeAccountId(): ?string
  370.     {
  371.         return $this->stripeAccountId;
  372.     }
  373.     public function setStripeAccountId(?string $stripeAccountId): self
  374.     {
  375.         $this->stripeAccountId $stripeAccountId;
  376.         return $this;
  377.     }
  378.     public function getStripePersonId(): ?string
  379.     {
  380.         return $this->stripePersonId;
  381.     }
  382.     public function setStripePersonId(?string $stripePersonId): self
  383.     {
  384.         $this->stripePersonId $stripePersonId;
  385.         return $this;
  386.     }
  387.     public function getStripeAccountBankId(): ?string
  388.     {
  389.         return $this->stripeAccountBankId;
  390.     }
  391.     public function setStripeAccountBankId(?string $stripeAccountBankId): self
  392.     {
  393.         $this->stripeAccountBankId $stripeAccountBankId;
  394.         return $this;
  395.     }
  396.     public function getIsVerified(): ?bool
  397.     {
  398.         return $this->isVerified;
  399.     }
  400.     public function getCreatedAt(): ?\DateTimeInterface
  401.     {
  402.         return $this->createdAt;
  403.     }
  404.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  405.     {
  406.         $this->createdAt $createdAt;
  407.         return $this;
  408.     }
  409.     public function getName(): ?string
  410.     {
  411.         return $this->firstName ' ' $this->lastName;
  412.     }
  413.     public function getStripeCustomerId(): ?string
  414.     {
  415.         return $this->stripeCustomerId;
  416.     }
  417.     public function setStripeCustomerId(?string $stripeCustomerId): self
  418.     {
  419.         $this->stripeCustomerId $stripeCustomerId;
  420.         return $this;
  421.     }
  422.     public function hasRole(string $role): bool
  423.     {
  424.         return in_array($role$this->roles);
  425.     }
  426. }