2015-01-22 16:18:56 +00:00
|
|
|
<?php
|
|
|
|
|
2015-01-23 15:28:37 +00:00
|
|
|
namespace Wallabag\CoreBundle\Entity;
|
2015-01-22 16:18:56 +00:00
|
|
|
|
2015-02-06 14:18:54 +00:00
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
2015-01-22 16:18:56 +00:00
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
2015-03-27 23:10:39 +00:00
|
|
|
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
|
2015-01-31 14:14:10 +00:00
|
|
|
use Symfony\Component\Security\Core\User\UserInterface;
|
|
|
|
use Symfony\Component\Security\Core\User\AdvancedUserInterface;
|
2015-02-17 21:45:20 +00:00
|
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
2015-02-20 10:45:38 +00:00
|
|
|
use JMS\Serializer\Annotation\ExclusionPolicy;
|
|
|
|
use JMS\Serializer\Annotation\Expose;
|
2015-08-18 09:08:45 +00:00
|
|
|
use FOS\UserBundle\Model\User as BaseUser;
|
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
|
|
|
*
|
2015-03-28 13:27:45 +00:00
|
|
|
* @ORM\Entity(repositoryClass="Wallabag\CoreBundle\Repository\UserRepository")
|
2015-03-28 10:29:19 +00:00
|
|
|
* @ORM\Table
|
2015-02-06 13:18:01 +00:00
|
|
|
* @ORM\HasLifecycleCallbacks()
|
2015-02-20 10:45:38 +00:00
|
|
|
* @ExclusionPolicy("all")
|
2015-03-27 23:10:39 +00:00
|
|
|
*
|
|
|
|
* @UniqueEntity("email")
|
|
|
|
* @UniqueEntity("username")
|
2015-01-22 16:18:56 +00:00
|
|
|
*/
|
2015-08-18 09:08:45 +00:00
|
|
|
class User extends BaseUser implements AdvancedUserInterface, \Serializable
|
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-20 10:45:38 +00:00
|
|
|
* @Expose
|
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")
|
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)
|
|
|
|
*/
|
2015-08-18 09:08:45 +00:00
|
|
|
protected $name;
|
2015-03-07 22:25:36 +00:00
|
|
|
|
2015-02-06 13:18:01 +00:00
|
|
|
/**
|
|
|
|
* @var date
|
|
|
|
*
|
|
|
|
* @ORM\Column(name="created_at", type="datetime")
|
|
|
|
*/
|
2015-08-18 09:08:45 +00:00
|
|
|
protected $createdAt;
|
2015-02-06 13:18:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var date
|
|
|
|
*
|
|
|
|
* @ORM\Column(name="updated_at", type="datetime")
|
|
|
|
*/
|
2015-08-18 09:08:45 +00:00
|
|
|
protected $updatedAt;
|
2015-02-06 13:18:01 +00:00
|
|
|
|
2015-02-06 14:18:54 +00:00
|
|
|
/**
|
|
|
|
* @ORM\OneToMany(targetEntity="Entry", mappedBy="user", cascade={"remove"})
|
|
|
|
*/
|
2015-08-18 09:08:45 +00:00
|
|
|
protected $entries;
|
2015-02-06 14:18:54 +00:00
|
|
|
|
2015-02-23 21:55:06 +00:00
|
|
|
/**
|
|
|
|
* @ORM\OneToOne(targetEntity="Config", mappedBy="user")
|
|
|
|
*/
|
2015-08-18 09:08:45 +00:00
|
|
|
protected $config;
|
2015-02-23 21:55:06 +00:00
|
|
|
|
2015-02-26 08:41:42 +00:00
|
|
|
/**
|
|
|
|
* @ORM\OneToMany(targetEntity="Tag", mappedBy="user", cascade={"remove"})
|
|
|
|
*/
|
2015-08-18 09:08:45 +00:00
|
|
|
protected $tags;
|
2015-02-26 08:41:42 +00:00
|
|
|
|
2015-01-31 14:14:10 +00:00
|
|
|
public function __construct()
|
|
|
|
{
|
2015-08-18 09:08:45 +00:00
|
|
|
parent::__construct();
|
|
|
|
$this->entries = new ArrayCollection();
|
|
|
|
$this->tags = new ArrayCollection();
|
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 password.
|
|
|
|
*
|
|
|
|
* @param string $password
|
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 setPassword($password)
|
|
|
|
{
|
2015-02-08 20:47:36 +00:00
|
|
|
if (!$password && 0 === strlen($password)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->password = sha1($password.$this->getUsername().$this->getSalt());
|
2015-01-22 16:18:56 +00:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
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
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getCreatedAt()
|
|
|
|
{
|
|
|
|
return $this->createdAt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getUpdatedAt()
|
|
|
|
{
|
|
|
|
return $this->updatedAt;
|
|
|
|
}
|
|
|
|
|
2015-02-06 14:18:54 +00:00
|
|
|
/**
|
|
|
|
* @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-02-26 08:41:42 +00:00
|
|
|
/**
|
|
|
|
* @param Entry $entry
|
|
|
|
*
|
|
|
|
* @return User
|
|
|
|
*/
|
|
|
|
public function addTag(Tag $tag)
|
|
|
|
{
|
|
|
|
$this->tags[] = $tag;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return ArrayCollection<Tag>
|
|
|
|
*/
|
|
|
|
public function getTags()
|
|
|
|
{
|
|
|
|
return $this->tags;
|
|
|
|
}
|
2015-01-31 14:14:10 +00:00
|
|
|
|
|
|
|
public function isEqualTo(UserInterface $user)
|
|
|
|
{
|
|
|
|
return $this->username === $user->getUsername();
|
|
|
|
}
|
|
|
|
|
2015-02-23 21:55:06 +00:00
|
|
|
/**
|
2015-05-30 11:52:26 +00:00
|
|
|
* Set config.
|
|
|
|
*
|
|
|
|
* @param \Wallabag\CoreBundle\Entity\Config $config
|
2015-02-23 21:55:06 +00:00
|
|
|
*
|
|
|
|
* @return User
|
|
|
|
*/
|
|
|
|
public function setConfig(\Wallabag\CoreBundle\Entity\Config $config = null)
|
|
|
|
{
|
|
|
|
$this->config = $config;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-30 11:52:26 +00:00
|
|
|
* Get config.
|
2015-02-23 21:55:06 +00:00
|
|
|
*
|
|
|
|
* @return \Wallabag\CoreBundle\Entity\Config
|
|
|
|
*/
|
|
|
|
public function getConfig()
|
|
|
|
{
|
|
|
|
return $this->config;
|
|
|
|
}
|
2015-01-22 16:18:56 +00:00
|
|
|
}
|