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

401 lines
8.2 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;
2017-07-01 07:52:38 +00:00
use FOS\UserBundle\Model\User as BaseUser;
use JMS\Serializer\Annotation\Accessor;
use JMS\Serializer\Annotation\Groups;
use JMS\Serializer\Annotation\XmlRoot;
2018-12-03 05:51:06 +00:00
use Scheb\TwoFactorBundle\Model\BackupCodeInterface;
use Scheb\TwoFactorBundle\Model\Email\TwoFactorInterface as EmailTwoFactorInterface;
use Scheb\TwoFactorBundle\Model\Google\TwoFactorInterface as GoogleTwoFactorInterface;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
use Wallabag\ApiBundle\Entity\Client;
use Wallabag\CoreBundle\Entity\Config;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Helper\EntityTimestampsTrait;
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
*/
2018-12-03 05:51:06 +00:00
class User extends BaseUser implements EmailTwoFactorInterface, GoogleTwoFactorInterface, BackupCodeInterface
2015-01-22 16:18:56 +00:00
{
use EntityTimestampsTrait;
/** @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;
/**
* @var ArrayCollection
*
* @ORM\OneToMany(targetEntity="Wallabag\CoreBundle\Entity\SiteCredential", mappedBy="user", cascade={"remove"})
*/
2017-07-03 09:49:46 +00:00
protected $siteCredentials;
2015-10-13 20:43:15 +00:00
/**
2017-07-01 07:52:38 +00:00
* @var ArrayCollection
*
* @ORM\OneToMany(targetEntity="Wallabag\ApiBundle\Entity\Client", mappedBy="user", cascade={"remove"})
2015-10-13 20:43:15 +00:00
*/
2017-07-01 07:52:38 +00:00
protected $clients;
2015-10-13 20:43:15 +00:00
/**
2017-07-01 07:52:38 +00:00
* @see getFirstClient() below
*
2017-07-01 07:52:38 +00:00
* @Groups({"user_api_with_client"})
* @Accessor(getter="getFirstClient")
2015-10-13 20:43:15 +00:00
*/
2017-07-01 07:52:38 +00:00
protected $default_client;
2015-10-13 20:43:15 +00:00
/**
2017-07-01 07:52:38 +00:00
* @ORM\Column(type="integer", nullable=true)
2015-10-13 20:43:15 +00:00
*/
2017-07-01 07:52:38 +00:00
private $authCode;
2015-10-13 20:43:15 +00:00
/**
* @ORM\Column(name="googleAuthenticatorSecret", type="string", nullable=true)
*/
private $googleAuthenticatorSecret;
2018-12-03 05:51:06 +00:00
/**
* @ORM\Column(type="json", nullable=true)
2018-12-03 05:51:06 +00:00
*/
private $backupCodes;
/**
* @var bool
*
* @ORM\Column(type="boolean")
*/
private $emailTwoFactor = false;
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-02-06 13:18:01 +00:00
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;
}
/**
* @return User
*/
public function addEntry(Entry $entry)
{
$this->entries[] = $entry;
return $this;
}
/**
* @return ArrayCollection<Entry>
*/
public function getEntries()
{
return $this->entries;
}
/**
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 isEmailTwoFactor()
{
return $this->emailTwoFactor;
}
/**
* @param bool $emailTwoFactor
*/
public function setEmailTwoFactor($emailTwoFactor)
2015-10-13 20:43:15 +00:00
{
$this->emailTwoFactor = $emailTwoFactor;
2015-10-13 20:43:15 +00:00
}
/**
* Used in the user config form to be "like" the email option.
2015-10-13 20:43:15 +00:00
*/
public function isGoogleTwoFactor()
2015-10-13 20:43:15 +00:00
{
return $this->isGoogleAuthenticatorEnabled();
2015-10-13 20:43:15 +00:00
}
/**
* {@inheritdoc}
*/
public function isEmailAuthEnabled(): bool
2015-10-13 20:43:15 +00:00
{
return $this->emailTwoFactor;
2015-10-13 20:43:15 +00:00
}
/**
* {@inheritdoc}
*/
public function getEmailAuthCode(): string
2015-10-13 20:43:15 +00:00
{
return $this->authCode;
}
/**
* {@inheritdoc}
*/
public function setEmailAuthCode(string $authCode): void
2015-10-13 20:43:15 +00:00
{
$this->authCode = $authCode;
}
/**
* {@inheritdoc}
*/
public function getEmailAuthRecipient(): string
2015-10-13 20:43:15 +00:00
{
return $this->email;
2015-10-13 20:43:15 +00:00
}
/**
* {@inheritdoc}
*/
public function isGoogleAuthenticatorEnabled(): bool
2015-10-13 20:43:15 +00:00
{
return $this->googleAuthenticatorSecret ? true : false;
}
2015-10-13 20:43:15 +00:00
/**
* {@inheritdoc}
*/
public function getGoogleAuthenticatorUsername(): string
{
return $this->username;
}
2015-10-13 20:43:15 +00:00
/**
* {@inheritdoc}
*/
public function getGoogleAuthenticatorSecret(): string
{
return $this->googleAuthenticatorSecret;
}
/**
* {@inheritdoc}
*/
public function setGoogleAuthenticatorSecret(?string $googleAuthenticatorSecret): void
{
$this->googleAuthenticatorSecret = $googleAuthenticatorSecret;
2015-10-13 20:43:15 +00:00
}
2018-12-03 05:51:06 +00:00
public function setBackupCodes(array $codes = null)
{
$this->backupCodes = $codes;
}
public function getBackupCodes()
{
return $this->backupCodes;
}
/**
* {@inheritdoc}
*/
public function isBackupCode(string $code): bool
{
return false === $this->findBackupCode($code) ? false : true;
2018-12-03 05:51:06 +00:00
}
/**
* {@inheritdoc}
*/
public function invalidateBackupCode(string $code): void
{
$key = $this->findBackupCode($code);
2018-12-03 05:51:06 +00:00
if (false !== $key) {
unset($this->backupCodes[$key]);
}
}
/**
* @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|false
*/
public function getFirstClient()
{
2017-06-07 21:23:34 +00:00
if (!empty($this->clients)) {
return $this->clients->first();
}
return false;
}
/**
* Try to find a backup code from the list of backup codes of the current user.
*
* @param string $code Given code from the user
*
* @return string|false
*/
private function findBackupCode(string $code)
{
foreach ($this->backupCodes as $key => $backupCode) {
// backup code are hashed using `password_hash`
// see ConfigController->otpAppAction
if (password_verify($code, $backupCode)) {
return $key;
}
}
return false;
}
2015-01-22 16:18:56 +00:00
}