X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FUserBundle%2FEntity%2FUser.php;h=53c327f9b92baad663aea08adaf80f4e5f4993f5;hb=896f981ff522fe7d594e386a7112b23e593d6240;hp=8f02e070e8b10ab295a33d45441c3e1e7fcb3e96;hpb=1210dae10589515d6f3824c75639342c5e1d52dd;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/UserBundle/Entity/User.php b/src/Wallabag/UserBundle/Entity/User.php index 8f02e070..53c327f9 100644 --- a/src/Wallabag/UserBundle/Entity/User.php +++ b/src/Wallabag/UserBundle/Entity/User.php @@ -4,35 +4,40 @@ namespace Wallabag\UserBundle\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\ORM\Mapping as ORM; +use FOS\UserBundle\Model\User as BaseUser; +use JMS\Serializer\Annotation\Accessor; +use JMS\Serializer\Annotation\Groups; +use JMS\Serializer\Annotation\XmlRoot; +use Scheb\TwoFactorBundle\Model\Email\TwoFactorInterface; +use Scheb\TwoFactorBundle\Model\TrustedComputerInterface; use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity; use Symfony\Component\Security\Core\User\UserInterface; -use JMS\Serializer\Annotation\ExclusionPolicy; -use JMS\Serializer\Annotation\Expose; -use FOS\UserBundle\Model\User as BaseUser; +use Wallabag\ApiBundle\Entity\Client; use Wallabag\CoreBundle\Entity\Config; use Wallabag\CoreBundle\Entity\Entry; -use Wallabag\CoreBundle\Entity\Tag; /** * User. * + * @XmlRoot("user") * @ORM\Entity(repositoryClass="Wallabag\UserBundle\Repository\UserRepository") - * @ORM\Table + * @ORM\Table(name="`user`") * @ORM\HasLifecycleCallbacks() - * @ExclusionPolicy("all") * * @UniqueEntity("email") * @UniqueEntity("username") */ -class User extends BaseUser +class User extends BaseUser implements TwoFactorInterface, TrustedComputerInterface { + /** @Serializer\XmlAttribute */ /** * @var int * - * @Expose * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") + * + * @Groups({"user_api", "user_api_with_client"}) */ protected $id; @@ -40,20 +45,40 @@ class User extends BaseUser * @var string * * @ORM\Column(name="name", type="text", nullable=true) + * + * @Groups({"user_api", "user_api_with_client"}) */ protected $name; /** - * @var date + * @var string + * + * @Groups({"user_api", "user_api_with_client"}) + */ + protected $username; + + /** + * @var string + * + * @Groups({"user_api", "user_api_with_client"}) + */ + protected $email; + + /** + * @var \DateTime * * @ORM\Column(name="created_at", type="datetime") + * + * @Groups({"user_api", "user_api_with_client"}) */ protected $createdAt; /** - * @var date + * @var \DateTime * * @ORM\Column(name="updated_at", type="datetime") + * + * @Groups({"user_api", "user_api_with_client"}) */ protected $updatedAt; @@ -63,21 +88,54 @@ class User extends BaseUser protected $entries; /** - * @ORM\OneToOne(targetEntity="Wallabag\CoreBundle\Entity\Config", mappedBy="user") + * @ORM\OneToOne(targetEntity="Wallabag\CoreBundle\Entity\Config", mappedBy="user", cascade={"remove"}) */ protected $config; /** - * @ORM\OneToMany(targetEntity="Wallabag\CoreBundle\Entity\Tag", mappedBy="user", cascade={"remove"}) + * @var ArrayCollection + * + * @ORM\OneToMany(targetEntity="Wallabag\CoreBundle\Entity\SiteCredential", mappedBy="user", cascade={"remove"}) + */ + protected $siteCredentials; + + /** + * @var ArrayCollection + * + * @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; + + /** + * @ORM\Column(type="integer", nullable=true) + */ + private $authCode; + + /** + * @var bool + * + * @ORM\Column(type="boolean") + */ + private $twoFactorAuthentication = false; + + /** + * @ORM\Column(type="json_array", nullable=true) */ - protected $tags; + private $trusted; public function __construct() { parent::__construct(); $this->entries = new ArrayCollection(); - $this->tags = new ArrayCollection(); - $this->roles = array('ROLE_USER'); + $this->roles = ['ROLE_USER']; } /** @@ -86,7 +144,7 @@ class User extends BaseUser */ public function timestamps() { - if (is_null($this->createdAt)) { + if (null === $this->createdAt) { $this->createdAt = new \DateTime(); } @@ -118,7 +176,7 @@ class User extends BaseUser } /** - * @return string + * @return \DateTime */ public function getCreatedAt() { @@ -126,7 +184,7 @@ class User extends BaseUser } /** - * @return string + * @return \DateTime */ public function getUpdatedAt() { @@ -153,52 +211,112 @@ class User extends BaseUser return $this->entries; } + public function isEqualTo(UserInterface $user) + { + return $this->username === $user->getUsername(); + } + /** - * @param Entry $entry + * Set config. + * + * @param Config $config * * @return User */ - public function addTag(Tag $tag) + public function setConfig(Config $config = null) { - $this->tags[] = $tag; + $this->config = $config; return $this; } /** - * @return ArrayCollection + * Get config. + * + * @return Config */ - public function getTags() + public function getConfig() { - return $this->tags; + return $this->config; } - public function isEqualTo(UserInterface $user) + /** + * @return bool + */ + public function isTwoFactorAuthentication() { - return $this->username === $user->getUsername(); + return $this->twoFactorAuthentication; } /** - * Set config. - * - * @param Config $config + * @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 setConfig(Config $config = null) + public function addClient(Client $client) { - $this->config = $config; + $this->clients[] = $client; return $this; } /** - * Get config. + * @return ArrayCollection + */ + 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 Config + * @return Client */ - public function getConfig() + public function getFirstClient() { - return $this->config; + if (!empty($this->clients)) { + return $this->clients->first(); + } } }