|
@@ -2,132 +2,83 @@
|
|
|
|
|
|
namespace App\Entity;
|
|
|
|
|
|
+use App\Repository\UserRepository;
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
use Symfony\Component\Security\Core\User\UserInterface;
|
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
|
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
|
|
|
use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
|
|
|
|
|
|
-/**
|
|
|
- * User
|
|
|
- *
|
|
|
- * @ORM\Table(name="user")
|
|
|
- * @ORM\Entity(repositoryClass="App\Repository\UserRepository")
|
|
|
- * @UniqueEntity(fields="username", message="Le username est déjà utilisé")
|
|
|
- * @UniqueEntity(fields="mail", message="L'email est déjà utilisé")
|
|
|
- * @UniqueEntity(fields="token", message="Erreur, token non unique")
|
|
|
- *
|
|
|
- */
|
|
|
+#[ORM\Table(name: "user")]
|
|
|
+#[ORM\Entity(repositoryClass: UserRepository::class)]
|
|
|
+#[UniqueEntity(fields: "username", message: "Le username est déjà utilisé")]
|
|
|
+#[UniqueEntity(fields: "mail", message: "L'email est déjà utilisé")]
|
|
|
+#[UniqueEntity(fields: "token", message: "Erreur, token non unique")]
|
|
|
+
|
|
|
class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
{
|
|
|
- /**
|
|
|
- * @var int
|
|
|
- *
|
|
|
- * @ORM\Column(name="id", type="integer")
|
|
|
- * @ORM\Id
|
|
|
- * @ORM\GeneratedValue(strategy="AUTO")
|
|
|
- */
|
|
|
+
|
|
|
+ #[ORM\Column(name: "id", type: "integer")]
|
|
|
+ #[ORM\Id]
|
|
|
+ #[ORM\GeneratedValue(strategy: "AUTO")]
|
|
|
private $id;
|
|
|
|
|
|
- /**
|
|
|
- * @var string
|
|
|
- *
|
|
|
- * @ORM\Column(name="username", type="string", length=191, unique=true)
|
|
|
- */
|
|
|
+ #[ORM\Column(name: "username", type: "string", length: 191, unique: true)]
|
|
|
private $username;
|
|
|
|
|
|
- /**
|
|
|
- * @var string
|
|
|
- *
|
|
|
- * @ORM\Column(name="prenom", type="string", length=191, nullable=true)
|
|
|
- */
|
|
|
+ #[ORM\Column(name: "prenom", type: "string", length: 191, nullable: true)]
|
|
|
private $prenom;
|
|
|
|
|
|
- /**
|
|
|
- * @var string
|
|
|
- *
|
|
|
- * @ORM\Column(name="nom", type="string", length=191, nullable=true)
|
|
|
- */
|
|
|
+ #[ORM\Column(name: "nom", type: "string", length: 191, nullable: true)]
|
|
|
private $nom;
|
|
|
|
|
|
- /**
|
|
|
- * @var string
|
|
|
- *
|
|
|
- * @ORM\Column(name="mail", type="string", length=191, unique=true)
|
|
|
- * @Assert\Email()
|
|
|
- */
|
|
|
+ #[ORM\Column(name: "mail", type: "string", length: 191, unique: true)]
|
|
|
+ #[Assert\Email()]
|
|
|
private $mail;
|
|
|
|
|
|
- /**
|
|
|
- * @var string
|
|
|
- *
|
|
|
- * @ORM\Column(name="password", type="string", length=191)
|
|
|
- */
|
|
|
+ #[ORM\Column(name: "password", type: "string", length: 191)]
|
|
|
private $password;
|
|
|
|
|
|
- /**
|
|
|
- * @var string
|
|
|
- *
|
|
|
- * @ORM\Column(name="token", type="string", length=191, unique=true)
|
|
|
- */
|
|
|
+ #[ORM\Column(name: "token", type: "string", length: 191, unique: true)]
|
|
|
+
|
|
|
private $token;
|
|
|
|
|
|
- /**
|
|
|
- * @var \DateTime
|
|
|
- *
|
|
|
- * @ORM\Column(name="token_validity", type="datetime")
|
|
|
- * @Assert\Type("DateTime")
|
|
|
- */
|
|
|
+ #[ORM\Column(name: "token_validity", type: "datetime")]
|
|
|
+ #[Assert\Type("DateTime")]
|
|
|
private $tokenValidity;
|
|
|
|
|
|
- /**
|
|
|
- * @var string
|
|
|
- *
|
|
|
- * @ORM\Column(name="salt", type="string", length=191, nullable=true)
|
|
|
- */
|
|
|
+ #[ORM\Column(name: "salt", type: "string", length: 191, nullable: true)]
|
|
|
private $salt;
|
|
|
|
|
|
- /**
|
|
|
- * @var boolean
|
|
|
- *
|
|
|
- * @ORM\Column(name="is_active", type="boolean")
|
|
|
- */
|
|
|
+ #[ORM\Column(name: "is_active", type: "boolean")]
|
|
|
private $isActive;
|
|
|
|
|
|
- /**
|
|
|
- * @var array
|
|
|
- *
|
|
|
- * @ORM\Column(name="roles", type="array")
|
|
|
- */
|
|
|
+ #[ORM\Column(name: "roles", type: "array")]
|
|
|
private $roles = array();
|
|
|
|
|
|
- /**
|
|
|
- * @var \DateTime
|
|
|
- *
|
|
|
- * @ORM\Column(name="last_activity", type="datetime")
|
|
|
- * @Assert\Type("DateTime")
|
|
|
- */
|
|
|
+ #[ORM\ManyToMany(targetEntity: Film::class, mappedBy: "usersWantToView")]
|
|
|
+ private $films;
|
|
|
+
|
|
|
+ #[ORM\ManyToMany(targetEntity: Film::class, mappedBy: "usersWhoSeen")]
|
|
|
+ private $filmsVus;
|
|
|
+
|
|
|
+ #[ORM\OneToOne(targetEntity: Profile::class, mappedBy: "user", cascade: ["persist", "remove"])]
|
|
|
+ private $profile;
|
|
|
+
|
|
|
+ #[ORM\Column(name: "last_activity", type: "datetime")]
|
|
|
+ #[Assert\Type("DateTime")]
|
|
|
private $lastActivity;
|
|
|
|
|
|
- /**
|
|
|
- * @return \DateTime
|
|
|
- */
|
|
|
public function getLastActivity()
|
|
|
{
|
|
|
return $this->lastActivity;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @param \DateTime $lastActivity
|
|
|
- */
|
|
|
public function setLastActivity($lastActivity)
|
|
|
{
|
|
|
$this->lastActivity = $lastActivity;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @return boolean
|
|
|
- */
|
|
|
public function isActiveNow()
|
|
|
{
|
|
|
$delay = new \DateTime('5 minutes ago');
|
|
@@ -135,41 +86,11 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return ( $this->getLastActivity() > $delay );
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @ORM\ManyToMany(targetEntity="App\Entity\Film", mappedBy="usersWantToView")
|
|
|
- * @var \Doctrine\Common\Collections\Collection
|
|
|
- */
|
|
|
- private $films;
|
|
|
-
|
|
|
- /**
|
|
|
- * @ORM\ManyToMany(targetEntity="App\Entity\Film", mappedBy="usersWhoSeen")
|
|
|
- * @var \Doctrine\Common\Collections\Collection
|
|
|
- */
|
|
|
- private $filmsVus;
|
|
|
-
|
|
|
- /**
|
|
|
- * @ORM\OneToOne(targetEntity=Profile::class, mappedBy="user", cascade={"persist", "remove"})
|
|
|
- */
|
|
|
- private $profile;
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * Get id
|
|
|
- *
|
|
|
- * @return int
|
|
|
- */
|
|
|
public function getId()
|
|
|
{
|
|
|
return $this->id;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Set username
|
|
|
- *
|
|
|
- * @param string $username
|
|
|
- *
|
|
|
- * @return User
|
|
|
- */
|
|
|
public function setUsername($username)
|
|
|
{
|
|
|
$this->username = $username;
|
|
@@ -177,96 +98,56 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @deprecated since Symfony 5.3, use getUserIdentifier instead
|
|
|
- */
|
|
|
public function getUsername()
|
|
|
{
|
|
|
return (string) $this->username;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Get UserIdentifier
|
|
|
- *
|
|
|
- * @return string
|
|
|
- */
|
|
|
public function getUserIdentifier()
|
|
|
{
|
|
|
return $this->username;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @param bool $activated
|
|
|
- */
|
|
|
public function setActivated($activated)
|
|
|
{
|
|
|
$this->isActive = $activated;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @return bool
|
|
|
- */
|
|
|
public function getActivated()
|
|
|
{
|
|
|
return $this->isActive;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
public function getPrenom()
|
|
|
{
|
|
|
return $this->prenom;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @param string $prenom
|
|
|
- */
|
|
|
public function setPrenom($prenom)
|
|
|
{
|
|
|
$this->prenom = $prenom;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
public function getNom()
|
|
|
{
|
|
|
return $this->nom;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @param string $nom
|
|
|
- */
|
|
|
public function setNom($nom)
|
|
|
{
|
|
|
$this->nom = $nom;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
public function getMail()
|
|
|
{
|
|
|
return $this->mail;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @param string $mail
|
|
|
- */
|
|
|
public function setMail($mail)
|
|
|
{
|
|
|
$this->mail = $mail;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- /**
|
|
|
- * Set password
|
|
|
- *
|
|
|
- * @param string $password
|
|
|
- *
|
|
|
- * @return User
|
|
|
- */
|
|
|
public function setPassword($password)
|
|
|
{
|
|
|
$this->password = $password;
|
|
@@ -274,23 +155,11 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Get password
|
|
|
- *
|
|
|
- * @return string
|
|
|
- */
|
|
|
public function getPassword() : ?string
|
|
|
{
|
|
|
return $this->password;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Set salt
|
|
|
- *
|
|
|
- * @param string $salt
|
|
|
- *
|
|
|
- * @return User
|
|
|
- */
|
|
|
public function setSalt($salt)
|
|
|
{
|
|
|
$this->salt = $salt;
|
|
@@ -298,31 +167,16 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Get salt
|
|
|
- *
|
|
|
- * @return string
|
|
|
- */
|
|
|
public function getSalt()
|
|
|
{
|
|
|
return $this->salt;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Get token
|
|
|
- *
|
|
|
- * @return string
|
|
|
- */
|
|
|
public function getToken()
|
|
|
{
|
|
|
return $this->token;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Set token
|
|
|
- *
|
|
|
- * @return User
|
|
|
- */
|
|
|
public function setToken($token)
|
|
|
{
|
|
|
//$this->token = hash("sha512", uniqid());
|
|
@@ -332,23 +186,11 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Get token_validity
|
|
|
- *
|
|
|
- * @return \DateTime
|
|
|
- */
|
|
|
public function getTokenValidity()
|
|
|
{
|
|
|
return $this->tokenValidity;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Set token
|
|
|
- *
|
|
|
- * @param \DateTime $tokenValidity
|
|
|
- *
|
|
|
- * @return User
|
|
|
- */
|
|
|
private function setTokenValidity(\DateTime $tokenValidity)
|
|
|
{
|
|
|
$this->tokenValidity = $tokenValidity;
|
|
@@ -356,26 +198,12 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Is ValidToken
|
|
|
- *
|
|
|
- * @return boolean
|
|
|
- *
|
|
|
- */
|
|
|
-
|
|
|
public function isValidToken()
|
|
|
{
|
|
|
$expire = $this->getTokenValidity()->modify('+1 hour');
|
|
|
return ( $expire > new \DateTime('now') );
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Set roles
|
|
|
- *
|
|
|
- * @param array $roles
|
|
|
- *
|
|
|
- * @return User
|
|
|
- */
|
|
|
public function setRoles($roles)
|
|
|
{
|
|
|
$this->roles = $roles;
|
|
@@ -383,11 +211,6 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Get roles
|
|
|
- *
|
|
|
- * @return array
|
|
|
- */
|
|
|
public function getRoles()
|
|
|
{
|
|
|
return $this->roles;
|
|
@@ -397,9 +220,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
{
|
|
|
|
|
|
}
|
|
|
- /**
|
|
|
- * Constructor
|
|
|
- */
|
|
|
+
|
|
|
public function __construct()
|
|
|
{
|
|
|
$this->films = new \Doctrine\Common\Collections\ArrayCollection();
|
|
@@ -409,13 +230,7 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
}
|
|
|
|
|
|
///////////////////////////////////////////////////////////////
|
|
|
- /**
|
|
|
- * Add film
|
|
|
- *
|
|
|
- * @param \App\Entity\Film $film
|
|
|
- *
|
|
|
- * @return User
|
|
|
- */
|
|
|
+
|
|
|
public function addFilm(\App\Entity\Film $film)
|
|
|
{
|
|
|
$this->films[] = $film;
|
|
@@ -423,34 +238,18 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Remove film
|
|
|
- *
|
|
|
- * @param \App\Entity\Film $film
|
|
|
- */
|
|
|
public function removeFilm(\App\Entity\Film $film)
|
|
|
{
|
|
|
$this->films->removeElement($film);
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Get films
|
|
|
- *
|
|
|
- * @return \Doctrine\Common\Collections\Collection
|
|
|
- */
|
|
|
public function getFilms()
|
|
|
{
|
|
|
return $this->films;
|
|
|
}
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
- /**
|
|
|
- * Add film
|
|
|
- *
|
|
|
- * @param \App\Entity\Film $film
|
|
|
- *
|
|
|
- * @return User
|
|
|
- */
|
|
|
+
|
|
|
public function addFilmVu(\App\Entity\Film $film)
|
|
|
{
|
|
|
$this->filmsVus[] = $film;
|
|
@@ -458,30 +257,16 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Remove film
|
|
|
- *
|
|
|
- * @param \App\Entity\Film $film
|
|
|
- */
|
|
|
public function removeFilmVu(\App\Entity\Film $film)
|
|
|
{
|
|
|
$this->filmsVus->removeElement($film);
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Get films
|
|
|
- *
|
|
|
- * @return \Doctrine\Common\Collections\Collection
|
|
|
- */
|
|
|
public function getFilmsVus()
|
|
|
{
|
|
|
return $this->filmsVus;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Get nomComplet
|
|
|
- * @return string
|
|
|
- */
|
|
|
public function getNomComplet()
|
|
|
{
|
|
|
if ($this->prenom == null && $this->nom == null)
|
|
@@ -511,7 +296,6 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
return $this->isActive;
|
|
|
}
|
|
|
|
|
|
- /** @see \Serializable::serialize() */
|
|
|
public function serialize()
|
|
|
{
|
|
|
return serialize(array(
|
|
@@ -524,7 +308,6 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
));
|
|
|
}
|
|
|
|
|
|
- /** @see \Serializable::unserialize() */
|
|
|
public function unserialize($serialized)
|
|
|
{
|
|
|
list (
|
|
@@ -538,19 +321,11 @@ class User implements UserInterface,PasswordAuthenticatedUserInterface
|
|
|
) = unserialize($serialized, array('allowed_classes' => false));
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @param \App\Entity\Film $film
|
|
|
- * @return boolean
|
|
|
- */
|
|
|
public function wantToSee(Film $film)
|
|
|
{
|
|
|
return $this->getFilms()->contains($film);
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @param \App\Entity\Film $film
|
|
|
- * @return boolean
|
|
|
- */
|
|
|
public function haveSeen(Film $film)
|
|
|
{
|
|
|
return $this->getFilmsVus()->contains($film);
|