<?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\UserInterface;
|
|
|
|
#[ORM\Entity(repositoryClass: UserRepository::class)]
|
|
#[ORM\UniqueConstraint(name: 'UNIQ_IDENTIFIER_USERNAME', fields: ['username'])]
|
|
class User implements UserInterface
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\Column(length: 180)]
|
|
private ?string $username = null;
|
|
|
|
/**
|
|
* @var list<string> The user roles
|
|
*/
|
|
#[ORM\Column]
|
|
private array $roles = [];
|
|
|
|
#[ORM\Column]
|
|
private ?int $osmId = null;
|
|
|
|
/**
|
|
* @var Collection<int, Project>
|
|
*/
|
|
#[ORM\OneToMany(targetEntity: Project::class, mappedBy: 'createdBy', orphanRemoval: true)]
|
|
private Collection $projects;
|
|
|
|
/**
|
|
* @var Collection<int, Task>
|
|
*/
|
|
#[ORM\OneToMany(targetEntity: Task::class, mappedBy: 'createdBy', orphanRemoval: true)]
|
|
private Collection $tasks;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->projects = new ArrayCollection();
|
|
$this->tasks = new ArrayCollection();
|
|
}
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getUsername(): ?string
|
|
{
|
|
return $this->username;
|
|
}
|
|
|
|
public function setUsername(string $username): static
|
|
{
|
|
$this->username = $username;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* A visual identifier that represents this user.
|
|
*
|
|
* @see UserInterface
|
|
*/
|
|
public function getUserIdentifier(): string
|
|
{
|
|
return (string) $this->username;
|
|
}
|
|
|
|
/**
|
|
* @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 UserInterface
|
|
*/
|
|
public function eraseCredentials(): void
|
|
{
|
|
// If you store any temporary, sensitive data on the user, clear it here
|
|
// $this->plainPassword = null;
|
|
}
|
|
|
|
public function getOsmId(): ?int
|
|
{
|
|
return $this->osmId;
|
|
}
|
|
|
|
public function setOsmId(int $osmId): static
|
|
{
|
|
$this->osmId = $osmId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return Collection<int, Project>
|
|
*/
|
|
public function getProjects(): Collection
|
|
{
|
|
return $this->projects;
|
|
}
|
|
|
|
public function addProject(Project $project): static
|
|
{
|
|
if (!$this->projects->contains($project)) {
|
|
$this->projects->add($project);
|
|
$project->setCreatedBy($this);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function removeProject(Project $project): static
|
|
{
|
|
if ($this->projects->removeElement($project)) {
|
|
// set the owning side to null (unless already changed)
|
|
if ($project->getCreatedBy() === $this) {
|
|
$project->setCreatedBy(null);
|
|
}
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return Collection<int, Task>
|
|
*/
|
|
public function getTasks(): Collection
|
|
{
|
|
return $this->tasks;
|
|
}
|
|
|
|
public function addTask(Task $task): static
|
|
{
|
|
if (!$this->tasks->contains($task)) {
|
|
$this->tasks->add($task);
|
|
$task->setCreatedBy($this);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function removeTask(Task $task): static
|
|
{
|
|
if ($this->tasks->removeElement($task)) {
|
|
// set the owning side to null (unless already changed)
|
|
if ($task->getCreatedBy() === $this) {
|
|
$task->setCreatedBy(null);
|
|
}
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
}
|