src/Entity/AuthUser.php line 11

Open in your IDE?
  1. <?php
  2. namespace Acme\SudcmsBundle\Entity;
  3. use Doctrine\Common\Collections\Collection;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Security\Core\User\UserInterface;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. #[ORM\Entity(repositoryClass'Acme\SudcmsBundle\Repository\AuthUserRepository')]
  8. class AuthUser implements UserInterface\Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column(type'integer')]
  12.     private $id;
  13.     #[ORM\Column(type'string'length180uniquetrue)]
  14.     #[Assert\Email]
  15.     private $email;
  16.     #[ORM\Column(type'json')]
  17.     private $roles = [];
  18.     /**
  19.      * @var string The hashed password
  20.      */
  21.     #[ORM\Column(type'string')]
  22.     private $password;
  23.     #[ORM\Column(type'datetime')]
  24.     private $creationDatetime;
  25.     #[ORM\Column(type'string'length100nullabletrue)]
  26.     private $firstName;
  27.     #[ORM\Column(type'string'length100nullabletrue)]
  28.     private $lastName;
  29.     #[ORM\Column(type'string'length50nullabletrue)]
  30.     private $phone;
  31.     #[ORM\Column(type'string'length50nullabletrue)]
  32.     private $mobile;
  33.     #[ORM\OneToMany(targetEntityEcoCustomers::class, mappedBy'authUserId'orphanRemovaltrue)]
  34.     private $customer;
  35.     private $encoder;
  36.     #[ORM\Column(type'string'length255nullabletrue)]
  37.     private $reset_token;
  38.     #[ORM\Column(type'boolean'nullabletrue)]
  39.     private $isArchive 0;
  40.     public function getId(): ?int {
  41.         return $this->id;
  42.     }
  43.     public function getEmail(): ?string {
  44.         return $this->email;
  45.     }
  46.     public function setEmail(string $email): self {
  47.         $this->email $email;
  48.         return $this;
  49.     }
  50.     /**
  51.      * A visual identifier that represents this user.
  52.      *
  53.      * @see UserInterface
  54.      */
  55.     public function getUsername(): string {
  56.         return (string) $this->email;
  57.     }
  58.     /**
  59.      * @see UserInterface
  60.      */
  61.     public function getRoles(): array {
  62.         $roles $this->roles;
  63.         // guarantee every user at least has ROLE_USER
  64.         $roles[] = 'ROLE_USER';
  65.         return array_unique($roles);
  66.     }
  67.     public function setRoles(array $roles): self {
  68.         if (!in_array('ROLE_USER'$roles))
  69.             $roles[] = 'ROLE_USER';
  70.         $this->roles $roles;
  71.         return $this;
  72.     }
  73.     /**
  74.      * @see UserInterface
  75.      */
  76.     public function getPassword(): string {
  77.         return (string) $this->password;
  78.     }
  79.     public function setPassword($password): self {
  80.         if ($password != "" && $password != null) {
  81.             $this->password $password;
  82.         } else {
  83.             $this->password $this->getPassword();
  84.         }
  85.         return $this;
  86.     }
  87.     /**
  88.      * @see UserInterface
  89.      */
  90.     public function getSalt() {
  91.         // not needed when using the "bcrypt" algorithm in security.yaml
  92.     }
  93.     /**
  94.      * @see UserInterface
  95.      */
  96.     public function eraseCredentials() {
  97.         // If you store any temporary, sensitive data on the user, clear it here
  98.         // $this->plainPassword = null;
  99.     }
  100.     public function getCreationDatetime(): ?\DateTimeInterface {
  101.         return $this->creationDatetime;
  102.     }
  103.     public function setCreationDatetime(\DateTimeInterface $creationDatetime): self {
  104.         $this->creationDatetime $creationDatetime;
  105.         return $this;
  106.     }
  107.     public function getFirstName(): ?string {
  108.         return $this->firstName;
  109.     }
  110.     public function setFirstName(?string $firstName): self {
  111.         $this->firstName $firstName;
  112.         return $this;
  113.     }
  114.     public function getLastName(): ?string {
  115.         return $this->lastName;
  116.     }
  117.     public function setLastName(?string $lastName): self {
  118.         $this->lastName $lastName;
  119.         return $this;
  120.     }
  121.     public function getPhone(): ?string {
  122.         return $this->phone;
  123.     }
  124.     public function setPhone(?string $phone): self {
  125.         $this->phone $phone;
  126.         return $this;
  127.     }
  128.     public function getMobile(): ?string {
  129.         return $this->mobile;
  130.     }
  131.     public function setMobile(?string $mobile): self {
  132.         $this->mobile $mobile;
  133.         return $this;
  134.     }
  135.     public function getResetToken(): ?string {
  136.         return $this->reset_token;
  137.     }
  138.     public function setResetToken(?string $reset_token): self {
  139.         $this->reset_token $reset_token;
  140.         return $this;
  141.     }
  142.     /**
  143.      * @return Collection<int, EcoCustomers>
  144.      */
  145.     public function getCustomer(): Collection {
  146.         return $this->customer;
  147.     }
  148.     public function addCustomer(EcoCustomers $customer): self {
  149.         if (!$this->customer->contains($customer)) {
  150.             $this->customer[] = $customer;
  151.             $customer->setAuthUserId($this);
  152.         }
  153.         return $this;
  154.     }
  155.     public function removeCustomer(EcoCustomers $customer): self {
  156.         if ($this->customer->removeElement($customer)) {
  157.             // set the owning side to null (unless already changed)
  158.             if ($customer->getAuthUserId() === $this) {
  159.                 $customer->setAuthUserId(null);
  160.             }
  161.         }
  162.         return $this;
  163.     }
  164.     public function getIsArchive(): ?bool {
  165.         return $this->isArchive;
  166.     }
  167.     public function setIsArchive(?bool $isArchive): self {
  168.         $this->isArchive $isArchive;
  169.         return $this;
  170.     }
  171. }