User.php 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\Security\Core\User\UserInterface;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  7. /**
  8. * User
  9. *
  10. * @ORM\Table(name="user")
  11. * @ORM\Entity(repositoryClass="App\Repository\UserRepository")
  12. * @UniqueEntity(fields="username", message="Le username est déjà utilisé")
  13. * @UniqueEntity(fields="mail", message="L'email est déjà utilisé")
  14. * @UniqueEntity(fields="token", message="Erreur, token non unique")
  15. *
  16. */
  17. class User implements UserInterface
  18. {
  19. /**
  20. * @var int
  21. *
  22. * @ORM\Column(name="id", type="integer")
  23. * @ORM\Id
  24. * @ORM\GeneratedValue(strategy="AUTO")
  25. */
  26. private $id;
  27. /**
  28. * @var string
  29. *
  30. * @ORM\Column(name="username", type="string", length=191, unique=true)
  31. */
  32. private $username;
  33. /**
  34. * @var string
  35. *
  36. * @ORM\Column(name="prenom", type="string", length=191, nullable=true)
  37. */
  38. private $prenom;
  39. /**
  40. * @var string
  41. *
  42. * @ORM\Column(name="nom", type="string", length=191, nullable=true)
  43. */
  44. private $nom;
  45. /**
  46. * @var string
  47. *
  48. * @ORM\Column(name="mail", type="string", length=191, unique=true)
  49. * @Assert\Email()
  50. */
  51. private $mail;
  52. /**
  53. * @var string
  54. *
  55. * @ORM\Column(name="password", type="string", length=191)
  56. */
  57. private $password;
  58. /**
  59. * @var string
  60. *
  61. * @ORM\Column(name="token", type="string", length=191, unique=true)
  62. */
  63. private $token;
  64. /**
  65. * @var \DateTime
  66. *
  67. * @ORM\Column(name="token_validity", type="datetime")
  68. * @Assert\DateTime()
  69. */
  70. private $tokenValidity;
  71. /**
  72. * @var string
  73. *
  74. * @ORM\Column(name="salt", type="string", length=191, nullable=true)
  75. */
  76. private $salt;
  77. /**
  78. * @var boolean
  79. *
  80. * @ORM\Column(name="is_active", type="boolean")
  81. */
  82. private $isActive;
  83. /**
  84. * @var array
  85. *
  86. * @ORM\Column(name="roles", type="array")
  87. */
  88. private $roles = array();
  89. /**
  90. * @var \DateTime
  91. *
  92. * @ORM\Column(name="last_activity", type="datetime")
  93. * @Assert\DateTime()
  94. */
  95. private $lastActivity;
  96. /**
  97. * @return \DateTime
  98. */
  99. public function getLastActivity()
  100. {
  101. return $this->lastActivity;
  102. }
  103. /**
  104. * @param \DateTime $lastActivity
  105. */
  106. public function setLastActivity($lastActivity)
  107. {
  108. $this->lastActivity = $lastActivity;
  109. }
  110. /**
  111. * @return boolean
  112. */
  113. public function isActiveNow()
  114. {
  115. $delay = new \DateTime('5 minutes ago');
  116. return ( $this->getLastActivity() > $delay );
  117. }
  118. /**
  119. * @ORM\ManyToMany(targetEntity="App\Entity\Film", mappedBy="usersWantToView")
  120. * @var \Doctrine\Common\Collections\Collection
  121. */
  122. private $films;
  123. /**
  124. * @ORM\ManyToMany(targetEntity="App\Entity\Film", mappedBy="usersWhoSeen")
  125. * @var \Doctrine\Common\Collections\Collection
  126. */
  127. private $filmsVus;
  128. /**
  129. * Get id
  130. *
  131. * @return int
  132. */
  133. public function getId()
  134. {
  135. return $this->id;
  136. }
  137. /**
  138. * Set username
  139. *
  140. * @param string $username
  141. *
  142. * @return User
  143. */
  144. public function setUsername($username)
  145. {
  146. $this->username = $username;
  147. return $this;
  148. }
  149. /**
  150. * Get username
  151. *
  152. * @return string
  153. */
  154. public function getUsername()
  155. {
  156. return $this->username;
  157. }
  158. /**
  159. * @param bool $activated
  160. */
  161. public function setActivated($activated)
  162. {
  163. $this->isActive = $activated;
  164. }
  165. /**
  166. * @return bool
  167. */
  168. public function getActivated()
  169. {
  170. return $this->isActive;
  171. }
  172. /**
  173. * @return string
  174. */
  175. public function getPrenom()
  176. {
  177. return $this->prenom;
  178. }
  179. /**
  180. * @param string $prenom
  181. */
  182. public function setPrenom($prenom)
  183. {
  184. $this->prenom = $prenom;
  185. }
  186. /**
  187. * @return string
  188. */
  189. public function getNom()
  190. {
  191. return $this->nom;
  192. }
  193. /**
  194. * @param string $nom
  195. */
  196. public function setNom($nom)
  197. {
  198. $this->nom = $nom;
  199. }
  200. /**
  201. * @return string
  202. */
  203. public function getMail()
  204. {
  205. return $this->mail;
  206. }
  207. /**
  208. * @param string $mail
  209. */
  210. public function setMail($mail)
  211. {
  212. $this->mail = $mail;
  213. }
  214. /**
  215. * Set password
  216. *
  217. * @param string $password
  218. *
  219. * @return User
  220. */
  221. public function setPassword($password)
  222. {
  223. $this->password = $password;
  224. return $this;
  225. }
  226. /**
  227. * Get password
  228. *
  229. * @return string
  230. */
  231. public function getPassword()
  232. {
  233. return $this->password;
  234. }
  235. /**
  236. * Set salt
  237. *
  238. * @param string $salt
  239. *
  240. * @return User
  241. */
  242. public function setSalt($salt)
  243. {
  244. $this->salt = $salt;
  245. return $this;
  246. }
  247. /**
  248. * Get salt
  249. *
  250. * @return string
  251. */
  252. public function getSalt()
  253. {
  254. return $this->salt;
  255. }
  256. /**
  257. * Get token
  258. *
  259. * @return string
  260. */
  261. public function getToken()
  262. {
  263. return $this->token;
  264. }
  265. /**
  266. * Set token
  267. *
  268. * @return User
  269. */
  270. public function setToken($token)
  271. {
  272. //$this->token = hash("sha512", uniqid());
  273. $this->token = $token;
  274. $this->setTokenValidity(new \DateTime());
  275. return $this;
  276. }
  277. /**
  278. * Get token_validity
  279. *
  280. * @return \DateTime
  281. */
  282. public function getTokenValidity()
  283. {
  284. return $this->tokenValidity;
  285. }
  286. /**
  287. * Set token
  288. *
  289. * @param \DateTime $tokenValidity
  290. *
  291. * @return User
  292. */
  293. private function setTokenValidity(\DateTime $tokenValidity)
  294. {
  295. $this->tokenValidity = $tokenValidity;
  296. return $this;
  297. }
  298. /**
  299. * Is ValidToken
  300. *
  301. * @return boolean
  302. *
  303. */
  304. public function isValidToken()
  305. {
  306. $expire = $this->getTokenValidity()->modify('+1 hour');
  307. return ( $expire > new \DateTime('now') );
  308. }
  309. /**
  310. * Set roles
  311. *
  312. * @param array $roles
  313. *
  314. * @return User
  315. */
  316. public function setRoles($roles)
  317. {
  318. $this->roles = $roles;
  319. return $this;
  320. }
  321. /**
  322. * Get roles
  323. *
  324. * @return array
  325. */
  326. public function getRoles()
  327. {
  328. return $this->roles;
  329. }
  330. public function eraseCredentials()
  331. {
  332. }
  333. /**
  334. * Constructor
  335. */
  336. public function __construct()
  337. {
  338. $this->films = new \Doctrine\Common\Collections\ArrayCollection();
  339. //$this->setToken();
  340. $this->setLastActivity(new \DateTime('now'));
  341. $this->setActivated(true);
  342. }
  343. ///////////////////////////////////////////////////////////////
  344. /**
  345. * Add film
  346. *
  347. * @param \App\Entity\Film $film
  348. *
  349. * @return User
  350. */
  351. public function addFilm(\App\Entity\Film $film)
  352. {
  353. $this->films[] = $film;
  354. return $this;
  355. }
  356. /**
  357. * Remove film
  358. *
  359. * @param \App\Entity\Film $film
  360. */
  361. public function removeFilm(\App\Entity\Film $film)
  362. {
  363. $this->films->removeElement($film);
  364. }
  365. /**
  366. * Get films
  367. *
  368. * @return \Doctrine\Common\Collections\Collection
  369. */
  370. public function getFilms()
  371. {
  372. return $this->films;
  373. }
  374. ///////////////////////////////////////////////////////////////////////////
  375. /**
  376. * Add film
  377. *
  378. * @param \App\Entity\Film $film
  379. *
  380. * @return User
  381. */
  382. public function addFilmVu(\App\Entity\Film $film)
  383. {
  384. $this->filmsVus[] = $film;
  385. return $this;
  386. }
  387. /**
  388. * Remove film
  389. *
  390. * @param \App\Entity\Film $film
  391. */
  392. public function removeFilmVu(\App\Entity\Film $film)
  393. {
  394. $this->filmsVus->removeElement($film);
  395. }
  396. /**
  397. * Get films
  398. *
  399. * @return \Doctrine\Common\Collections\Collection
  400. */
  401. public function getFilmsVus()
  402. {
  403. return $this->filmsVus;
  404. }
  405. /**
  406. * Get nomComplet
  407. * @return string
  408. */
  409. public function getNomComplet()
  410. {
  411. if ($this->prenom == null && $this->nom == null)
  412. {
  413. return $this->getUsername();
  414. } else
  415. return $this->getPrenom()." ".$this->getNom();
  416. }
  417. public function isAccountNonExpired()
  418. {
  419. return true;
  420. }
  421. public function isAccountNonLocked()
  422. {
  423. return true;
  424. }
  425. public function isCredentialsNonExpired()
  426. {
  427. return true;
  428. }
  429. public function isEnabled()
  430. {
  431. return $this->isActive;
  432. }
  433. /** @see \Serializable::serialize() */
  434. public function serialize()
  435. {
  436. return serialize(array(
  437. $this->id,
  438. $this->username,
  439. $this->password,
  440. $this->isActive,
  441. // see section on salt below
  442. // $this->salt,
  443. ));
  444. }
  445. /** @see \Serializable::unserialize() */
  446. public function unserialize($serialized)
  447. {
  448. list (
  449. $this->id,
  450. $this->username,
  451. $this->password,
  452. $this->isActive,
  453. // see section on salt below
  454. // $this->salt
  455. ) = unserialize($serialized, array('allowed_classes' => false));
  456. }
  457. /**
  458. * @param \App\Entity\Film $film
  459. * @return boolean
  460. */
  461. public function wantToSee(Film $film)
  462. {
  463. return $this->getFilms()->contains($film);
  464. }
  465. /**
  466. * @param \App\Entity\Film $film
  467. * @return boolean
  468. */
  469. public function haveSeen(Film $film)
  470. {
  471. return $this->getFilmsVus()->contains($film);
  472. }
  473. }