<?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`')]
class User implements UserInterface, PasswordAuthenticatedUserInterface
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 180, unique: true)]
private ?string $email = null;
#[ORM\Column]
private array $roles = [];
#[ORM\Column]
private ?string $password = null;
#[ORM\Column(length: 10)]
private string $lang = 'fr';
#[ORM\Column(length: 255)]
private ?string $nom = null;
#[ORM\Column(length: 255)]
private ?string $prenom = null;
#[ORM\OneToMany(mappedBy: 'user', targetEntity: UserProject::class, cascade: ['persist', 'remove'])]
private Collection $userProjects;
public function __construct()
{
$this->userProjects = 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;
}
/**
* @deprecated since Symfony 5.3, use getUserIdentifier instead
*/
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): 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;
}
/**
* Returning a salt is only needed, if you are not using a modern
* hashing algorithm (e.g. bcrypt or sodium) in your security.yaml.
*
* @see UserInterface
*/
public function getSalt(): ?string
{
return null;
}
/**
* @see UserInterface
*/
public function eraseCredentials(): void
{
// If you store any temporary, sensitive data on the user, clear it here
// $this->plainPassword = null;
}
public function setLang(string $lang): static
{
$this->lang = $lang;
return $this;
}
public function getLang(): string
{
return $this->lang;
}
public function getUserProjects(): Collection
{
return $this->userProjects;
}
public function addProject(Project $project, array $role): self
{
foreach ($this->userProjects as $userProject) {
if ($userProject->getProject() === $project) {
return $this;
}
}
$userProject = new UserProject($this, $project, $role);
$this->userProjects->add($userProject);
return $this;
}
public function removeProject(Project $project): self
{
foreach ($this->userProjects as $userProject) {
if ($userProject->getProject() === $project) {
$this->userProjects->removeElement($userProject);
}
}
return $this;
}
public function __toString(): string
{
return $this->getUserIdentifier();
}
public function addUserProject(UserProject $userProject): static
{
if (!$this->userProjects->contains($userProject)) {
$this->userProjects->add($userProject);
$userProject->setUser($this);
}
return $this;
}
public function removeUserProject(UserProject $userProject): static
{
if ($this->userProjects->removeElement($userProject)) {
// set the owning side to null (unless already changed)
if ($userProject->getUser() === $this) {
$userProject->setUser(null);
}
}
return $this;
}
public function getNom(): ?string
{
return $this->nom;
}
public function setNom(string $nom): static
{
$this->nom = $nom;
return $this;
}
public function getPrenom(): ?string
{
return $this->prenom;
}
public function setPrenom(string $prenom): static
{
$this->prenom = $prenom;
return $this;
}
}