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

124 lines
3 KiB
PHP
Raw Normal View History

2015-01-22 16:18:56 +00:00
<?php
namespace Wallabag\CoreBundle\Repository;
2015-01-22 16:18:56 +00:00
use Doctrine\ORM\EntityRepository;
use Pagerfanta\Adapter\DoctrineORMAdapter;
use Pagerfanta\Pagerfanta;
2015-01-22 16:18:56 +00:00
2015-02-06 06:45:32 +00:00
class EntryRepository extends EntityRepository
2015-01-22 16:18:56 +00:00
{
2015-01-23 13:58:17 +00:00
/**
* Return a query builder to used by other getBuilderFor* method.
2015-01-23 13:58:17 +00:00
*
* @param int $userId
*
* @return QueryBuilder
2015-01-23 13:58:17 +00:00
*/
private function getBuilderByUser($userId)
2015-01-22 16:18:56 +00:00
{
return $this->createQueryBuilder('e')
->leftJoin('e.user', 'u')
->andWhere('u.id = :userId')->setParameter('userId', $userId)
->orderBy('e.id', 'desc')
;
}
/**
* Retrieves unread entries for a user.
*
* @param int $userId
*
* @return QueryBuilder
*/
public function getBuilderForUnreadByUser($userId)
{
return $this
->getBuilderByUser($userId)
->andWhere('e.isArchived = false')
;
2015-01-22 16:18:56 +00:00
}
2015-01-22 20:11:22 +00:00
2015-01-23 13:58:17 +00:00
/**
2015-05-30 11:52:26 +00:00
* Retrieves read entries for a user.
2015-01-23 13:58:17 +00:00
*
* @param int $userId
*
* @return QueryBuilder
2015-01-23 13:58:17 +00:00
*/
public function getBuilderForArchiveByUser($userId)
2015-01-22 20:11:22 +00:00
{
return $this
->getBuilderByUser($userId)
->andWhere('e.isArchived = true')
;
2015-01-22 20:11:22 +00:00
}
2015-01-23 13:58:17 +00:00
/**
2015-05-30 11:52:26 +00:00
* Retrieves starred entries for a user.
2015-01-23 13:58:17 +00:00
*
* @param int $userId
*
* @return QueryBuilder
2015-01-23 13:58:17 +00:00
*/
public function getBuilderForStarredByUser($userId)
2015-01-22 20:11:22 +00:00
{
return $this
->getBuilderByUser($userId)
->andWhere('e.isStarred = true')
;
2015-01-22 20:11:22 +00:00
}
2015-01-30 06:50:52 +00:00
/**
2015-05-30 11:52:26 +00:00
* Find Entries.
*
2015-02-09 21:07:39 +00:00
* @param int $userId
* @param bool $isArchived
* @param bool $isStarred
* @param string $sort
* @param string $order
*
2015-02-10 12:53:00 +00:00
* @return array
*/
2015-02-20 14:36:25 +00:00
public function findEntries($userId, $isArchived = null, $isStarred = null, $sort = 'created', $order = 'ASC')
2015-01-30 06:50:52 +00:00
{
$qb = $this->createQueryBuilder('e')
->where('e.user =:userId')->setParameter('userId', $userId);
if (null !== $isArchived) {
$qb->andWhere('e.isArchived =:isArchived')->setParameter('isArchived', (bool) $isArchived);
}
if (null !== $isStarred) {
$qb->andWhere('e.isStarred =:isStarred')->setParameter('isStarred', (bool) $isStarred);
}
2015-02-05 06:54:04 +00:00
if ('created' === $sort) {
$qb->orderBy('e.id', $order);
2015-02-05 06:54:04 +00:00
} elseif ('updated' === $sort) {
$qb->orderBy('e.updatedAt', $order);
}
$pagerAdapter = new DoctrineORMAdapter($qb);
return new Pagerfanta($pagerAdapter);
2015-01-30 06:50:52 +00:00
}
2015-02-24 06:42:09 +00:00
2015-02-24 21:00:24 +00:00
/**
* Fetch an entry with a tag. Only used for tests.
*
* @return Entry
*/
public function findOneWithTags($userId)
2015-02-24 06:42:09 +00:00
{
$qb = $this->createQueryBuilder('e')
->innerJoin('e.tags', 't')
2015-02-26 13:25:40 +00:00
->innerJoin('e.user', 'u')
->addSelect('t', 'u')
->where('e.user=:userId')->setParameter('userId', $userId)
;
2015-02-26 13:25:40 +00:00
return $qb->getQuery()->getResult();
2015-02-24 06:42:09 +00:00
}
2015-01-22 16:18:56 +00:00
}