src/Entity/UserEntity.php line 17

  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  5. use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
  6. use Symfony\Component\Security\Core\User\UserInterface;
  7. use Doctrine\Common\Collections\ArrayCollection;
  8. use Doctrine\Common\Collections\Collection;
  9. use App\Repository\UserRepository;
  10. /**
  11.  * @ORM\Entity(repositoryClass=UserRepository::class)
  12.  * @UniqueEntity(fields={"username"}, message="There is already an account with this username")
  13.  */
  14. class UserEntity implements UserInterfacePasswordAuthenticatedUserInterface
  15. {
  16.     /**
  17.      * @ORM\Id
  18.      * @ORM\GeneratedValue
  19.      * @ORM\Column(type="integer")
  20.      */
  21.     private ?int $id null;
  22.     /**
  23.      * @ORM\Column(type="string", length=180, unique=true)
  24.      */
  25.     private ?string $username null;
  26.     /**
  27.      * @ORM\Column(type="string", length=180, unique=true)
  28.      */
  29.     private ?string $email null;
  30.     /**
  31.      * @ORM\Column(type="boolean")
  32.      */
  33.     private bool $active false;
  34.     /**
  35.      * @ORM\Column(type="string", length=32, nullable=true)
  36.      */
  37.     private ?string $md5User null;
  38.     /**
  39.      * @ORM\Column(type="json")
  40.      */
  41.     private array $roles = [];
  42.     /**
  43.      * @var string The hashed password
  44.      * @ORM\Column(type="string")
  45.      */
  46.     private ?string $password null;
  47.     /**
  48.      * @ORM\OneToMany(targetEntity=MessageEntity::class, mappedBy="user")
  49.      */
  50.     private $messages;
  51.     public function __construct()
  52.     {
  53.         $this->messages = new ArrayCollection();
  54.     }
  55.     public function getMessages(): Collection
  56.     {
  57.         return $this->messages;
  58.     }
  59.     public function getId(): ?int
  60.     {
  61.         return $this->id;
  62.     }
  63.     public function getUsername(): ?string
  64.     {
  65.         return $this->username;
  66.     }
  67.     public function setUsername(string $username): self
  68.     {
  69.         $this->username $username;
  70.         return $this;
  71.     }
  72.     public function getEmail(): ?string
  73.     {
  74.         return $this->email;
  75.     }
  76.     public function setEmail(string $email): self
  77.     {
  78.         $this->email $email;
  79.         return $this;
  80.     }
  81.     public function getActive(): ?bool
  82.     {
  83.         return $this->active;
  84.     }
  85.     public function setActive(bool $active): self
  86.     {
  87.         $this->active $active;
  88.         return $this;
  89.     }
  90.     public function getMd5User(): ?string
  91.     {
  92.         return $this->md5User;
  93.     }
  94.     public function setMd5User(string $md5User): self
  95.     {
  96.         $this->md5User $md5User;
  97.         return $this;
  98.     }
  99.     
  100.     /**
  101.      * A visual identifier that represents this user.
  102.      *
  103.      * @see UserInterface
  104.      */
  105.     public function getUserIdentifier(): string
  106.     {
  107.         return (string) $this->username;
  108.     }
  109.     /**
  110.      * @see UserInterface
  111.      */
  112.     public function getRoles(): array
  113.     {
  114.         $roles $this->roles;
  115.         // guarantee every user at least has ROLE_USER
  116.         $roles[] = 'ROLE_USER';
  117.         return array_unique($roles);
  118.     }
  119.     public function setRoles(array $roles): self
  120.     {
  121.         $this->roles $roles;
  122.         return $this;
  123.     }
  124.     /**
  125.      * @see PasswordAuthenticatedUserInterface
  126.      */
  127.     public function getPassword(): string
  128.     {
  129.         return $this->password;
  130.     }
  131.     public function setPassword(string $password): self
  132.     {
  133.         $this->password $password;
  134.         return $this;
  135.     }
  136.     /**
  137.      * @see UserInterface
  138.      */
  139.     public function eraseCredentials(): void
  140.     {
  141.         // If you store any temporary, sensitive data on the user, clear it here
  142.         // $this->plainPassword = null;
  143.     }
  144. }