X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FRepository%2FEntryRepository.php;h=6941eaeeb6e738fadd545e331116c22e2259fa4d;hb=a06ebf826714feb7c48859ff2877b1b8904b6e07;hp=71ed7b6d837a01f960184fd780e074c78bdb6aa4;hpb=ba335762a80e7860a166c9191502e9c35a5d76b4;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Repository/EntryRepository.php b/src/Wallabag/CoreBundle/Repository/EntryRepository.php index 71ed7b6d..6941eaee 100644 --- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php +++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php @@ -436,17 +436,14 @@ class EntryRepository extends EntityRepository * @throws \Doctrine\ORM\NoResultException * @throws \Doctrine\ORM\NonUniqueResultException * + * @see https://github.com/doctrine/doctrine2/issues/5479#issuecomment-403862934 + * * @return Entry */ public function getRandomEntry($userId, $status = '') { - $max = $this->getEntityManager() - ->createQuery('SELECT MAX(e.id) FROM Wallabag\CoreBundle\Entity\Entry e WHERE e.user = :userId') - ->setParameter('userId', $userId) - ->getSingleScalarResult(); - - $qb = $this->createQueryBuilder('e') - ->where('e.user = :user_id')->setParameter('user_id', $userId); + $qb = $this->getQueryBuilderByUser($userId) + ->select('MIN(e.id)', 'MAX(e.id)'); if ('unread' === $status) { $qb->andWhere('e.isArchived = false'); @@ -465,8 +462,15 @@ class EntryRepository extends EntityRepository $qb->andWhere('t.id is null'); } - return $qb->andWhere('e.id >= :rand') - ->setParameter('rand', rand(0, $max)) + $idLimits = $qb + ->getQuery() + ->getOneOrNullResult(); + $randomPossibleIds = rand($idLimits[1], $idLimits[2]); + + return $qb + ->select('e') + ->andWhere('e.id >= :random_id') + ->setParameter('random_id', $randomPossibleIds) ->setMaxResults(1) ->getQuery() ->getSingleResult();