362 lines
8.0 KiB
PHP
362 lines
8.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Entity;
|
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
use Doctrine\Common\Collections\Collection;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use FOS\UserBundle\Model\User as BaseUser;
|
|
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
|
|
use Symfony\Component\Security\Core\User\UserInterface;
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
|
|
/**
|
|
* @ORM\Entity(repositoryClass="App\Repository\UserRepository")
|
|
* @ORM\Table(name="kimai2_users",
|
|
* uniqueConstraints={
|
|
* @ORM\UniqueConstraint(columns={"username"}),
|
|
* @ORM\UniqueConstraint(columns={"email"})
|
|
* }
|
|
* )
|
|
* @UniqueEntity("username")
|
|
* @UniqueEntity("email")
|
|
*/
|
|
class User extends BaseUser implements UserInterface
|
|
{
|
|
public const ROLE_USER = 'ROLE_USER';
|
|
public const ROLE_TEAMLEAD = 'ROLE_TEAMLEAD';
|
|
public const ROLE_ADMIN = 'ROLE_ADMIN';
|
|
public const ROLE_SUPER_ADMIN = 'ROLE_SUPER_ADMIN';
|
|
|
|
public const DEFAULT_ROLE = self::ROLE_USER;
|
|
public const DEFAULT_LANGUAGE = 'en';
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue
|
|
* @ORM\Column(name="id", type="integer")
|
|
*/
|
|
protected $id;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="alias", type="string", length=60, nullable=true)
|
|
* @Assert\Length(max=160)
|
|
*/
|
|
private $alias;
|
|
|
|
/**
|
|
* @var \DateTime
|
|
*
|
|
* @ORM\Column(name="registration_date", type="datetime", nullable=true)
|
|
*/
|
|
private $registeredAt;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="title", type="string", length=50, nullable=true)
|
|
*/
|
|
private $title;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="avatar", type="string", length=255, nullable=true)
|
|
*/
|
|
private $avatar;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="api_token", type="string", length=255, nullable=true)
|
|
*/
|
|
protected $apiToken;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $plainApiToken;
|
|
|
|
/**
|
|
* @var UserPreference[]|Collection
|
|
*
|
|
* @ORM\OneToMany(targetEntity="App\Entity\UserPreference", mappedBy="user", cascade={"persist"})
|
|
*/
|
|
private $preferences;
|
|
|
|
/**
|
|
* @var Team[]|ArrayCollection
|
|
*
|
|
* @ORM\ManyToMany(targetEntity="Team", inversedBy="users", cascade={"persist"})
|
|
* @ORM\JoinTable(
|
|
* name="kimai2_users_teams",
|
|
* joinColumns={
|
|
* @ORM\JoinColumn(name="user_id", referencedColumnName="id", onDelete="CASCADE")
|
|
* },
|
|
* inverseJoinColumns={
|
|
* @ORM\JoinColumn(name="team_id", referencedColumnName="id", onDelete="CASCADE")
|
|
* }
|
|
* )
|
|
*/
|
|
private $teams;
|
|
|
|
/**
|
|
* User constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->registeredAt = new \DateTime();
|
|
$this->preferences = new ArrayCollection();
|
|
$this->teams = new ArrayCollection();
|
|
}
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getRegisteredAt(): ?\DateTime
|
|
{
|
|
return $this->registeredAt;
|
|
}
|
|
|
|
public function setRegisteredAt(\DateTime $registeredAt): User
|
|
{
|
|
$this->registeredAt = $registeredAt;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setAlias(?string $alias): User
|
|
{
|
|
$this->alias = $alias;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getAlias(): ?string
|
|
{
|
|
return $this->alias;
|
|
}
|
|
|
|
public function getTitle(): ?string
|
|
{
|
|
return $this->title;
|
|
}
|
|
|
|
public function setTitle(?string $title): User
|
|
{
|
|
$this->title = $title;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getAvatar(): ?string
|
|
{
|
|
return $this->avatar;
|
|
}
|
|
|
|
public function setAvatar(?string $avatar): User
|
|
{
|
|
$this->avatar = $avatar;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getApiToken(): ?string
|
|
{
|
|
return $this->apiToken;
|
|
}
|
|
|
|
public function setApiToken(?string $apiToken): User
|
|
{
|
|
$this->apiToken = $apiToken;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getPlainApiToken(): ?string
|
|
{
|
|
return $this->plainApiToken;
|
|
}
|
|
|
|
public function setPlainApiToken(?string $plainApiToken): User
|
|
{
|
|
$this->plainApiToken = $plainApiToken;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return Collection<UserPreference>
|
|
*/
|
|
public function getPreferences(): Collection
|
|
{
|
|
return $this->preferences;
|
|
}
|
|
|
|
/**
|
|
* @param iterable<UserPreference> $preferences
|
|
* @return User
|
|
*/
|
|
public function setPreferences(iterable $preferences): User
|
|
{
|
|
$this->preferences = new ArrayCollection();
|
|
|
|
foreach ($preferences as $preference) {
|
|
$this->addPreference($preference);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $name
|
|
* @param bool|int|string|null $value
|
|
*/
|
|
public function setPreferenceValue(string $name, $value = null)
|
|
{
|
|
$pref = $this->getPreference($name);
|
|
|
|
if (null === $pref) {
|
|
$pref = new UserPreference();
|
|
$pref->setName($name);
|
|
$this->addPreference($pref);
|
|
}
|
|
|
|
$pref->setValue($value);
|
|
}
|
|
|
|
public function getPreference(string $name): ?UserPreference
|
|
{
|
|
// this code will be triggered, if a currently logged-in user will be deleted and the refreshed from the session
|
|
// via one of the UserProvider - e.g. see LdapUserProvider::refreshUser() which calls $user->getPreferenceValue()
|
|
if (empty($this->preferences)) {
|
|
return null;
|
|
}
|
|
|
|
foreach ($this->preferences as $preference) {
|
|
if ($preference->getName() == $name) {
|
|
return $preference;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public function getLocale(): string
|
|
{
|
|
return $this->getPreferenceValue(UserPreference::LOCALE, User::DEFAULT_LANGUAGE);
|
|
}
|
|
|
|
public function getTimezone(): string
|
|
{
|
|
return $this->getPreferenceValue(UserPreference::TIMEZONE, date_default_timezone_get());
|
|
}
|
|
|
|
/**
|
|
* @param string $name
|
|
* @param mixed $default
|
|
* @return bool|int|null|string
|
|
*/
|
|
public function getPreferenceValue($name, $default = null)
|
|
{
|
|
$preference = $this->getPreference($name);
|
|
if (null === $preference) {
|
|
return $default;
|
|
}
|
|
|
|
return $preference->getValue();
|
|
}
|
|
|
|
/**
|
|
* @param UserPreference $preference
|
|
* @return User
|
|
*/
|
|
public function addPreference(UserPreference $preference): User
|
|
{
|
|
$this->preferences->add($preference);
|
|
$preference->setUser($this);
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function addTeam(Team $team): User
|
|
{
|
|
if ($this->teams->contains($team)) {
|
|
return $this;
|
|
}
|
|
|
|
$this->teams->add($team);
|
|
$team->addUser($this);
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function removeTeam(Team $team)
|
|
{
|
|
if (!$this->teams->contains($team)) {
|
|
return;
|
|
}
|
|
$this->teams->removeElement($team);
|
|
$team->removeUser($this);
|
|
}
|
|
|
|
/**
|
|
* @return Collection<Team>
|
|
*/
|
|
public function getTeams(): Collection
|
|
{
|
|
return $this->teams;
|
|
}
|
|
|
|
public function isInTeam(Team $team): bool
|
|
{
|
|
return $this->teams->contains($team);
|
|
}
|
|
|
|
public function isTeamleadOf(Team $team): bool
|
|
{
|
|
return $team->getTeamLead() === $this;
|
|
}
|
|
|
|
public function isTeamlead(): bool
|
|
{
|
|
return $this->hasRole(static::ROLE_TEAMLEAD);
|
|
}
|
|
|
|
public function isAdmin(): bool
|
|
{
|
|
return $this->hasRole(static::ROLE_ADMIN);
|
|
}
|
|
|
|
public function getDisplayName(): ?string
|
|
{
|
|
if (!empty($this->getAlias())) {
|
|
return $this->getAlias();
|
|
}
|
|
|
|
return $this->getUsername();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function __toString()
|
|
{
|
|
return $this->getDisplayName();
|
|
}
|
|
}
|