X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FUserBundle%2FEntity%2FUser.php;h=4bbb68dcafbd4efcb652e92213f264d42c0e19dd;hb=1930c19d8214c05ceefac5ac011a6b6e7e4a983d;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..4bbb68dc 100644 --- a/src/Wallabag/UserBundle/Entity/User.php +++ b/src/Wallabag/UserBundle/Entity/User.php @@ -4,27 +4,28 @@ namespace Wallabag\UserBundle\Entity; use Doctrine\Common\Collections\ArrayCollection; use Doctrine\ORM\Mapping as ORM; -use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity; -use Symfony\Component\Security\Core\User\UserInterface; +use Scheb\TwoFactorBundle\Model\Email\TwoFactorInterface; +use Scheb\TwoFactorBundle\Model\TrustedComputerInterface; +use FOS\UserBundle\Model\User as BaseUser; use JMS\Serializer\Annotation\ExclusionPolicy; use JMS\Serializer\Annotation\Expose; -use FOS\UserBundle\Model\User as BaseUser; +use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity; +use Symfony\Component\Security\Core\User\UserInterface; use Wallabag\CoreBundle\Entity\Config; use Wallabag\CoreBundle\Entity\Entry; -use Wallabag\CoreBundle\Entity\Tag; /** * 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 { /** * @var int @@ -68,15 +69,25 @@ class User extends BaseUser protected $config; /** - * @ORM\OneToMany(targetEntity="Wallabag\CoreBundle\Entity\Tag", mappedBy="user", cascade={"remove"}) + * @ORM\Column(type="integer", nullable=true) + */ + private $authCode; + + /** + * @var bool Enabled yes/no + * @ORM\Column(type="boolean") */ - protected $tags; + private $twoFactorAuthentication = false; + + /** + * @ORM\Column(type="json_array", nullable=true) + */ + private $trusted; public function __construct() { parent::__construct(); $this->entries = new ArrayCollection(); - $this->tags = new ArrayCollection(); $this->roles = array('ROLE_USER'); } @@ -153,26 +164,6 @@ class User extends BaseUser return $this->entries; } - /** - * @param Entry $entry - * - * @return User - */ - public function addTag(Tag $tag) - { - $this->tags[] = $tag; - - return $this; - } - - /** - * @return ArrayCollection - */ - public function getTags() - { - return $this->tags; - } - public function isEqualTo(UserInterface $user) { return $this->username === $user->getUsername(); @@ -201,4 +192,52 @@ class User extends BaseUser { return $this->config; } + + /** + * @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; + } }