296 lines
6.3 KiB
PHP
296 lines
6.3 KiB
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use App\Repository\UserRepository;
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
use Doctrine\Common\Collections\Collection;
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
|
|
use Symfony\Component\Security\Core\User\UserInterface;
|
|
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
|
|
|
|
#[ORM\Entity(repositoryClass: UserRepository::class)]
|
|
#[ORM\Table(name: '`user`')]
|
|
#[ORM\UniqueConstraint(name: 'UNIQ_IDENTIFIER_EMAIL', fields: ['email'])]
|
|
class User implements UserInterface, PasswordAuthenticatedUserInterface
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\Column(length: 180)]
|
|
private ?string $email = null;
|
|
|
|
/**
|
|
* @var list<string> The user roles
|
|
*/
|
|
#[ORM\Column]
|
|
private array $roles = [];
|
|
|
|
/**
|
|
* @var string The hashed password
|
|
*/
|
|
#[ORM\Column(nullable: true)]
|
|
private ?string $password = null;
|
|
|
|
#[ORM\Column(length: 255)]
|
|
private ?string $name = null;
|
|
|
|
#[ORM\Column(length: 255)]
|
|
private ?string $surname = null;
|
|
|
|
#[ORM\Column(options: ['default' => 'CURRENT_TIMESTAMP'])]
|
|
private ?\DateTimeImmutable $createdAt = null;
|
|
|
|
#[ORM\Column(length: 255, nullable: true)]
|
|
private ?string $pictureUrl = null;
|
|
|
|
#[ORM\Column(options: ['default' => 'CURRENT_TIMESTAMP'])]
|
|
private ?\DateTimeImmutable $modifiedAt = null;
|
|
|
|
#[ORM\Column(options: ['default' => true])]
|
|
private ?bool $isActive = null;
|
|
|
|
#[ORM\Column(options: ['default' => false])]
|
|
private ?bool $isDeleted = null;
|
|
|
|
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
|
|
private ?\DateTime $lastConnection = null;
|
|
|
|
#[ORM\Column(length: 20, nullable: true)]
|
|
private ?string $phoneNumber = null;
|
|
|
|
#[ORM\Column(length: 255, nullable: true)]
|
|
private ?string $passwordToken = null;
|
|
|
|
#[ORM\Column(nullable: true)]
|
|
private ?\DateTimeImmutable $tokenExpiry = null;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->createdAt = new \DateTimeImmutable();
|
|
$this->modifiedAt = new \DateTimeImmutable();
|
|
$this->isActive = true;
|
|
$this->isDeleted = false;
|
|
}
|
|
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getEmail(): ?string
|
|
{
|
|
return $this->email;
|
|
}
|
|
|
|
public function setEmail(string $email): static
|
|
{
|
|
$this->email = $email;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* A visual identifier that represents this user.
|
|
*
|
|
* @see UserInterface
|
|
*/
|
|
public function getUserIdentifier(): string
|
|
{
|
|
return (string) $this->email;
|
|
}
|
|
|
|
/**
|
|
* @see UserInterface
|
|
*
|
|
* @return list<string>
|
|
*/
|
|
public function getRoles(): array
|
|
{
|
|
$roles = $this->roles;
|
|
// guarantee every user at least has ROLE_USER
|
|
$roles[] = 'ROLE_USER';
|
|
|
|
return array_unique($roles);
|
|
}
|
|
|
|
/**
|
|
* @param list<string> $roles
|
|
*/
|
|
public function setRoles(array $roles): static
|
|
{
|
|
$this->roles = $roles;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @see PasswordAuthenticatedUserInterface
|
|
*/
|
|
public function getPassword(): ?string
|
|
{
|
|
return $this->password;
|
|
}
|
|
|
|
public function setPassword(string $password): static
|
|
{
|
|
$this->password = $password;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @see UserInterface
|
|
*/
|
|
public function eraseCredentials(): void
|
|
{
|
|
// If you store any temporary, sensitive data on the user, clear it here
|
|
// $this->plainPassword = null;
|
|
}
|
|
|
|
public function getName(): ?string
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
public function setName(string $name): static
|
|
{
|
|
$this->name = $name;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getSurname(): ?string
|
|
{
|
|
return $this->surname;
|
|
}
|
|
|
|
public function setSurname(string $surname): static
|
|
{
|
|
$this->surname = $surname;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getCreatedAt(): ?\DateTimeImmutable
|
|
{
|
|
return $this->createdAt;
|
|
}
|
|
|
|
public function setCreatedAt(\DateTimeImmutable $createdAt): static
|
|
{
|
|
$this->createdAt = $createdAt;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getPictureUrl(): ?string
|
|
{
|
|
return $this->pictureUrl;
|
|
}
|
|
|
|
public function setPictureUrl(string $pictureUrl): static
|
|
{
|
|
$this->pictureUrl = $pictureUrl;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getModifiedAt(): ?\DateTimeImmutable
|
|
{
|
|
return $this->modifiedAt;
|
|
}
|
|
|
|
public function setModifiedAt(\DateTimeImmutable $modifiedAt): static
|
|
{
|
|
$this->modifiedAt = $modifiedAt;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function isActive(): ?bool
|
|
{
|
|
return $this->isActive;
|
|
}
|
|
|
|
public function setIsActive(bool $isActive): static
|
|
{
|
|
$this->isActive = $isActive;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function isDeleted(): ?bool
|
|
{
|
|
return $this->isDeleted;
|
|
}
|
|
|
|
public function setIsDeleted(bool $isDeleted): static
|
|
{
|
|
$this->isDeleted = $isDeleted;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Returns a string that can be used as a user identifier for the OAuth2 server.
|
|
*/
|
|
public function getOAuth2Identifier(): string
|
|
{
|
|
return (string) $this->getId();
|
|
}
|
|
|
|
public function getLastConnection(): ?\DateTime
|
|
{
|
|
return $this->lastConnection;
|
|
}
|
|
|
|
public function setLastConnection(?\DateTime $lastConnection): static
|
|
{
|
|
$this->lastConnection = $lastConnection;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getPhoneNumber(): ?string
|
|
{
|
|
return $this->phoneNumber;
|
|
}
|
|
|
|
public function setPhoneNumber(?string $phoneNumber): static
|
|
{
|
|
$this->phoneNumber = $phoneNumber;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getPasswordToken(): ?string
|
|
{
|
|
return $this->passwordToken;
|
|
}
|
|
|
|
public function setPasswordToken(?string $passwordToken): static
|
|
{
|
|
$this->passwordToken = $passwordToken;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getTokenExpiry(): ?\DateTimeImmutable
|
|
{
|
|
return $this->tokenExpiry;
|
|
}
|
|
|
|
public function setTokenExpiry(?\DateTimeImmutable $tokenExpiry): static
|
|
{
|
|
$this->tokenExpiry = $tokenExpiry;
|
|
|
|
return $this;
|
|
}
|
|
}
|