src/Entity/User.php line 16

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\DBAL\Types\Types;
  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. #[ORM\Entity(repositoryClassUserRepository::class)]
  12. #[UniqueEntity(fields: ['email'], message'There is already an account with this email')]
  13. class User implements UserInterfacePasswordAuthenticatedUserInterface
  14. {
  15.     #[ORM\Id]
  16.     #[ORM\GeneratedValue]
  17.     #[ORM\Column]
  18.     private ?int $id null;
  19.     #[ORM\Column(length180uniquetrue)]
  20.     private ?string $email null;
  21.     #[ORM\Column]
  22.     private array $roles = [];
  23.     /**
  24.      * @var string The hashed password
  25.      */
  26.     #[ORM\Column]
  27.     private ?string $password null;
  28.     #[ORM\ManyToOne(inversedBy'users')]
  29.     private ?Level $level null;
  30.     #[ORM\OneToMany(targetEntityReview::class, mappedBy'user')]
  31.     private Collection $reviews;
  32.     #[ORM\OneToOne(mappedBy'user'cascade: ['persist''remove'])]
  33.     private ?Wallet $wallet null;
  34.     #[ORM\OneToOne(mappedBy'user'cascade: ['persist''remove'])]
  35.     private ?Referral $referral null;
  36.     #[ORM\ManyToOne(inversedBy'users')]
  37.     private ?Referral $referredby null;
  38.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  39.     private ?\DateTimeInterface $created null;
  40.     #[ORM\OneToMany(targetEntityDeposit::class, mappedBy'user')]
  41.     private Collection $deposits;
  42.     #[ORM\OneToMany(targetEntitySpecial::class, mappedBy'user')]
  43.     private Collection $specials;
  44.     public function __construct()
  45.     {
  46.         $this->reviews = new ArrayCollection();
  47.         $this->created = new \DateTime();
  48.         $this->deposits = new ArrayCollection();
  49.         $this->specials = new ArrayCollection();
  50.     }
  51.     public function getId(): ?int
  52.     {
  53.         return $this->id;
  54.     }
  55.     public function getEmail(): ?string
  56.     {
  57.         return $this->email;
  58.     }
  59.     public function setEmail(string $email): static
  60.     {
  61.         $this->email $email;
  62.         return $this;
  63.     }
  64.     /**
  65.      * A visual identifier that represents this user.
  66.      *
  67.      * @see UserInterface
  68.      */
  69.     public function getUserIdentifier(): string
  70.     {
  71.         return (string) $this->email;
  72.     }
  73.     /**
  74.      * @deprecated since Symfony 5.3, use getUserIdentifier instead
  75.      */
  76.     public function getUsername(): string
  77.     {
  78.         return (string) $this->email;
  79.     }
  80.     /**
  81.      * @see UserInterface
  82.      */
  83.     public function getRoles(): array
  84.     {
  85.         $roles $this->roles;
  86.         // guarantee every user at least has ROLE_USER
  87.         $roles[] = 'ROLE_USER';
  88.         return array_unique($roles);
  89.     }
  90.     public function setRoles(array $roles): static
  91.     {
  92.         $this->roles $roles;
  93.         return $this;
  94.     }
  95.     /**
  96.      * @see PasswordAuthenticatedUserInterface
  97.      */
  98.     public function getPassword(): string
  99.     {
  100.         return $this->password;
  101.     }
  102.     public function setPassword(string $password): static
  103.     {
  104.         $this->password $password;
  105.         return $this;
  106.     }
  107.     /**
  108.      * Returning a salt is only needed, if you are not using a modern
  109.      * hashing algorithm (e.g. bcrypt or sodium) in your security.yaml.
  110.      *
  111.      * @see UserInterface
  112.      */
  113.     public function getSalt(): ?string
  114.     {
  115.         return null;
  116.     }
  117.     /**
  118.      * @see UserInterface
  119.      */
  120.     public function eraseCredentials(): void
  121.     {
  122.         // If you store any temporary, sensitive data on the user, clear it here
  123.         // $this->plainPassword = null;
  124.     }
  125.     public function getLevel(): ?Level
  126.     {
  127.         return $this->level;
  128.     }
  129.     public function setLevel(?Level $level): static
  130.     {
  131.         $this->level $level;
  132.         return $this;
  133.     }
  134.     /**
  135.      * @return Collection<int, Review>
  136.      */
  137.     public function getReviews(): Collection
  138.     {
  139.         return $this->reviews;
  140.     }
  141.     public function addReview(Review $review): static
  142.     {
  143.         if (!$this->reviews->contains($review)) {
  144.             $this->reviews->add($review);
  145.             $review->setUser($this);
  146.         }
  147.         return $this;
  148.     }
  149.     public function removeReview(Review $review): static
  150.     {
  151.         if ($this->reviews->removeElement($review)) {
  152.             // set the owning side to null (unless already changed)
  153.             if ($review->getUser() === $this) {
  154.                 $review->setUser(null);
  155.             }
  156.         }
  157.         return $this;
  158.     }
  159.     function __toString()
  160.     {
  161.         return $this->getEmail();
  162.     }
  163.     public function getWallet(): ?Wallet
  164.     {
  165.         return $this->wallet;
  166.     }
  167.     public function setWallet(?Wallet $wallet): static
  168.     {
  169.         // unset the owning side of the relation if necessary
  170.         if ($wallet === null && $this->wallet !== null) {
  171.             $this->wallet->setUser(null);
  172.         }
  173.         // set the owning side of the relation if necessary
  174.         if ($wallet !== null && $wallet->getUser() !== $this) {
  175.             $wallet->setUser($this);
  176.         }
  177.         $this->wallet $wallet;
  178.         return $this;
  179.     }
  180.     public function getReferral(): ?Referral
  181.     {
  182.         return $this->referral;
  183.     }
  184.     public function setReferral(?Referral $referral): static
  185.     {
  186.         // unset the owning side of the relation if necessary
  187.         if ($referral === null && $this->referral !== null) {
  188.             $this->referral->setUser(null);
  189.         }
  190.         // set the owning side of the relation if necessary
  191.         if ($referral !== null && $referral->getUser() !== $this) {
  192.             $referral->setUser($this);
  193.         }
  194.         $this->referral $referral;
  195.         return $this;
  196.     }
  197.     public function getReferredby(): ?Referral
  198.     {
  199.         return $this->referredby;
  200.     }
  201.     public function setReferredby(?Referral $referredby): static
  202.     {
  203.         $this->referredby $referredby;
  204.         return $this;
  205.     }
  206.     public function getCreated(): ?\DateTimeInterface
  207.     {
  208.         return $this->created;
  209.     }
  210.     public function setCreated(?\DateTimeInterface $created): static
  211.     {
  212.         $this->created $created;
  213.         return $this;
  214.     }
  215.     /**
  216.      * @return Collection<int, Deposit>
  217.      */
  218.     public function getDeposits(): Collection
  219.     {
  220.         return $this->deposits;
  221.     }
  222.     public function addDeposit(Deposit $deposit): static
  223.     {
  224.         if (!$this->deposits->contains($deposit)) {
  225.             $this->deposits->add($deposit);
  226.             $deposit->setUser($this);
  227.         }
  228.         return $this;
  229.     }
  230.     public function removeDeposit(Deposit $deposit): static
  231.     {
  232.         if ($this->deposits->removeElement($deposit)) {
  233.             // set the owning side to null (unless already changed)
  234.             if ($deposit->getUser() === $this) {
  235.                 $deposit->setUser(null);
  236.             }
  237.         }
  238.         return $this;
  239.     }
  240.     /**
  241.      * @return Collection<int, Special>
  242.      */
  243.     public function getSpecials(): Collection
  244.     {
  245.         return $this->specials;
  246.     }
  247.     public function addSpecial(Special $special): static
  248.     {
  249.         if (!$this->specials->contains($special)) {
  250.             $this->specials->add($special);
  251.             $special->setUser($this);
  252.         }
  253.         return $this;
  254.     }
  255.     public function removeSpecial(Special $special): static
  256.     {
  257.         if ($this->specials->removeElement($special)) {
  258.             // set the owning side to null (unless already changed)
  259.             if ($special->getUser() === $this) {
  260.                 $special->setUser(null);
  261.             }
  262.         }
  263.         return $this;
  264.     }
  265. }