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