wallabag/src/Wallabag/CoreBundle/Repository/TagRepository.php

67 lines
1.7 KiB
PHP
Raw Normal View History

2015-02-20 16:18:48 +00:00
<?php
namespace Wallabag\CoreBundle\Repository;
use Doctrine\ORM\EntityRepository;
2015-02-20 16:20:12 +00:00
class TagRepository extends EntityRepository
2015-02-20 16:18:48 +00:00
{
2015-08-19 09:46:21 +00:00
/**
* Find all tags per user.
2015-08-19 09:46:21 +00:00
*
2015-12-29 13:50:52 +00:00
* @param int $userId
* @param int $cacheLifeTime Duration of the cache for this query
2015-08-19 09:46:21 +00:00
*
2015-12-29 13:50:52 +00:00
* @return array
2015-08-19 09:46:21 +00:00
*/
public function findAllTags($userId, $cacheLifeTime = null)
{
$query = $this->createQueryBuilder('t')
->select('t')
->leftJoin('t.entries', 'e')
->where('e.user = :userId')->setParameter('userId', $userId)
->groupBy('t.slug')
->getQuery();
if (null !== $cacheLifeTime) {
$query->useQueryCache(true);
$query->useResultCache(true);
$query->setResultCacheLifetime($cacheLifeTime);
}
return $query->getArrayResult();
}
/**
* Find all tags with associated entries per user.
*
* @param int $userId
*
* @return array
*/
public function findAllTagsWithEntries($userId)
2015-08-19 09:46:21 +00:00
{
2016-05-03 07:39:34 +00:00
return $this->createQueryBuilder('t')
->leftJoin('t.entries', 'e')
->where('e.user = :userId')->setParameter('userId', $userId)
->getQuery()
->getResult();
2015-08-19 09:46:21 +00:00
}
2016-02-10 16:41:28 +00:00
/**
* Used only in test case to get a tag for our entry.
*
* @return Tag
*/
public function findOneByEntryAndTagLabel($entry, $label)
2016-02-10 16:41:28 +00:00
{
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()
->getSingleResult();
}
2015-02-20 16:18:48 +00:00
}