src/Entity/User.php line 18

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. /**
  11.  * @ORM\Entity(repositoryClass=UserRepository::class)
  12.  * @ORM\Table(name="`user`")
  13.  * @UniqueEntity(fields={"email"}, message="Il existe déjà un compte avec cette adresse mail.")
  14.  */
  15. class User implements UserInterfacePasswordAuthenticatedUserInterface
  16. {
  17.     /**
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue
  20.      * @ORM\Column(type="integer")
  21.      */
  22.     private $id;
  23.     /**
  24.      * @ORM\Column(type="string", length=180, unique=true)
  25.      */
  26.     private $email;
  27.     /**
  28.      * @ORM\Column(type="json")
  29.      */
  30.     private $roles = [];
  31.     /**
  32.      * @var string The hashed password
  33.      * @ORM\Column(type="string")
  34.      */
  35.     private $password;
  36.     /**
  37.      * @ORM\OneToMany(targetEntity=Note::class, mappedBy="idUser")
  38.      */
  39.     private $notes;
  40.     /**
  41.      * @ORM\OneToMany(targetEntity=Reservation::class, mappedBy="idUser", orphanRemoval=true)
  42.      */
  43.     private $reservations;
  44.     /**
  45.      * @ORM\Column(type="string", length=255)
  46.      */
  47.     private $username;
  48.     public function __construct()
  49.     {
  50.         $this->notes = new ArrayCollection();
  51.         $this->reservations = new ArrayCollection();
  52.     }
  53.     public function getId(): ?int
  54.     {
  55.         return $this->id;
  56.     }
  57.     public function getEmail(): ?string
  58.     {
  59.         return $this->email;
  60.     }
  61.     public function setEmail(string $email): self
  62.     {
  63.         $this->email $email;
  64.         return $this;
  65.     }
  66.     /**
  67.      * A visual identifier that represents this user.
  68.      *
  69.      * @see UserInterface
  70.      */
  71.     public function getUserIdentifier(): string
  72.     {
  73.         return (string) $this->email;
  74.     }
  75.     /**
  76.      * @see UserInterface
  77.      */
  78.     public function getRoles(): array
  79.     {
  80.         $roles $this->roles;
  81.         // guarantee every user at least has ROLE_USER
  82.         $roles[] = 'ROLE_USER';
  83.         return array_unique($roles);
  84.     }
  85.     public function setRoles(array $roles): self
  86.     {
  87.         $this->roles $roles;
  88.         return $this;
  89.     }
  90.     /**
  91.      * @see PasswordAuthenticatedUserInterface
  92.      */
  93.     public function getPassword(): string
  94.     {
  95.         return $this->password;
  96.     }
  97.     public function setPassword(string $password): self
  98.     {
  99.         $this->password $password;
  100.         return $this;
  101.     }
  102.     /**
  103.      * @see UserInterface
  104.      */
  105.     public function eraseCredentials()
  106.     {
  107.         // If you store any temporary, sensitive data on the user, clear it here
  108.         // $this->plainPassword = null;
  109.     }
  110.     /**
  111.      * @return Collection|Note[]
  112.      */
  113.     public function getNotes(): Collection
  114.     {
  115.         return $this->notes;
  116.     }
  117.     public function addNote(Note $note): self
  118.     {
  119.         if (!$this->notes->contains($note)) {
  120.             $this->notes[] = $note;
  121.             $note->setIdUser($this);
  122.         }
  123.         return $this;
  124.     }
  125.     public function removeNote(Note $note): self
  126.     {
  127.         if ($this->notes->removeElement($note)) {
  128.             // set the owning side to null (unless already changed)
  129.             if ($note->getIdUser() === $this) {
  130.                 $note->setIdUser(null);
  131.             }
  132.         }
  133.         return $this;
  134.     }
  135.     /**
  136.      * @return Collection|Reservation[]
  137.      */
  138.     public function getReservations(): Collection
  139.     {
  140.         return $this->reservations;
  141.     }
  142.     public function addReservation(Reservation $reservation): self
  143.     {
  144.         if (!$this->reservations->contains($reservation)) {
  145.             $this->reservations[] = $reservation;
  146.             $reservation->setIdUser($this);
  147.         }
  148.         return $this;
  149.     }
  150.     public function removeReservation(Reservation $reservation): self
  151.     {
  152.         if ($this->reservations->removeElement($reservation)) {
  153.             // set the owning side to null (unless already changed)
  154.             if ($reservation->getIdUser() === $this) {
  155.                 $reservation->setIdUser(null);
  156.             }
  157.         }
  158.         return $this;
  159.     }
  160.     public function getUsername(): ?string
  161.     {
  162.         return $this->username;
  163.     }
  164.     public function setUsername(string $username): self
  165.     {
  166.         $this->username $username;
  167.         return $this;
  168.     }
  169. }