CommentaireManager.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. namespace App\Service;
  3. use App\Entity\Commentaire;
  4. use App\Entity\Film;
  5. use Doctrine\ORM\EntityManagerInterface;
  6. use Symfony\Component\Security\Core\Security;
  7. use Symfony\Component\Security\Core\User\UserInterface;
  8. /**
  9. * Class CommentaireManager
  10. */
  11. class CommentaireManager {
  12. protected ?UserInterface $user;
  13. public function __construct(
  14. protected EntityManagerInterface $em,
  15. protected UniciteCollections $uc,
  16. Security $security
  17. )
  18. {
  19. $this->user = $security->getUser();
  20. }
  21. public function addCommentaire (Commentaire $commentaire, Film $film): void
  22. {
  23. $commentaire->setContenu(htmlspecialchars($commentaire->getContenu()));
  24. $commentaire->setUser($this->user);
  25. $commentaire->setFilm(($film));
  26. $film->addCommentaire($commentaire);
  27. $this->em->persist($commentaire);
  28. $this->em->flush();
  29. }
  30. public function editCommentaire(Commentaire $commentaire): void
  31. {
  32. $commentaire->setContenu(htmlspecialchars($commentaire->getContenu()));
  33. $this->em->flush();
  34. }
  35. public function delCommentaire(Commentaire $commentaire): void
  36. {
  37. $commentaire->getFilm()->removeCommentaire($commentaire);
  38. $this->em->remove($commentaire);
  39. $this->em->flush();
  40. }
  41. private function isEmpty (Commentaire $commentaire): bool
  42. {
  43. return (
  44. is_null($commentaire->getContenu()) &&
  45. is_null($commentaire->getNote()));
  46. }
  47. public function delEditAdd(Commentaire $commentaire, Film $film): void
  48. {
  49. if (!$this->isEmpty($commentaire))
  50. {
  51. if (!is_null($commentaire->getId()))
  52. {
  53. $this->editCommentaire($commentaire);
  54. return;
  55. } else {
  56. $this->addCommentaire($commentaire, $film);
  57. return;
  58. }
  59. } else {
  60. if (!is_null($commentaire->getId()))
  61. {
  62. $this->delCommentaire($commentaire);
  63. return;
  64. }
  65. }
  66. /*if ($this->isEmpty($commentaire)) {
  67. if (!is_null($commentaire->getId())) {
  68. $this->delCommentaire($commentaire);
  69. return;
  70. } else {
  71. $this->em->flush();
  72. return;
  73. }
  74. } else {
  75. $cm->addCommentaire($commentaireUser, $film);
  76. return;
  77. }*/
  78. }
  79. }