]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Repository/TagRepository.php
Merge pull request #2677 from wallabag/add-wallabag_user.de.yml
[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;
b3dc0749 6
6d37a7e6 7class TagRepository extends EntityRepository
b3dc0749 8{
7244d6cb 9 /**
28987583 10 * Count all tags per user.
7244d6cb 11 *
fc732227 12 * @param int $userId
faa86e06 13 * @param int $cacheLifeTime Duration of the cache for this query
7244d6cb 14 *
28987583 15 * @return int
7244d6cb 16 */
28987583 17 public function countAllTags($userId, $cacheLifeTime = null)
faa86e06
JB
18 {
19 $query = $this->createQueryBuilder('t')
28987583 20 ->select('t.slug')
faa86e06
JB
21 ->leftJoin('t.entries', 'e')
22 ->where('e.user = :userId')->setParameter('userId', $userId)
23 ->groupBy('t.slug')
24 ->getQuery();
25
26 if (null !== $cacheLifeTime) {
27 $query->useQueryCache(true);
28 $query->useResultCache(true);
29 $query->setResultCacheLifetime($cacheLifeTime);
30 }
31
28987583 32 return count($query->getArrayResult());
faa86e06
JB
33 }
34
35 /**
28bb4890 36 * Find all tags per user.
b0de88f7
JB
37 * Instead of just left joined on the Entry table, we select only id and group by id to avoid tag multiplication in results.
38 * Once we have all tags id, we can safely request them one by one.
39 * This'll still be fastest than the previous query.
faa86e06
JB
40 *
41 * @param int $userId
42 *
43 * @return array
44 */
28bb4890 45 public function findAllTags($userId)
7244d6cb 46 {
b0de88f7
JB
47 $ids = $this->createQueryBuilder('t')
48 ->select('t.id')
e9023a16 49 ->leftJoin('t.entries', 'e')
faa86e06 50 ->where('e.user = :userId')->setParameter('userId', $userId)
b0de88f7 51 ->groupBy('t.id')
faa86e06 52 ->getQuery()
28bb4890 53 ->getArrayResult();
567421af 54
b0de88f7
JB
55 $tags = [];
56 foreach ($ids as $id) {
57 $tags[] = $this->find($id);
58 }
59
60 return $tags;
206bade5
JB
61 }
62
567421af
TC
63 /**
64 * Used only in test case to get a tag for our entry.
65 *
66 * @return Tag
67 */
e686a76d 68 public function findOneByEntryAndTagLabel($entry, $label)
567421af
TC
69 {
70 return $this->createQueryBuilder('t')
71 ->leftJoin('t.entries', 'e')
72 ->where('e.id = :entryId')->setParameter('entryId', $entry->getId())
73 ->andWhere('t.label = :label')->setParameter('label', $label)
74 ->setMaxResults(1)
75 ->getQuery()
76 ->getSingleResult();
77 }
b3dc0749 78}