]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Repository/EntryRepository.php
Avoid error when a bad `order` parameter is given
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Repository / EntryRepository.php
CommitLineData
9d50517c
NL
1<?php
2
ad4d1caa 3namespace Wallabag\CoreBundle\Repository;
9d50517c 4
9d50517c 5use Doctrine\ORM\EntityRepository;
52b84c11 6use Doctrine\ORM\QueryBuilder;
bcf53ab7
WD
7use Pagerfanta\Adapter\DoctrineORMAdapter;
8use Pagerfanta\Pagerfanta;
52b84c11 9use Wallabag\CoreBundle\Entity\Entry;
fc732227 10use Wallabag\CoreBundle\Entity\Tag;
9d50517c 11
be463487 12class EntryRepository extends EntityRepository
9d50517c 13{
2b7a4889
NL
14 /**
15 * Retrieves all entries for a user.
16 *
17 * @param int $userId
18 *
19 * @return QueryBuilder
20 */
21 public function getBuilderForAllByUser($userId)
22 {
23 return $this
b7c5fda5 24 ->getSortedQueryBuilderByUser($userId)
2b7a4889
NL
25 ;
26 }
27
0ab7404f
JB
28 /**
29 * Retrieves unread entries for a user.
30 *
31 * @param int $userId
32 *
33 * @return QueryBuilder
34 */
35 public function getBuilderForUnreadByUser($userId)
36 {
37 return $this
b7c5fda5 38 ->getSortedQueryBuilderByUser($userId)
0ab7404f
JB
39 ->andWhere('e.isArchived = false')
40 ;
9d50517c 41 }
bd9f0815 42
b84a8055 43 /**
4346a860 44 * Retrieves read entries for a user.
b84a8055 45 *
3b815d2d 46 * @param int $userId
3b815d2d 47 *
26864574 48 * @return QueryBuilder
b84a8055 49 */
0ab7404f 50 public function getBuilderForArchiveByUser($userId)
bd9f0815 51 {
0ab7404f 52 return $this
b7c5fda5 53 ->getSortedQueryBuilderByUser($userId)
0ab7404f
JB
54 ->andWhere('e.isArchived = true')
55 ;
bd9f0815
NL
56 }
57
b84a8055 58 /**
4346a860 59 * Retrieves starred entries for a user.
b84a8055 60 *
3b815d2d 61 * @param int $userId
3b815d2d 62 *
26864574 63 * @return QueryBuilder
b84a8055 64 */
0ab7404f 65 public function getBuilderForStarredByUser($userId)
bd9f0815 66 {
0ab7404f 67 return $this
b7c5fda5 68 ->getSortedQueryBuilderByUser($userId, 'starredAt', 'desc')
0ab7404f
JB
69 ->andWhere('e.isStarred = true')
70 ;
bd9f0815 71 }
a8c90c5c 72
ee122a75
NL
73 /**
74 * Retrieves entries filtered with a search term for a user.
75 *
76 * @param int $userId
77 * @param string $term
52b84c11 78 * @param string $currentRoute
ee122a75
NL
79 *
80 * @return QueryBuilder
81 */
49b042df 82 public function getBuilderForSearchByUser($userId, $term, $currentRoute)
ee122a75 83 {
49b042df 84 $qb = $this
b7c5fda5 85 ->getSortedQueryBuilderByUser($userId);
49b042df
NL
86
87 if ('starred' === $currentRoute) {
88 $qb->andWhere('e.isStarred = true');
89 } elseif ('unread' === $currentRoute) {
90 $qb->andWhere('e.isArchived = false');
91 } elseif ('archive' === $currentRoute) {
92 $qb->andWhere('e.isArchived = true');
93 }
94
eac09b48 95 // We lower() all parts here because PostgreSQL 'LIKE' verb is case-sensitive
49b042df 96 $qb
f808b016 97 ->andWhere('lower(e.content) LIKE lower(:term) OR lower(e.title) LIKE lower(:term) OR lower(e.url) LIKE lower(:term)')->setParameter('term', '%' . $term . '%')
ee122a75 98 ->leftJoin('e.tags', 't')
32f455c1 99 ->groupBy('e.id');
49b042df
NL
100
101 return $qb;
ee122a75
NL
102 }
103
b6520f0b 104 /**
06366972 105 * Retrieve a sorted list of untagged entries for a user.
b6520f0b
NL
106 *
107 * @param int $userId
108 *
109 * @return QueryBuilder
110 */
111 public function getBuilderForUntaggedByUser($userId)
112 {
113 return $this
06366972
KD
114 ->sortQueryBuilder($this->getRawBuilderForUntaggedByUser($userId));
115 }
116
117 /**
118 * Retrieve untagged entries for a user.
b8115ff4 119 *
06366972 120 * @param int $userId
b8115ff4 121 *
06366972
KD
122 * @return QueryBuilder
123 */
124 public function getRawBuilderForUntaggedByUser($userId)
125 {
126 return $this->getQueryBuilderByUser($userId)
127 ->leftJoin('e.tags', 't')
128 ->andWhere('t.id is null');
b6520f0b
NL
129 }
130
3b815d2d 131 /**
4346a860 132 * Find Entries.
3b815d2d 133 *
2a94b1d1
NL
134 * @param int $userId
135 * @param bool $isArchived
136 * @param bool $isStarred
1112e547 137 * @param bool $isPublic
2a94b1d1
NL
138 * @param string $sort
139 * @param string $order
8cb869ea
TC
140 * @param int $since
141 * @param string $tags
3b815d2d 142 *
52b84c11 143 * @return Pagerfanta
3b815d2d 144 */
78e3fafa 145 public function findEntries($userId, $isArchived = null, $isStarred = null, $isPublic = null, $sort = 'created', $order = 'asc', $since = 0, $tags = '')
a8c90c5c
NL
146 {
147 $qb = $this->createQueryBuilder('e')
28803f10 148 ->leftJoin('e.tags', 't')
7c04b739 149 ->where('e.user = :userId')->setParameter('userId', $userId);
6e334aba 150
3b815d2d 151 if (null !== $isArchived) {
1112e547 152 $qb->andWhere('e.isArchived = :isArchived')->setParameter('isArchived', (bool) $isArchived);
6e334aba
NL
153 }
154
3b815d2d 155 if (null !== $isStarred) {
1112e547
JB
156 $qb->andWhere('e.isStarred = :isStarred')->setParameter('isStarred', (bool) $isStarred);
157 }
158
159 if (null !== $isPublic) {
f808b016 160 $qb->andWhere('e.uid IS ' . (true === $isPublic ? 'NOT' : '') . ' NULL');
6e334aba
NL
161 }
162
c3f8b428 163 if ($since > 0) {
e5fb89e5 164 $qb->andWhere('e.updatedAt > :since')->setParameter('since', new \DateTime(date('Y-m-d H:i:s', $since)));
4f0558a0
TC
165 }
166
2a1ceb67 167 if (\is_string($tags) && '' !== $tags) {
7c04b739
JB
168 foreach (explode(',', $tags) as $i => $tag) {
169 $entryAlias = 'e' . $i;
170 $tagAlias = 't' . $i;
171
33264c2d 172 // Complexe queries to ensure multiple tags are associated to an entry
7c04b739
JB
173 // https://stackoverflow.com/a/6638146/569101
174 $qb->andWhere($qb->expr()->in(
175 'e.id',
176 $this->createQueryBuilder($entryAlias)
177 ->select($entryAlias . '.id')
178 ->leftJoin($entryAlias . '.tags', $tagAlias)
179 ->where($tagAlias . '.label = :label' . $i)
180 ->getDQL()
181 ));
182
183 // bound parameter to the main query builder
184 $qb->setParameter('label' . $i, $tag);
28803f10 185 }
e5fb89e5
TC
186 }
187
78e3fafa
JB
188 if (!\in_array(strtolower($order), ['asc', 'desc'], true)) {
189 throw new \Exception('Order "' . $order . '" parameter is wrong, allowed: asc or desc');
190 }
191
bc782eaa 192 if ('created' === $sort) {
2385f891 193 $qb->orderBy('e.id', $order);
bc782eaa
NL
194 } elseif ('updated' === $sort) {
195 $qb->orderBy('e.updatedAt', $order);
196 }
197
5a5da369 198 $pagerAdapter = new DoctrineORMAdapter($qb, true, false);
bcf53ab7
WD
199
200 return new Pagerfanta($pagerAdapter);
a8c90c5c 201 }
46bbd8d3 202
a36737f4
NL
203 /**
204 * Fetch an entry with a tag. Only used for tests.
205 *
5c072d2b
NL
206 * @param int $userId
207 *
52b84c11 208 * @return array
a36737f4 209 */
092ca707 210 public function findOneWithTags($userId)
46bbd8d3
NL
211 {
212 $qb = $this->createQueryBuilder('e')
213 ->innerJoin('e.tags', 't')
0ca374e6
NL
214 ->innerJoin('e.user', 'u')
215 ->addSelect('t', 'u')
7c04b739 216 ->where('e.user = :userId')->setParameter('userId', $userId)
0ca374e6 217 ;
092ca707 218
0ca374e6 219 return $qb->getQuery()->getResult();
46bbd8d3 220 }
d4ebe5c5
JB
221
222 /**
223 * Find distinct language for a given user.
224 * Used to build the filter language list.
225 *
226 * @param int $userId User id
227 *
228 * @return array
229 */
230 public function findDistinctLanguageByUser($userId)
231 {
232 $results = $this->createQueryBuilder('e')
233 ->select('e.language')
234 ->where('e.user = :userId')->setParameter('userId', $userId)
235 ->andWhere('e.language IS NOT NULL')
236 ->groupBy('e.language')
237 ->orderBy('e.language', ' ASC')
238 ->getQuery()
239 ->getResult();
240
4094ea47 241 $languages = [];
d4ebe5c5
JB
242 foreach ($results as $result) {
243 $languages[$result['language']] = $result['language'];
244 }
245
246 return $languages;
247 }
159986c4 248
159986c4 249 /**
cfb28c9d 250 * Used only in test case to get the right entry associated to the right user.
159986c4 251 *
cfb28c9d 252 * @param string $username
159986c4
JB
253 *
254 * @return Entry
255 */
256 public function findOneByUsernameAndNotArchived($username)
257 {
258 return $this->createQueryBuilder('e')
259 ->leftJoin('e.user', 'u')
260 ->where('u.username = :username')->setParameter('username', $username)
261 ->andWhere('e.isArchived = false')
262 ->setMaxResults(1)
263 ->getQuery()
264 ->getSingleResult();
265 }
fc732227
JB
266
267 /**
268 * Remove a tag from all user entries.
4059a061
JB
269 *
270 * 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.
6be97501
JB
271 * 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:
272 *
273 * 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
fc732227
JB
274 *
275 * @param int $userId
276 * @param Tag $tag
277 */
278 public function removeTag($userId, Tag $tag)
279 {
b7c5fda5 280 $entries = $this->getSortedQueryBuilderByUser($userId)
4059a061
JB
281 ->innerJoin('e.tags', 't')
282 ->andWhere('t.id = :tagId')->setParameter('tagId', $tag->getId())
283 ->getQuery()
284 ->getResult();
285
286 foreach ($entries as $entry) {
287 $entry->removeTag($tag);
288 }
289
290 $this->getEntityManager()->flush();
4059a061
JB
291 }
292
4da01f49 293 /**
9bf83f1f 294 * Remove tags from all user entries.
4da01f49 295 *
9bf83f1f 296 * @param int $userId
4da01f49
TC
297 * @param Array<Tag> $tags
298 */
9bf83f1f
TC
299 public function removeTags($userId, $tags)
300 {
4da01f49
TC
301 foreach ($tags as $tag) {
302 $this->removeTag($userId, $tag);
303 }
304 }
305
4059a061
JB
306 /**
307 * Find all entries that are attached to a give tag id.
308 *
309 * @param int $userId
310 * @param int $tagId
311 *
312 * @return array
313 */
314 public function findAllByTagId($userId, $tagId)
315 {
b7c5fda5 316 return $this->getSortedQueryBuilderByUser($userId)
4059a061
JB
317 ->innerJoin('e.tags', 't')
318 ->andWhere('t.id = :tagId')->setParameter('tagId', $tagId)
319 ->getQuery()
320 ->getResult();
fc732227 321 }
303768df
NL
322
323 /**
324 * Find an entry by its url and its owner.
5a4bbcc9 325 * If it exists, return the entry otherwise return false.
303768df
NL
326 *
327 * @param $url
328 * @param $userId
329 *
4094ea47 330 * @return Entry|bool
303768df 331 */
78833672 332 public function findByUrlAndUserId($url, $userId)
303768df 333 {
5a4bbcc9 334 $res = $this->createQueryBuilder('e')
19ca0b2f 335 ->where('e.url = :url')->setParameter('url', urldecode($url))
303768df
NL
336 ->andWhere('e.user = :user_id')->setParameter('user_id', $userId)
337 ->getQuery()
338 ->getResult();
5a4bbcc9 339
2a1ceb67 340 if (\count($res)) {
b4b592a0 341 return current($res);
5a4bbcc9
JB
342 }
343
344 return false;
303768df 345 }
5c072d2b
NL
346
347 /**
348 * Count all entries for a user.
349 *
350 * @param int $userId
351 *
e678c475 352 * @return int
5c072d2b 353 */
273b6f06 354 public function countAllEntriesByUser($userId)
5c072d2b
NL
355 {
356 $qb = $this->createQueryBuilder('e')
357 ->select('count(e)')
7c04b739
JB
358 ->where('e.user = :userId')->setParameter('userId', $userId)
359 ;
360
361 return (int) $qb->getQuery()->getSingleScalarResult();
362 }
363
191564b7
JB
364 /**
365 * Remove all entries for a user id.
8c61fd12 366 * Used when a user want to reset all informations.
191564b7 367 *
8c61fd12 368 * @param int $userId
191564b7
JB
369 */
370 public function removeAllByUserId($userId)
371 {
372 $this->getEntityManager()
b0de88f7
JB
373 ->createQuery('DELETE FROM Wallabag\CoreBundle\Entity\Entry e WHERE e.user = :userId')
374 ->setParameter('userId', $userId)
191564b7
JB
375 ->execute();
376 }
6da1aebc
TC
377
378 public function removeArchivedByUserId($userId)
379 {
380 $this->getEntityManager()
381 ->createQuery('DELETE FROM Wallabag\CoreBundle\Entity\Entry e WHERE e.user = :userId AND e.isArchived = TRUE')
382 ->setParameter('userId', $userId)
383 ->execute();
384 }
e2f3800c
TC
385
386 /**
387 * Get id and url from all entries
388 * Used for the clean-duplicates command.
389 */
dbf1188c 390 public function findAllEntriesIdAndUrlByUserId($userId)
e2f3800c
TC
391 {
392 $qb = $this->createQueryBuilder('e')
393 ->select('e.id, e.url')
394 ->where('e.user = :userid')->setParameter(':userid', $userId);
395
396 return $qb->getQuery()->getArrayResult();
397 }
d09fe4d2 398
511f1ce1
NH
399 /**
400 * @param int $userId
401 *
402 * @return array
403 */
215409a8 404 public function findAllEntriesIdByUserId($userId = null)
511f1ce1
NH
405 {
406 $qb = $this->createQueryBuilder('e')
407 ->select('e.id');
408
409 if (null !== $userId) {
410 $qb->where('e.user = :userid')->setParameter(':userid', $userId);
411 }
412
413 return $qb->getQuery()->getArrayResult();
414 }
415
d09fe4d2
NL
416 /**
417 * Find all entries by url and owner.
418 *
419 * @param $url
420 * @param $userId
421 *
422 * @return array
423 */
424 public function findAllByUrlAndUserId($url, $userId)
425 {
89f108b4 426 return $this->createQueryBuilder('e')
d09fe4d2
NL
427 ->where('e.url = :url')->setParameter('url', urldecode($url))
428 ->andWhere('e.user = :user_id')->setParameter('user_id', $userId)
429 ->getQuery()
430 ->getResult();
d09fe4d2 431 }
f808b016
JB
432
433 /**
b7c5fda5
KD
434 * Return a query builder to be used by other getBuilderFor* method.
435 *
b8115ff4 436 * @param int $userId
b7c5fda5
KD
437 *
438 * @return QueryBuilder
439 */
440 private function getQueryBuilderByUser($userId)
441 {
442 return $this->createQueryBuilder('e')
443 ->andWhere('e.user = :userId')->setParameter('userId', $userId);
444 }
445
446 /**
447 * Return a sorted query builder to be used by other getBuilderFor* method.
f808b016 448 *
a991c46e
F
449 * @param int $userId
450 * @param string $sortBy
451 * @param string $direction
f808b016
JB
452 *
453 * @return QueryBuilder
454 */
b7c5fda5 455 private function getSortedQueryBuilderByUser($userId, $sortBy = 'createdAt', $direction = 'desc')
f808b016 456 {
17476f4d 457 return $this->sortQueryBuilder($this->getQueryBuilderByUser($userId), $sortBy, $direction);
b7c5fda5
KD
458 }
459
460 /**
b8115ff4
KD
461 * Return the given QueryBuilder with an orderBy() call.
462 *
b7c5fda5 463 * @param QueryBuilder $qb
b8115ff4
KD
464 * @param string $sortBy
465 * @param string $direction
b7c5fda5
KD
466 *
467 * @return QueryBuilder
468 */
469 private function sortQueryBuilder(QueryBuilder $qb, $sortBy = 'createdAt', $direction = 'desc')
470 {
471 return $qb
a991c46e 472 ->orderBy(sprintf('e.%s', $sortBy), $direction);
f808b016 473 }
9d50517c 474}