<?php
namespace Acme\SudcmsBundle\Entity;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Security\Core\User\UserInterface;
use Symfony\Component\Validator\Constraints as Assert;
#[ORM\Entity(repositoryClass: 'Acme\SudcmsBundle\Repository\AuthUserRepository')]
class AuthUser implements UserInterface, \Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface {
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'string', length: 180, unique: true)]
#[Assert\Email]
private $email;
#[ORM\Column(type: 'json')]
private $roles = [];
/**
* @var string The hashed password
*/
#[ORM\Column(type: 'string')]
private $password;
#[ORM\Column(type: 'datetime')]
private $creationDatetime;
#[ORM\Column(type: 'string', length: 100, nullable: true)]
private $firstName;
#[ORM\Column(type: 'string', length: 100, nullable: true)]
private $lastName;
#[ORM\Column(type: 'string', length: 50, nullable: true)]
private $phone;
#[ORM\Column(type: 'string', length: 50, nullable: true)]
private $mobile;
#[ORM\OneToMany(targetEntity: EcoCustomers::class, mappedBy: 'authUserId', orphanRemoval: true)]
private $customer;
private $encoder;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private $reset_token;
#[ORM\Column(type: 'boolean', nullable: true)]
private $isArchive = 0;
public function getId(): ?int {
return $this->id;
}
public function getEmail(): ?string {
return $this->email;
}
public function setEmail(string $email): self {
$this->email = $email;
return $this;
}
/**
* A visual identifier that represents this user.
*
* @see UserInterface
*/
public function getUsername(): string {
return (string) $this->email;
}
/**
* @see UserInterface
*/
public function getRoles(): array {
$roles = $this->roles;
// guarantee every user at least has ROLE_USER
$roles[] = 'ROLE_USER';
return array_unique($roles);
}
public function setRoles(array $roles): self {
if (!in_array('ROLE_USER', $roles))
$roles[] = 'ROLE_USER';
$this->roles = $roles;
return $this;
}
/**
* @see UserInterface
*/
public function getPassword(): string {
return (string) $this->password;
}
public function setPassword($password): self {
if ($password != "" && $password != null) {
$this->password = $password;
} else {
$this->password = $this->getPassword();
}
return $this;
}
/**
* @see UserInterface
*/
public function getSalt() {
// not needed when using the "bcrypt" algorithm in security.yaml
}
/**
* @see UserInterface
*/
public function eraseCredentials() {
// If you store any temporary, sensitive data on the user, clear it here
// $this->plainPassword = null;
}
public function getCreationDatetime(): ?\DateTimeInterface {
return $this->creationDatetime;
}
public function setCreationDatetime(\DateTimeInterface $creationDatetime): self {
$this->creationDatetime = $creationDatetime;
return $this;
}
public function getFirstName(): ?string {
return $this->firstName;
}
public function setFirstName(?string $firstName): self {
$this->firstName = $firstName;
return $this;
}
public function getLastName(): ?string {
return $this->lastName;
}
public function setLastName(?string $lastName): self {
$this->lastName = $lastName;
return $this;
}
public function getPhone(): ?string {
return $this->phone;
}
public function setPhone(?string $phone): self {
$this->phone = $phone;
return $this;
}
public function getMobile(): ?string {
return $this->mobile;
}
public function setMobile(?string $mobile): self {
$this->mobile = $mobile;
return $this;
}
public function getResetToken(): ?string {
return $this->reset_token;
}
public function setResetToken(?string $reset_token): self {
$this->reset_token = $reset_token;
return $this;
}
/**
* @return Collection<int, EcoCustomers>
*/
public function getCustomer(): Collection {
return $this->customer;
}
public function addCustomer(EcoCustomers $customer): self {
if (!$this->customer->contains($customer)) {
$this->customer[] = $customer;
$customer->setAuthUserId($this);
}
return $this;
}
public function removeCustomer(EcoCustomers $customer): self {
if ($this->customer->removeElement($customer)) {
// set the owning side to null (unless already changed)
if ($customer->getAuthUserId() === $this) {
$customer->setAuthUserId(null);
}
}
return $this;
}
public function getIsArchive(): ?bool {
return $this->isArchive;
}
public function setIsArchive(?bool $isArchive): self {
$this->isArchive = $isArchive;
return $this;
}
}