src/Entity/User.php line 20

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\Restaurante;
  4. use App\Repository\UserRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  9. use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
  10. use Symfony\Component\Security\Core\User\UserInterface;
  11. /**
  12.  * @UniqueEntity(fields="email", message="Ya existe una cuenta con ese email")
  13.  * 
  14.  * @ORM\Entity(repositoryClass=UserRepository::class)
  15.  * 
  16.  */
  17. class User implements UserInterfacePasswordAuthenticatedUserInterface {
  18.     
  19.     /**
  20.      * @ORM\Id    
  21.      * @ORM\GeneratedValue
  22.      * @ORM\Column(type="integer")  
  23.      */
  24.     private $id;
  25.      /**
  26.      * @ORM\Column(type= "string", length=180, unique=true)
  27.      */
  28.     private $email;
  29.     /**
  30.      * @ORM\Column(type="json")
  31.      */
  32.     private $roles = [];
  33.     /**
  34.      * @ORM\Column(type="string")
  35.      */
  36.     private $password;
  37.     /**
  38.      * @ORM\Column(type="string", length=255, nullable=true)
  39.      */
  40.     private $googleID;
  41.     /**
  42.      * @ORM\Column(type="string", length=255, nullable=true)
  43.      */
  44.     private $googleAccessToken;
  45.     /**
  46.      * @ORM\OneToMany(targetEntity="Restaurante", mappedBy="user")
  47.      */
  48.     protected $restaurantes;
  49.     /**
  50.      * @ORM\Column(type="boolean", nullable=true)
  51.      */
  52.     private $isVerified false;
  53.     public function __construct() {
  54.         $this->restaurantes = new ArrayCollection();
  55.     }
  56.     public function getId(): ?int {
  57.         return $this->id;
  58.     }
  59.     public function setId(?int $id): self
  60.     {
  61.         $this->id $id;
  62.         return $this;
  63.     }
  64.     public function getEmail(): ?string {
  65.         return $this->email;
  66.     }
  67.     public function setEmail(string $email): self {
  68.         $this->email $email;
  69.         return $this;
  70.     }
  71.     /**
  72.      * A visual identifier that represents this user.
  73.      *
  74.      * @see UserInterface
  75.      */
  76.     public function getUserIdentifier(): string {
  77.         return (string) $this->email;
  78.     }
  79.     /**
  80.      * @deprecated since Symfony 5.3, use getUserIdentifier instead
  81.      */
  82.     public function getUsername(): string {
  83.         return (string) $this->email;
  84.     }
  85.     /**
  86.      * @see UserInterface
  87.      */
  88.     public function getRoles(): array {
  89.         $roles $this->roles;
  90.         return array_unique($roles);
  91.     }
  92.     public function setRoles(array $roles): self {
  93.         $this->roles $roles;
  94.         return $this;
  95.     }
  96.     /**
  97.      * @see PasswordAuthenticatedUserInterface
  98.      */
  99.     public function getPassword(): string {
  100.         return $this->password;
  101.     }
  102.     public function setPassword(string $password): self {
  103.         $this->password $password;
  104.         return $this;
  105.     }
  106.     /**
  107.      * Returning a salt is only needed, if you are not using a modern
  108.      * hashing algorithm (e.g. bcrypt or sodium) in your security.yaml.
  109.      *
  110.      * @see UserInterface
  111.      */
  112.     public function getSalt(): ?string {
  113.         return null;
  114.     }
  115.     /**
  116.      * @see UserInterface
  117.      */
  118.     public function eraseCredentials() {
  119.         // If you store any temporary, sensitive data on the user, clear it here
  120.         // $this->plainPassword = null;
  121.     }
  122.     public function setIsVerified(bool $isVerified): self {
  123.         $this->isVerified $isVerified;
  124.         return $this;
  125.     }
  126.     public function __toString(): string {
  127.         return $this->email;
  128.     }
  129.     public function getIsVerified(): ?bool {
  130.         return $this->isVerified;
  131.     }
  132.     /**
  133.      * @return Collection|Restaurante[]
  134.      */
  135.     public function getRestaurantes(): Collection {
  136.         return $this->restaurantes;
  137.     }
  138.     public function addRestaurante(Restaurante $restaurante): self {
  139.         if (!$this->restaurantes->contains($restaurante)) {
  140.             $this->restaurantes[] = $restaurante;
  141.             $restaurante->setUser($this);
  142.         }
  143.         return $this;
  144.     }
  145.     public function removeRestaurante(Restaurante $restaurante): self {
  146.         if ($this->restaurantes->removeElement($restaurante)) {
  147.             // set the owning side to null (unless already changed)
  148.             if ($restaurante->getUser() === $this) {
  149.                 $restaurante->setUser(null);
  150.             }
  151.         }
  152.         return $this;
  153.     }
  154.     public function getGoogleID(): ?string
  155.     {
  156.         return $this->googleID;
  157.     }
  158.     public function setGoogleID(?string $googleID): self
  159.     {
  160.         $this->googleID $googleID;
  161.         return $this;
  162.     }
  163.     public function getGoogleAccessToken(): ?string
  164.     {
  165.         return $this->googleAccessToken;
  166.     }
  167.     public function setGoogleAccessToken(?string $googleAccessToken): self
  168.     {
  169.         $this->googleAccessToken $googleAccessToken;
  170.         return $this;
  171.     }
  172.     public function isIsVerified(): ?bool
  173.     {
  174.         return $this->isVerified;
  175.     }
  176. }