266 lines
5.7 KiB
PHP
266 lines
5.7 KiB
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use App\Repository\UserRepository;
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
use Doctrine\Common\Collections\Collection;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
|
|
use Symfony\Component\Security\Core\User\UserInterface;
|
|
|
|
#[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]
|
|
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)]
|
|
private ?string $picture_url = 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;
|
|
|
|
/**
|
|
* @var Collection<int, Subscriptions>
|
|
*/
|
|
#[ORM\OneToMany(targetEntity: Subscriptions::class, mappedBy: 'users')]
|
|
private Collection $subscriptions;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->subscriptions = new ArrayCollection();
|
|
}
|
|
|
|
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->picture_url;
|
|
}
|
|
|
|
public function setPictureUrl(string $picture_url): static
|
|
{
|
|
$this->picture_url = $picture_url;
|
|
|
|
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();
|
|
}
|
|
|
|
/**
|
|
* @return Collection<int, Subscriptions>
|
|
*/
|
|
public function getSubscriptions(): Collection
|
|
{
|
|
return $this->subscriptions;
|
|
}
|
|
|
|
public function addSubscription(Subscriptions $subscription): static
|
|
{
|
|
if (!$this->subscriptions->contains($subscription)) {
|
|
$this->subscriptions->add($subscription);
|
|
$subscription->setUsers($this);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function removeSubscription(Subscriptions $subscription): static
|
|
{
|
|
if ($this->subscriptions->removeElement($subscription)) {
|
|
// set the owning side to null (unless already changed)
|
|
if ($subscription->getUsers() === $this) {
|
|
$subscription->setUsers(null);
|
|
}
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
}
|