CommentaireRepository.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. namespace App\Repository;
  3. use App\Entity\Commentaire;
  4. use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
  5. use Doctrine\Persistence\ManagerRegistry;
  6. /**
  7. * @method Commentaire|null find($id, $lockMode = null, $lockVersion = null)
  8. * @method Commentaire|null findOneBy(array $criteria, array $orderBy = null)
  9. * @method Commentaire[] findAll()
  10. * @method Commentaire[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
  11. */
  12. class CommentaireRepository extends ServiceEntityRepository
  13. {
  14. public function __construct(ManagerRegistry $registry)
  15. {
  16. parent::__construct($registry, Commentaire::class);
  17. }
  18. public function findLast ($limit = 5)
  19. {
  20. return $qb = $this->createQueryBuilder('c')
  21. ->innerJoin('c.film', 'flm')->addSelect('flm')
  22. ->innerJoin('c.user', 'usr')->addSelect('usr')
  23. ->setMaxResults($limit)
  24. ->orderBy('c.id', 'DESC')
  25. ->getQuery()
  26. ->getResult();
  27. }
  28. public function countCommentairesParMois(): array
  29. {
  30. return $this->createQueryBuilder('c')
  31. ->select("DATE_FORMAT(c.dateSubmitted, '%Y-%m') as month, COUNT(c.id) as entryCount")
  32. ->where('c.dateSubmitted IS NOT NULL')
  33. ->groupBy('month')
  34. ->orderBy('month', 'ASC')
  35. ->getQuery()
  36. ->getResult()
  37. ;
  38. }
  39. public function findFirstDateAdded()
  40. {
  41. // Construire une requête pour obtenir la première date d'ajout
  42. return $this->createQueryBuilder('c')
  43. ->select('c.dateSubmitted')
  44. ->orderBy('c.dateSubmitted', 'ASC') // Trier par date croissante
  45. ->setMaxResults(1) // Limiter à 1 résultat (la première date)
  46. ->getQuery()
  47. ->getOneOrNullResult(); // Récupérer le premier résultat ou null
  48. }
  49. }