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

313 lines
8 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;
2016-09-01 18:20:12 +00:00
use Doctrine\ORM\Query;
use Pagerfanta\Adapter\DoctrineORMAdapter;
use Pagerfanta\Pagerfanta;
2015-12-29 13:50:52 +00:00
use Wallabag\CoreBundle\Entity\Tag;
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 all entries for a user.
*
* @param int $userId
*
* @return QueryBuilder
*/
public function getBuilderForAllByUser($userId)
{
return $this
->getBuilderByUser($userId)
;
}
/**
* 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
2016-08-26 14:55:41 +00:00
/**
* Retrieves untagged entries for a user.
*
* @param int $userId
*
* @return QueryBuilder
*/
public function getBuilderForUntaggedByUser($userId)
{
return $this
->getBuilderByUser($userId)
->leftJoin('e.tags', 't')
->groupBy('e.id')
->having('count(t.id) = 0');
}
/**
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
2016-07-24 09:47:03 +00:00
* @param int $since
* @param string $tags
*
2015-02-10 12:53:00 +00:00
* @return array
*/
2016-06-25 14:27:38 +00:00
public function findEntries($userId, $isArchived = null, $isStarred = null, $sort = 'created', $order = 'ASC', $since = 0, $tags = '')
2015-01-30 06:50:52 +00:00
{
$qb = $this->createQueryBuilder('e')
2016-06-25 14:27:38 +00:00
->leftJoin('e.tags', 't')
->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);
}
2016-06-25 19:05:50 +00:00
if ($since >= 0) {
$qb->andWhere('e.updatedAt > :since')->setParameter('since', new \DateTime(date('Y-m-d H:i:s', $since)));
2016-06-29 18:52:37 +00:00
}
2016-06-25 14:27:38 +00:00
if ('' !== $tags) {
foreach (explode(',', $tags) as $tag) {
$qb->andWhere('t.label = :label')->setParameter('label', $tag);
}
2016-06-25 19:05:50 +00:00
}
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.
*
2016-01-09 13:34:49 +00:00
* @param int $userId
*
2015-02-24 21:00:24 +00:00
* @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
}
/**
* Find distinct language for a given user.
* Used to build the filter language list.
*
* @param int $userId User id
*
* @return array
*/
public function findDistinctLanguageByUser($userId)
{
$results = $this->createQueryBuilder('e')
->select('e.language')
->where('e.user = :userId')->setParameter('userId', $userId)
->andWhere('e.language IS NOT NULL')
->groupBy('e.language')
->orderBy('e.language', ' ASC')
->getQuery()
->getResult();
$languages = [];
foreach ($results as $result) {
$languages[$result['language']] = $result['language'];
}
return $languages;
}
2015-09-28 17:35:55 +00:00
/**
2015-10-01 07:26:52 +00:00
* Used only in test case to get the right entry associated to the right user.
2015-09-28 17:35:55 +00:00
*
2015-10-01 07:26:52 +00:00
* @param string $username
2015-09-28 17:35:55 +00:00
*
* @return Entry
*/
public function findOneByUsernameAndNotArchived($username)
{
return $this->createQueryBuilder('e')
->leftJoin('e.user', 'u')
->where('u.username = :username')->setParameter('username', $username)
->andWhere('e.isArchived = false')
->setMaxResults(1)
->getQuery()
->getSingleResult();
}
2015-12-29 13:50:52 +00:00
/**
* Remove a tag from all user entries.
*
* We need to loop on each entry attached to the given tag to remove it, since Doctrine doesn't know EntryTag entity because it's a ManyToMany relation.
* It could be faster with one query but I don't know how to retrieve the table name `entry_tag` which can have a prefix:
*
* DELETE et FROM entry_tag et WHERE et.entry_id IN ( SELECT e.id FROM entry e WHERE e.user_id = :userId ) AND et.tag_id = :tagId
2015-12-29 13:50:52 +00:00
*
* @param int $userId
* @param Tag $tag
*/
public function removeTag($userId, Tag $tag)
{
$entries = $this->getBuilderByUser($userId)
->innerJoin('e.tags', 't')
->andWhere('t.id = :tagId')->setParameter('tagId', $tag->getId())
->getQuery()
->getResult();
foreach ($entries as $entry) {
$entry->removeTag($tag);
}
$this->getEntityManager()->flush();
}
/**
2016-06-25 17:25:50 +00:00
* Remove tags from all user entries.
*
2016-06-25 17:25:50 +00:00
* @param int $userId
* @param Array<Tag> $tags
*/
2016-06-25 17:25:50 +00:00
public function removeTags($userId, $tags)
{
foreach ($tags as $tag) {
$this->removeTag($userId, $tag);
}
}
/**
* Find all entries that are attached to a give tag id.
*
* @param int $userId
* @param int $tagId
*
* @return array
*/
public function findAllByTagId($userId, $tagId)
{
return $this->getBuilderByUser($userId)
->innerJoin('e.tags', 't')
->andWhere('t.id = :tagId')->setParameter('tagId', $tagId)
->getQuery()
->getResult();
2015-12-29 13:50:52 +00:00
}
/**
* Find an entry by its url and its owner.
* If it exists, return the entry otherwise return false.
*
* @param $url
* @param $userId
*
* @return Entry|bool
*/
public function findByUrlAndUserId($url, $userId)
{
$res = $this->createQueryBuilder('e')
2016-10-01 15:57:38 +00:00
->where('e.url = :url')->setParameter('url', urldecode($url))
->andWhere('e.user = :user_id')->setParameter('user_id', $userId)
->getQuery()
->getResult();
if (count($res)) {
return current($res);
}
return false;
}
2016-01-09 13:34:49 +00:00
/**
* Count all entries for a user.
*
* @param int $userId
*
* @return int
2016-01-09 13:34:49 +00:00
*/
public function countAllEntriesByUsername($userId)
{
$qb = $this->createQueryBuilder('e')
->select('count(e)')
->where('e.user=:userId')->setParameter('userId', $userId)
;
return $qb->getQuery()->getSingleScalarResult();
}
2015-01-22 16:18:56 +00:00
}