wallabag/src/Wallabag/UserBundle/Entity/User.php

316 lines
6.3 KiB
PHP
Raw Normal View History

2015-01-22 16:18:56 +00:00
<?php
namespace Wallabag\UserBundle\Entity;
2015-01-22 16:18:56 +00:00
use Doctrine\Common\Collections\ArrayCollection;
2015-01-22 16:18:56 +00:00
use Doctrine\ORM\Mapping as ORM;
use JMS\Serializer\Annotation\Groups;
use JMS\Serializer\Annotation\XmlRoot;
use JMS\Serializer\Annotation\Accessor;
2015-10-13 20:43:15 +00:00
use Scheb\TwoFactorBundle\Model\Email\TwoFactorInterface;
use Scheb\TwoFactorBundle\Model\TrustedComputerInterface;
use FOS\UserBundle\Model\User as BaseUser;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
use Symfony\Component\Security\Core\User\UserInterface;
use Wallabag\ApiBundle\Entity\Client;
use Wallabag\CoreBundle\Entity\Config;
use Wallabag\CoreBundle\Entity\Entry;
2015-01-22 16:18:56 +00:00
/**
2015-05-30 11:52:26 +00:00
* User.
2015-01-22 16:18:56 +00:00
*
* @XmlRoot("user")
* @ORM\Entity(repositoryClass="Wallabag\UserBundle\Repository\UserRepository")
* @ORM\Table(name="`user`")
2015-02-06 13:18:01 +00:00
* @ORM\HasLifecycleCallbacks()
*
* @UniqueEntity("email")
* @UniqueEntity("username")
2015-01-22 16:18:56 +00:00
*/
2015-10-13 20:43:15 +00:00
class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterface
2015-01-22 16:18:56 +00:00
{
/** @Serializer\XmlAttribute */
2015-01-22 16:18:56 +00:00
/**
2015-05-30 11:52:26 +00:00
* @var int
2015-01-22 16:18:56 +00:00
*
2015-02-06 13:18:01 +00:00
* @ORM\Column(name="id", type="integer")
2015-01-22 16:18:56 +00:00
* @ORM\Id
2015-02-06 13:18:01 +00:00
* @ORM\GeneratedValue(strategy="AUTO")
*
* @Groups({"user_api", "user_api_with_client"})
2015-01-22 16:18:56 +00:00
*/
2015-08-18 09:08:45 +00:00
protected $id;
2015-01-22 16:18:56 +00:00
/**
* @var string
*
* @ORM\Column(name="name", type="text", nullable=true)
*
* @Groups({"user_api", "user_api_with_client"})
2015-01-22 16:18:56 +00:00
*/
2015-08-18 09:08:45 +00:00
protected $name;
2015-03-07 22:25:36 +00:00
/**
* @var string
*
* @Groups({"user_api", "user_api_with_client"})
*/
protected $username;
/**
* @var string
*
* @Groups({"user_api", "user_api_with_client"})
*/
protected $email;
2015-02-06 13:18:01 +00:00
/**
2017-06-01 07:30:20 +00:00
* @var \DateTime
2015-02-06 13:18:01 +00:00
*
* @ORM\Column(name="created_at", type="datetime")
*
* @Groups({"user_api", "user_api_with_client"})
2015-02-06 13:18:01 +00:00
*/
2015-08-18 09:08:45 +00:00
protected $createdAt;
2015-02-06 13:18:01 +00:00
/**
2017-06-01 07:30:20 +00:00
* @var \DateTime
2015-02-06 13:18:01 +00:00
*
* @ORM\Column(name="updated_at", type="datetime")
*
* @Groups({"user_api", "user_api_with_client"})
2015-02-06 13:18:01 +00:00
*/
2015-08-18 09:08:45 +00:00
protected $updatedAt;
2015-02-06 13:18:01 +00:00
/**
* @ORM\OneToMany(targetEntity="Wallabag\CoreBundle\Entity\Entry", mappedBy="user", cascade={"remove"})
*/
2015-08-18 09:08:45 +00:00
protected $entries;
/**
* @ORM\OneToOne(targetEntity="Wallabag\CoreBundle\Entity\Config", mappedBy="user", cascade={"remove"})
*/
2015-08-18 09:08:45 +00:00
protected $config;
2015-10-13 20:43:15 +00:00
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $authCode;
/**
* @var bool
*
2015-10-13 20:43:15 +00:00
* @ORM\Column(type="boolean")
*/
private $twoFactorAuthentication = false;
/**
* @ORM\Column(type="json_array", nullable=true)
*/
private $trusted;
/**
* @ORM\OneToMany(targetEntity="Wallabag\ApiBundle\Entity\Client", mappedBy="user", cascade={"remove"})
*/
protected $clients;
/**
* @see getFirstClient() below
*
* @Groups({"user_api_with_client"})
* @Accessor(getter="getFirstClient")
*/
protected $default_client;
2015-01-31 14:14:10 +00:00
public function __construct()
{
2015-08-18 09:08:45 +00:00
parent::__construct();
2015-09-20 20:37:27 +00:00
$this->entries = new ArrayCollection();
$this->roles = ['ROLE_USER'];
2015-01-31 14:14:10 +00:00
}
2015-01-22 16:18:56 +00:00
2015-02-06 13:18:01 +00:00
/**
* @ORM\PrePersist
* @ORM\PreUpdate
*/
public function timestamps()
{
if (is_null($this->createdAt)) {
$this->createdAt = new \DateTime();
}
$this->updatedAt = new \DateTime();
}
2015-01-22 16:18:56 +00:00
/**
2015-05-30 11:52:26 +00:00
* Set name.
*
* @param string $name
2015-01-22 16:18:56 +00:00
*
2015-02-06 13:18:01 +00:00
* @return User
2015-01-22 16:18:56 +00:00
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
2015-05-30 11:52:26 +00:00
* Get name.
2015-01-22 16:18:56 +00:00
*
2015-01-31 18:09:34 +00:00
* @return string
2015-01-22 16:18:56 +00:00
*/
public function getName()
{
return $this->name;
}
2015-02-06 13:18:01 +00:00
/**
2017-06-01 07:36:01 +00:00
* @return \DateTime
2015-02-06 13:18:01 +00:00
*/
public function getCreatedAt()
{
return $this->createdAt;
}
/**
2017-06-01 07:36:01 +00:00
* @return \DateTime
2015-02-06 13:18:01 +00:00
*/
public function getUpdatedAt()
{
return $this->updatedAt;
}
/**
* @param Entry $entry
*
* @return User
*/
public function addEntry(Entry $entry)
{
$this->entries[] = $entry;
return $this;
}
/**
* @return ArrayCollection<Entry>
*/
public function getEntries()
{
return $this->entries;
}
2015-01-31 14:14:10 +00:00
public function isEqualTo(UserInterface $user)
{
return $this->username === $user->getUsername();
}
/**
2015-05-30 11:52:26 +00:00
* Set config.
*
* @param Config $config
*
* @return User
*/
public function setConfig(Config $config = null)
{
$this->config = $config;
return $this;
}
/**
2015-05-30 11:52:26 +00:00
* Get config.
*
* @return Config
*/
public function getConfig()
{
return $this->config;
}
2015-10-13 20:43:15 +00:00
/**
* @return bool
*/
public function isTwoFactorAuthentication()
{
return $this->twoFactorAuthentication;
}
/**
* @param bool $twoFactorAuthentication
*/
public function setTwoFactorAuthentication($twoFactorAuthentication)
{
$this->twoFactorAuthentication = $twoFactorAuthentication;
}
public function isEmailAuthEnabled()
{
return $this->twoFactorAuthentication;
}
public function getEmailAuthCode()
{
return $this->authCode;
}
public function setEmailAuthCode($authCode)
{
$this->authCode = $authCode;
}
public function addTrustedComputer($token, \DateTime $validUntil)
{
$this->trusted[$token] = $validUntil->format('r');
}
public function isTrustedComputer($token)
{
if (isset($this->trusted[$token])) {
$now = new \DateTime();
$validUntil = new \DateTime($this->trusted[$token]);
return $now < $validUntil;
}
return false;
}
/**
* @param Client $client
*
* @return User
*/
public function addClient(Client $client)
{
$this->clients[] = $client;
return $this;
}
/**
* @return ArrayCollection<Entry>
*/
public function getClients()
{
return $this->clients;
}
/**
* Only used by the API when creating a new user it'll also return the first client (which was also created at the same time).
*
* @return Client
*/
public function getFirstClient()
{
if (empty($this->clients)) {
return $this->clients;
}
return $this->clients->first();
}
2015-01-22 16:18:56 +00:00
}