wallabag/src/Repository/EntryRepository.php

786 lines
22 KiB
PHP
Raw Permalink Normal View History

2015-01-22 16:18:56 +00:00
<?php
2024-02-19 00:30:12 +00:00
namespace Wallabag\Repository;
2015-01-22 16:18:56 +00:00
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
2019-01-19 21:30:50 +00:00
use Doctrine\ORM\NoResultException;
2017-07-29 20:51:50 +00:00
use Doctrine\ORM\QueryBuilder;
use Doctrine\Persistence\ManagerRegistry;
2020-07-29 04:36:43 +00:00
use Pagerfanta\Doctrine\ORM\QueryAdapter as DoctrineORMAdapter;
use Pagerfanta\Pagerfanta;
2024-02-19 00:30:12 +00:00
use Wallabag\Entity\Entry;
use Wallabag\Entity\Tag;
use Wallabag\Helper\UrlHasher;
2015-01-22 16:18:56 +00:00
2022-11-23 14:51:33 +00:00
/**
* @method Entry[] findById(int $id)
* @method Entry|null findOneByUser(int $userId)
*/
class EntryRepository extends ServiceEntityRepository
2015-01-22 16:18:56 +00:00
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, Entry::class);
}
/**
* Retrieves all entries for a user.
*
* @param int $userId
*
* @return QueryBuilder
*/
public function getBuilderForAllByUser($userId)
{
return $this
->getSortedQueryBuilderByUser($userId)
;
}
2023-08-31 10:13:15 +00:00
/**
* Retrieves all entries count for a user.
*
* @param int $userId
*
* @return QueryBuilder
*/
public function getCountBuilderForAllByUser($userId)
{
return $this
->getQueryBuilderByUser($userId)
;
}
/**
* Retrieves unread entries for a user.
*
* @param int $userId
*
* @return QueryBuilder
*/
public function getBuilderForUnreadByUser($userId)
{
return $this
->getSortedQueryBuilderByUser($userId)
->andWhere('e.isArchived = false')
2024-01-01 18:11:01 +00:00
;
}
2023-08-31 10:13:15 +00:00
/**
* Retrieves unread entries count for a user.
*
* @param int $userId
*
* @return QueryBuilder
*/
public function getCountBuilderForUnreadByUser($userId)
{
return $this
->getQueryBuilderByUser($userId)
->andWhere('e.isArchived = false')
2024-01-01 18:11:01 +00:00
;
2023-08-31 10:13:15 +00:00
}
/**
* Retrieves entries with the same domain.
*
* @param int $userId
* @param int $entryId
*
* @return QueryBuilder
*/
public function getBuilderForSameDomainByUser($userId, $entryId)
{
$queryBuilder = $this->createQueryBuilder('e');
return $this
->getSortedQueryBuilderByUser($userId)
->andWhere('e.id <> :entryId')->setParameter('entryId', $entryId)
->andWhere(
$queryBuilder->expr()->in(
'e.domainName',
$this
->createQueryBuilder('e2')
->select('e2.domainName')
->where('e2.id = :entryId')->setParameter('entryId', $entryId)
->getDQL()
)
);
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
2018-09-21 09:18:29 +00:00
->getSortedQueryBuilderByUser($userId, 'archivedAt', 'desc')
->andWhere('e.isArchived = true')
;
2015-01-22 20:11:22 +00:00
}
2023-08-31 10:13:15 +00:00
/**
* Retrieves read entries count for a user.
*
* @param int $userId
*
* @return QueryBuilder
*/
public function getCountBuilderForArchiveByUser($userId)
{
return $this
->getQueryBuilderByUser($userId)
->andWhere('e.isArchived = true')
;
}
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
->getSortedQueryBuilderByUser($userId, 'starredAt', 'desc')
->andWhere('e.isStarred = true')
;
2015-01-22 20:11:22 +00:00
}
2015-01-30 06:50:52 +00:00
2023-08-31 10:13:15 +00:00
/**
* Retrieves starred entries count for a user.
*
* @param int $userId
*
* @return QueryBuilder
*/
public function getCountBuilderForStarredByUser($userId)
{
return $this
->getQueryBuilderByUser($userId)
->andWhere('e.isStarred = true')
;
}
2016-11-04 22:24:43 +00:00
/**
* Retrieves entries filtered with a search term for a user.
*
* @param int $userId
* @param string $term
2017-07-29 20:51:50 +00:00
* @param string $currentRoute
2016-11-04 22:24:43 +00:00
*
* @return QueryBuilder
*/
public function getBuilderForSearchByUser($userId, $term, $currentRoute)
2016-11-04 22:24:43 +00:00
{
$qb = $this
->getSortedQueryBuilderByUser($userId);
if ('starred' === $currentRoute) {
$qb->andWhere('e.isStarred = true');
2021-08-03 09:54:36 +00:00
} elseif ('unread' === $currentRoute || 'homepage' === $currentRoute) {
$qb->andWhere('e.isArchived = false');
} elseif ('archive' === $currentRoute) {
$qb->andWhere('e.isArchived = true');
}
// We lower() all parts here because PostgreSQL 'LIKE' verb is case-sensitive
$qb
->andWhere('lower(e.content) LIKE lower(:term) OR lower(e.title) LIKE lower(:term) OR lower(e.url) LIKE lower(:term) OR lower(a.text) LIKE lower(:term)')
->setParameter('term', '%' . $term . '%')
2016-11-04 22:24:43 +00:00
->leftJoin('e.tags', 't')
->leftJoin('e.annotations', 'a')
2016-11-18 16:36:19 +00:00
->groupBy('e.id');
return $qb;
2016-11-04 22:24:43 +00:00
}
2016-08-26 14:55:41 +00:00
/**
* Retrieve a sorted list of untagged entries for a user.
2016-08-26 14:55:41 +00:00
*
* @param int $userId
*
* @return QueryBuilder
*/
public function getBuilderForUntaggedByUser($userId)
{
2017-12-22 14:44:00 +00:00
return $this->sortQueryBuilder($this->getRawBuilderForUntaggedByUser($userId));
}
/**
* Retrieve entries with annotations for a user.
*
* @param int $userId
*
* @return QueryBuilder
*/
public function getBuilderForAnnotationsByUser($userId)
{
return $this
->getSortedQueryBuilderByUser($userId)
->innerJoin('e.annotations', 'a')
2024-01-01 18:11:01 +00:00
;
}
2023-08-31 10:13:15 +00:00
/**
* Retrieve entries with annotations count for a user.
*
* @param int $userId
*
* @return QueryBuilder
*/
public function getCountBuilderForAnnotationsByUser($userId)
{
return $this
->getQueryBuilderByUser($userId)
->innerJoin('e.annotations', 'a')
2024-01-01 18:11:01 +00:00
;
2023-08-31 10:13:15 +00:00
}
/**
* Retrieve untagged entries for a user.
*
* @param int $userId
*
* @return QueryBuilder
*/
public function getRawBuilderForUntaggedByUser($userId)
{
return $this->getQueryBuilderByUser($userId)
->leftJoin('e.tags', 't')
->andWhere('t.id is null');
2016-08-26 14:55:41 +00:00
}
/**
* Retrieve the number of untagged entries for a user.
2019-06-05 15:09:05 +00:00
*
* @param int $userId
2019-06-05 15:09:05 +00:00
*
* @return int
*/
public function countUntaggedEntriesByUser($userId)
{
2019-06-05 15:09:05 +00:00
return (int) $this->getRawBuilderForUntaggedByUser($userId)
->select('count(e.id)')
2019-06-05 15:09:05 +00:00
->getQuery()
->getSingleScalarResult();
}
/**
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 bool $isPublic
2015-02-09 21:07:39 +00:00
* @param string $sort
* @param string $order
2016-07-24 09:47:03 +00:00
* @param int $since
* @param string $tags
* @param string $detail 'metadata' or 'full'. Include content field if 'full'
* @param string $domainName
* @param bool $isNotParsed
*
* @todo Breaking change: replace default detail=full by detail=metadata in a future version
*
2017-07-29 20:51:50 +00:00
* @return Pagerfanta
*/
public function findEntries($userId, $isArchived = null, $isStarred = null, $isPublic = null, $sort = 'created', $order = 'asc', $since = 0, $tags = '', $detail = 'full', $domainName = '', $isNotParsed = null)
2015-01-30 06:50:52 +00:00
{
if (!\in_array(strtolower($detail), ['full', 'metadata'], true)) {
throw new \Exception('Detail "' . $detail . '" parameter is wrong, allowed: full or metadata');
}
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 ('metadata' === $detail) {
$fieldNames = $this->getClassMetadata()->getFieldNames();
$fields = array_filter($fieldNames, function ($k) {
return 'content' !== $k;
});
$qb->select(sprintf('partial e.{%s}', implode(',', $fields)));
}
if (null !== $isArchived) {
$qb->andWhere('e.isArchived = :isArchived')->setParameter('isArchived', (bool) $isArchived);
}
if (null !== $isStarred) {
$qb->andWhere('e.isStarred = :isStarred')->setParameter('isStarred', (bool) $isStarred);
}
if (null !== $isPublic) {
2017-07-01 07:52:38 +00:00
$qb->andWhere('e.uid IS ' . (true === $isPublic ? 'NOT' : '') . ' NULL');
}
if (null !== $isNotParsed) {
$qb->andWhere('e.isNotParsed = :isNotParsed')->setParameter('isNotParsed', (bool) $isNotParsed);
}
if ($since > 0) {
2016-06-25 19:05:50 +00:00
$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
}
if (\is_string($tags) && '' !== $tags) {
foreach (explode(',', $tags) as $i => $tag) {
$entryAlias = 'e' . $i;
$tagAlias = 't' . $i;
2022-10-04 00:31:43 +00:00
// Complex queries to ensure multiple tags are associated to an entry
// https://stackoverflow.com/a/6638146/569101
$qb->andWhere($qb->expr()->in(
'e.id',
$this->createQueryBuilder($entryAlias)
->select($entryAlias . '.id')
->leftJoin($entryAlias . '.tags', $tagAlias)
->where($tagAlias . '.label = :label' . $i)
->getDQL()
));
// bound parameter to the main query builder
$qb->setParameter('label' . $i, $tag);
2016-06-25 14:27:38 +00:00
}
2016-06-25 19:05:50 +00:00
}
if (\is_string($domainName) && '' !== $domainName) {
$qb->andWhere('e.domainName = :domainName')->setParameter('domainName', $domainName);
}
if (!\in_array(strtolower($order), ['asc', 'desc'], true)) {
throw new \Exception('Order "' . $order . '" parameter is wrong, allowed: asc or desc');
}
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);
2018-06-15 09:30:54 +00:00
} elseif ('archived' === $sort) {
2018-04-26 05:20:52 +00:00
$qb->orderBy('e.archivedAt', $order);
2015-02-05 06:54:04 +00:00
}
2016-12-14 08:00:14 +00:00
$pagerAdapter = new DoctrineORMAdapter($qb, true, false);
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
*
2017-07-29 20:51:50 +00:00
* @return array
2015-02-24 21:00:24 +00:00
*/
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
;
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
*/
public function removeTag($userId, Tag $tag)
{
$entries = $this->getSortedQueryBuilderByUser($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
2022-12-13 09:26:51 +00:00
* @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, $sort = 'createdAt')
{
return $this->getSortedQueryBuilderByUser($userId, $sort)
->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 string $url
* @param int $userId
*
2019-05-29 10:00:23 +00:00
* @return Entry|false
*/
public function findByUrlAndUserId($url, $userId)
{
return $this->findByHashedUrlAndUserId(
UrlHasher::hashUrl($url),
$userId
);
}
2016-01-09 13:34:49 +00:00
/**
* Find all entries which have an empty value for hash.
*
2023-08-08 01:27:21 +00:00
* @return Entry[]
*/
public function findByEmptyHashedUrlAndUserId(int $userId)
{
return $this->createQueryBuilder('e')
->where('e.hashedUrl = :empty')->setParameter('empty', '')
2020-12-22 13:58:07 +00:00
->orWhere('e.hashedUrl is null')
->andWhere('e.user = :user_id')->setParameter('user_id', $userId)
2020-12-22 13:58:07 +00:00
->andWhere('e.url is not null')
->getQuery()
->getResult();
}
/**
* Find an entry by its hashed url and its owner.
* If it exists, return the entry otherwise return false.
*
* @param string $hashedUrl Url hashed using sha1
* @param int $userId
*
2019-05-29 10:00:23 +00:00
* @return Entry|false
*/
public function findByHashedUrlAndUserId($hashedUrl, $userId)
{
// try first using hashed_url (to use the database index)
$res = $this->createQueryBuilder('e')
->where('e.hashedUrl = :hashed_url')->setParameter('hashed_url', $hashedUrl)
->andWhere('e.user = :user_id')->setParameter('user_id', $userId)
->getQuery()
->getResult();
if (\count($res)) {
return current($res);
}
// then try using hashed_given_url (to use the database index)
$res = $this->createQueryBuilder('e')
->where('e.hashedGivenUrl = :hashed_given_url')->setParameter('hashed_given_url', $hashedUrl)
->andWhere('e.user = :user_id')->setParameter('user_id', $userId)
->getQuery()
->getResult();
if (\count($res)) {
return current($res);
}
return false;
}
public function findByUserIdAndBatchHashedUrls($userId, $hashedUrls)
{
$qb = $this->createQueryBuilder('e')->select(['e.id', 'e.hashedUrl', 'e.hashedGivenUrl']);
$res = $qb->where('e.user = :user_id')->setParameter('user_id', $userId)
->andWhere(
$qb->expr()->orX(
$qb->expr()->in('e.hashedUrl', $hashedUrls),
$qb->expr()->in('e.hashedGivenUrl', $hashedUrls)
)
)
->getQuery()
->getResult();
return $res;
}
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 countAllEntriesByUser($userId)
2016-01-09 13:34:49 +00:00
{
$qb = $this->createQueryBuilder('e')
->select('count(e)')
->where('e.user = :userId')->setParameter('userId', $userId)
;
return (int) $qb->getQuery()->getSingleScalarResult();
}
/**
* Remove all entries for a user id.
2023-09-17 20:54:49 +00:00
* Used when a user wants to reset all information.
*
2016-10-08 09:14:09 +00:00
* @param int $userId
*/
public function removeAllByUserId($userId)
{
$this->getEntityManager()
2024-02-19 00:30:12 +00:00
->createQuery('DELETE FROM Wallabag\Entity\Entry e WHERE e.user = :userId')
2016-10-11 19:45:43 +00:00
->setParameter('userId', $userId)
->execute();
}
public function removeArchivedByUserId($userId)
{
$this->getEntityManager()
2024-02-19 00:30:12 +00:00
->createQuery('DELETE FROM Wallabag\Entity\Entry e WHERE e.user = :userId AND e.isArchived = TRUE')
->setParameter('userId', $userId)
->execute();
}
2017-02-24 10:27:03 +00:00
/**
* Get id and url from all entries
* Used for the clean-duplicates command.
*/
public function findAllEntriesIdAndUrlByUserId($userId)
2017-02-24 10:27:03 +00:00
{
$qb = $this->createQueryBuilder('e')
->select('e.id, e.url')
->where('e.user = :userid')->setParameter(':userid', $userId);
return $qb->getQuery()->getArrayResult();
}
2017-05-05 12:33:36 +00:00
2017-08-21 08:36:56 +00:00
/**
* @param int $userId
*
* @return array
*/
public function findAllEntriesIdByUserId($userId = null)
2017-08-21 08:36:56 +00:00
{
$qb = $this->createQueryBuilder('e')
->select('e.id');
if (null !== $userId) {
$qb->where('e.user = :userid')->setParameter(':userid', $userId);
}
return $qb->getQuery()->getArrayResult();
}
/**
* @param int $userId
*
* @return array
*/
public function findAllEntriesIdByUserIdAndNotParsed($userId = null)
{
$qb = $this->createQueryBuilder('e')
->select('e.id')
->where('e.isNotParsed = true');
if (null !== $userId) {
$qb->where('e.user = :userid')->setParameter(':userid', $userId);
2017-08-21 08:36:56 +00:00
}
return $qb->getQuery()->getArrayResult();
}
2023-08-31 10:13:15 +00:00
/**
* @param int $userId
*
* @return array
*/
public function findEmptyEntriesIdByUserId($userId = null)
{
$qb = $this->createQueryBuilder('e')
->select('e.id');
if (null !== $userId) {
$qb->where('e.user = :userid AND e.content IS NULL')->setParameter(':userid', $userId);
}
return $qb->getQuery()->getArrayResult();
}
2017-05-05 12:33:36 +00:00
/**
* Find all entries by url and owner.
*
* @param string $url
* @param int $userId
2017-05-05 12:33:36 +00:00
*
* @return array
*/
public function findAllByUrlAndUserId($url, $userId)
{
2017-05-05 12:54:03 +00:00
return $this->createQueryBuilder('e')
2017-05-05 12:33:36 +00:00
->where('e.url = :url')->setParameter('url', urldecode($url))
->andWhere('e.user = :user_id')->setParameter('user_id', $userId)
->getQuery()
->getResult();
}
2017-07-01 07:52:38 +00:00
2017-12-22 14:44:00 +00:00
/**
* Returns a random entry, filtering by status.
*
* @param int $userId
* @param string $type Can be unread, archive, starred, etc
2017-12-22 14:44:00 +00:00
*
2019-01-19 21:30:50 +00:00
* @throws NoResultException
2018-10-12 19:41:28 +00:00
*
2017-12-22 14:44:00 +00:00
* @return Entry
*/
public function getRandomEntry($userId, $type = '')
2017-12-22 14:44:00 +00:00
{
2018-10-12 19:41:28 +00:00
$qb = $this->getQueryBuilderByUser($userId)
->select('e.id');
2017-12-22 14:44:00 +00:00
switch ($type) {
case 'unread':
$qb->andWhere('e.isArchived = false');
break;
case 'archive':
$qb->andWhere('e.isArchived = true');
break;
case 'starred':
$qb->andWhere('e.isStarred = true');
break;
case 'untagged':
$qb->leftJoin('e.tags', 't');
$qb->andWhere('t.id is null');
break;
2020-04-26 12:09:16 +00:00
case 'annotated':
$qb->leftJoin('e.annotations', 'a');
$qb->andWhere('a.id is not null');
break;
2018-10-12 13:01:19 +00:00
}
$ids = $qb->getQuery()->getArrayResult();
2018-10-12 19:41:28 +00:00
2019-01-19 21:30:50 +00:00
if (empty($ids)) {
throw new NoResultException();
}
// random select one in the list
$randomId = $ids[mt_rand(0, \count($ids) - 1)]['id'];
return $this->find($randomId);
2017-12-22 14:44:00 +00:00
}
2017-07-01 07:52:38 +00:00
/**
* Return a query builder to be used by other getBuilderFor* method.
*
* @param int $userId
*
* @return QueryBuilder
*/
private function getQueryBuilderByUser($userId)
{
return $this->createQueryBuilder('e')
->andWhere('e.user = :userId')->setParameter('userId', $userId);
}
/**
* Return a sorted query builder to be used by other getBuilderFor* method.
2017-07-01 07:52:38 +00:00
*
* @param int $userId
* @param string $sortBy
* @param string $direction
2017-07-01 07:52:38 +00:00
*
* @return QueryBuilder
*/
private function getSortedQueryBuilderByUser($userId, $sortBy = 'createdAt', $direction = 'desc')
2017-07-01 07:52:38 +00:00
{
return $this->sortQueryBuilder($this->getQueryBuilderByUser($userId), $sortBy, $direction);
}
/**
* Return the given QueryBuilder with an orderBy() call.
*
* @param string $sortBy
* @param string $direction
*
* @return QueryBuilder
*/
private function sortQueryBuilder(QueryBuilder $qb, $sortBy = 'createdAt', $direction = 'desc')
{
2017-12-22 14:44:00 +00:00
return $qb->orderBy(sprintf('e.%s', $sortBy), $direction);
2017-07-01 07:52:38 +00:00
}
2015-01-22 16:18:56 +00:00
}