]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Repository/TagRepository.php
TagRepository: refactor query builder for queries by userId
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Repository / TagRepository.php
CommitLineData
b3dc0749
NL
1<?php
2
3namespace Wallabag\CoreBundle\Repository;
4
5use Doctrine\ORM\EntityRepository;
6708bf23 6use Doctrine\ORM\QueryBuilder;
52b84c11 7use Wallabag\CoreBundle\Entity\Tag;
b3dc0749 8
6d37a7e6 9class TagRepository extends EntityRepository
b3dc0749 10{
7244d6cb 11 /**
28987583 12 * Count all tags per user.
7244d6cb 13 *
fc732227 14 * @param int $userId
faa86e06 15 * @param int $cacheLifeTime Duration of the cache for this query
7244d6cb 16 *
28987583 17 * @return int
7244d6cb 18 */
28987583 19 public function countAllTags($userId, $cacheLifeTime = null)
faa86e06
JB
20 {
21 $query = $this->createQueryBuilder('t')
28987583 22 ->select('t.slug')
faa86e06
JB
23 ->leftJoin('t.entries', 'e')
24 ->where('e.user = :userId')->setParameter('userId', $userId)
25 ->groupBy('t.slug')
26 ->getQuery();
27
28 if (null !== $cacheLifeTime) {
29 $query->useQueryCache(true);
30 $query->useResultCache(true);
31 $query->setResultCacheLifetime($cacheLifeTime);
32 }
33
2a1ceb67 34 return \count($query->getArrayResult());
faa86e06
JB
35 }
36
37 /**
28bb4890 38 * Find all tags per user.
b0de88f7
JB
39 * Instead of just left joined on the Entry table, we select only id and group by id to avoid tag multiplication in results.
40 * Once we have all tags id, we can safely request them one by one.
41 * This'll still be fastest than the previous query.
faa86e06
JB
42 *
43 * @param int $userId
44 *
45 * @return array
46 */
28bb4890 47 public function findAllTags($userId)
7244d6cb 48 {
6708bf23 49 $ids = $this->getQueryBuilderByUser($userId)
b0de88f7 50 ->select('t.id')
faa86e06 51 ->getQuery()
28bb4890 52 ->getArrayResult();
567421af 53
b0de88f7
JB
54 $tags = [];
55 foreach ($ids as $id) {
56 $tags[] = $this->find($id);
57 }
58
59 return $tags;
206bade5
JB
60 }
61
935e9fff
NH
62 /**
63 * Find all tags (flat) per user with nb entries.
64 *
65 * @param int $userId
66 *
67 * @return array
68 */
69 public function findAllFlatTagsWithNbEntries($userId)
70 {
6708bf23 71 return $this->getQueryBuilderByUser($userId)
935e9fff
NH
72 ->select('t.id, t.label, t.slug, count(e.id) as nbEntries')
73 ->distinct(true)
935e9fff
NH
74 ->getQuery()
75 ->getArrayResult();
76 }
77
567421af
TC
78 /**
79 * Used only in test case to get a tag for our entry.
80 *
81 * @return Tag
82 */
e686a76d 83 public function findOneByEntryAndTagLabel($entry, $label)
567421af
TC
84 {
85 return $this->createQueryBuilder('t')
86 ->leftJoin('t.entries', 'e')
87 ->where('e.id = :entryId')->setParameter('entryId', $entry->getId())
88 ->andWhere('t.label = :label')->setParameter('label', $label)
89 ->setMaxResults(1)
90 ->getQuery()
91 ->getSingleResult();
92 }
6da1aebc 93
13a592a1 94 public function findForArchivedArticlesByUser($userId)
6da1aebc 95 {
6708bf23 96 $ids = $this->getQueryBuilderByUser($userId)
6da1aebc 97 ->select('t.id')
6da1aebc 98 ->andWhere('e.isArchived = true')
6da1aebc
TC
99 ->getQuery()
100 ->getArrayResult();
101
102 $tags = [];
103 foreach ($ids as $id) {
104 $tags[] = $this->find($id);
105 }
106
107 return $tags;
108 }
6708bf23
KD
109
110 /**
111 * Retrieve a sorted list of tags used by a user.
112 *
113 * @param int $userId
114 *
115 * @return QueryBuilder
116 */
117 private function getQueryBuilderByUser($userId)
118 {
119 return $this->createQueryBuilder('t')
120 ->leftJoin('t.entries', 'e')
121 ->where('e.user = :userId')->setParameter('userId', $userId)
122 ->groupBy('t.id')
123 ->orderBy('t.slug');
124 }
b3dc0749 125}