]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Repository/TagRepository.php
Merge pull request #2306 from wallabag/redis-rabbit-check
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Repository / TagRepository.php
index c4aeb5949f79fe76a69b8427300dfe625f283d4e..41f616079dd53f69032512adf6a1bfb176b98657 100644 (file)
@@ -3,19 +3,17 @@
 namespace Wallabag\CoreBundle\Repository;
 
 use Doctrine\ORM\EntityRepository;
-use Pagerfanta\Adapter\DoctrineORMAdapter;
-use Pagerfanta\Pagerfanta;
 
 class TagRepository extends EntityRepository
 {
     /**
-     * Return only the QueryBuilder to retrieve all tags for a given user.
+     * Find Tags.
      *
      * @param int $userId
      *
-     * @return QueryBuilder
+     * @return array
      */
-    private function getQbForAllTags($userId)
+    public function findAllTags($userId)
     {
         return $this->createQueryBuilder('t')
             ->leftJoin('t.entries', 'e')
@@ -23,32 +21,18 @@ class TagRepository extends EntityRepository
     }
 
     /**
-     * Find Tags and return a Pager.
-     *
-     * @param int $userId
-     *
-     * @return Pagerfanta
-     */
-    public function findTags($userId)
-    {
-        $qb = $this->getQbForAllTags($userId);
-
-        $pagerAdapter = new DoctrineORMAdapter($qb);
-
-        return new Pagerfanta($pagerAdapter);
-    }
-
-    /**
-     * Find Tags.
-     *
-     * @param int $userId
+     * Used only in test case to get a tag for our entry.
      *
-     * @return array
+     * @return Tag
      */
-    public function findAllTags($userId)
+    public function findOneByEntryAndTagLabel($entry, $label)
     {
-        return $this->getQbForAllTags($userId)
+        return $this->createQueryBuilder('t')
+            ->leftJoin('t.entries', 'e')
+            ->where('e.id = :entryId')->setParameter('entryId', $entry->getId())
+            ->andWhere('t.label = :label')->setParameter('label', $label)
+            ->setMaxResults(1)
             ->getQuery()
-            ->getResult();
+            ->getSingleResult();
     }
 }