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. /**
  11.  * @ORM\Entity(repositoryClass=UserRepository::class)
  12.  * @UniqueEntity(fields={"email"}, message="There is already an account with this email")
  13.  */
  14. class User implements UserInterfacePasswordAuthenticatedUserInterface
  15. {
  16.     /**
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue
  19.      * @ORM\Column(type="integer")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @ORM\Column(type="string", length=180, unique=true)
  24.      */
  25.     private $email;
  26.     /**
  27.      * @ORM\Column(type="string", length=255)
  28.      */
  29.     private $roles;
  30.     /**
  31.      * @var string The hashed password
  32.      * @ORM\Column(type="string")
  33.      */
  34.     private $password;
  35.     /**
  36.      * @ORM\Column(type="string", length=255)
  37.      */
  38.     private $username;
  39.     /**
  40.      * @ORM\Column(type="string", length=255, nullable=true)
  41.      */
  42.     private $resetToken;
  43.     /**
  44.      * @ORM\Column(type="datetime", nullable=true)
  45.      */
  46.     private $resetTokenExpiresAt;
  47.     /**
  48.      * @ORM\ManyToMany(targetEntity=Entreprise::class, inversedBy="users")
  49.      * @ORM\JoinTable(name="user_entreprise")
  50.      */
  51.     private $entreprises;
  52.     /**
  53.      * @ORM\Column(type="boolean", options={"default": false})
  54.      */
  55.     private $isProAccessRequested false;
  56.     public function __construct()
  57.     {
  58.         $this->entreprises = new ArrayCollection();
  59.     }
  60.     public function getId(): ?int
  61.     {
  62.         return $this->id;
  63.     }
  64.     public function getEmail(): ?string
  65.     {
  66.         return $this->email;
  67.     }
  68.     public function setEmail(string $email): self
  69.     {
  70.         $this->email $email;
  71.         return $this;
  72.     }
  73.     /**
  74.      * A visual identifier that represents this user.
  75.      *
  76.      * @see UserInterface
  77.      */
  78.     public function getUserIdentifier(): string
  79.     {
  80.         return (string) $this->email;
  81.     }
  82.     /**
  83.      * @see UserInterface
  84.      */
  85.     public function getRoles(): array
  86.     {
  87.         $roles $this->roles == "" 'ROLE_USER' $this->roles;
  88.         return array_unique(explode(','$roles));
  89.     }
  90.     public function setRoles(array $roles): self
  91.     {
  92.         $this->roles implode(','$roles);
  93.         return $this;
  94.     }
  95.     public function addRole(string $role): self
  96.     {
  97.         $this->roles $this->roles ',' $role;
  98.         return $this;
  99.     }
  100.     public function removeRole(string $role): self
  101.     {
  102.         $this->roles str_replace($role''$this->roles);
  103.         $this->roles str_replace(',,'','$this->roles);
  104.         return $this;
  105.     }
  106.     public function hasRole(string $role): bool
  107.     {
  108.         return strpos($this->roles$role) !== false;
  109.     }
  110.     /**
  111.      * @see PasswordAuthenticatedUserInterface
  112.      */
  113.     public function getPassword(): string
  114.     {
  115.         return $this->password;
  116.     }
  117.     public function setPassword(string $password): self
  118.     {
  119.         $this->password $password;
  120.         return $this;
  121.     }
  122.     /**
  123.      * @see UserInterface
  124.      */
  125.     public function getSalt(): ?string
  126.     {
  127.         return null;
  128.     }
  129.     /**
  130.      * @see UserInterface
  131.      */
  132.     public function eraseCredentials()
  133.     {
  134.         // If you store any temporary, sensitive data on the user, clear it here
  135.         // $this->plainPassword = null;
  136.     }
  137.     
  138.     public function getUsername(): ?string
  139.     {
  140.         return $this->username;
  141.     }
  142.     public function setUsername(string $username): self
  143.     {
  144.         $this->username $username;
  145.         return $this;
  146.     }
  147.     public function getResetToken(): ?string
  148.     {
  149.         return $this->resetToken;
  150.     }
  151.     public function setResetToken(?string $resetToken): self
  152.     {
  153.         $this->resetToken $resetToken;
  154.         return $this;
  155.     }
  156.     public function getResetTokenExpiresAt(): ?\DateTimeInterface
  157.     {
  158.         return $this->resetTokenExpiresAt;
  159.     }
  160.     public function setResetTokenExpiresAt(?\DateTimeInterface $resetTokenExpiresAt): self
  161.     {
  162.         $this->resetTokenExpiresAt $resetTokenExpiresAt;
  163.         return $this;
  164.     }
  165.     /**
  166.      * @return Collection|Entreprise[]
  167.      */
  168.     public function getEntreprises(): Collection
  169.     {
  170.         return $this->entreprises;
  171.     }
  172.     public function addEntreprise(Entreprise $entreprise): self
  173.     {
  174.         if (!$this->entreprises->contains($entreprise)) {
  175.             $this->entreprises[] = $entreprise;
  176.         }
  177.         return $this;
  178.     }
  179.     public function removeEntreprise(Entreprise $entreprise): self
  180.     {
  181.         $this->entreprises->removeElement($entreprise);
  182.         return $this;
  183.     }
  184.     public function isProAccessRequested(): bool
  185.     {
  186.         return $this->isProAccessRequested;
  187.     }
  188.     public function setProAccessRequested(bool $isProAccessRequested): self
  189.     {
  190.         $this->isProAccessRequested $isProAccessRequested;
  191.         return $this;
  192.     }
  193. }