]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/ApiBundle/Controller/EntryRestController.php
Add ability to patch an entry with more fields
[github/wallabag/wallabag.git] / src / Wallabag / ApiBundle / Controller / EntryRestController.php
CommitLineData
900c8448
NL
1<?php
2
3namespace Wallabag\ApiBundle\Controller;
4
5use Hateoas\Configuration\Route;
6use Hateoas\Representation\Factory\PagerfantaFactory;
7use Nelmio\ApiDocBundle\Annotation\ApiDoc;
72db15ca 8use Symfony\Component\HttpKernel\Exception\HttpException;
900c8448
NL
9use Symfony\Component\HttpFoundation\Request;
10use Symfony\Component\HttpFoundation\JsonResponse;
11use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
12use Wallabag\CoreBundle\Entity\Entry;
13use Wallabag\CoreBundle\Entity\Tag;
5a619812
JB
14use Wallabag\CoreBundle\Event\EntrySavedEvent;
15use Wallabag\CoreBundle\Event\EntryDeletedEvent;
900c8448
NL
16
17class EntryRestController extends WallabagRestController
18{
19 /**
20 * Check if an entry exist by url.
21 *
22 * @ApiDoc(
23 * parameters={
24 * {"name"="url", "dataType"="string", "required"=true, "format"="An url", "description"="Url to check if it exists"},
25 * {"name"="urls", "dataType"="string", "required"=false, "format"="An array of urls (?urls[]=http...&urls[]=http...)", "description"="Urls (as an array) to check if it exists"}
26 * }
27 * )
28 *
29 * @return JsonResponse
30 */
31 public function getEntriesExistsAction(Request $request)
32 {
33 $this->validateAuthentication();
34
35 $urls = $request->query->get('urls', []);
36
37 // handle multiple urls first
38 if (!empty($urls)) {
39 $results = [];
40 foreach ($urls as $url) {
41 $res = $this->getDoctrine()
42 ->getRepository('WallabagCoreBundle:Entry')
43 ->findByUrlAndUserId($url, $this->getUser()->getId());
44
ca9a83ee 45 $results[$url] = $res instanceof Entry ? $res->getId() : false;
900c8448
NL
46 }
47
72db15ca 48 return $this->sendResponse($results);
900c8448
NL
49 }
50
51 // let's see if it is a simple url?
52 $url = $request->query->get('url', '');
53
54 if (empty($url)) {
55 throw $this->createAccessDeniedException('URL is empty?, logged user id: '.$this->getUser()->getId());
56 }
57
58 $res = $this->getDoctrine()
59 ->getRepository('WallabagCoreBundle:Entry')
60 ->findByUrlAndUserId($url, $this->getUser()->getId());
61
ca9a83ee 62 $exists = $res instanceof Entry ? $res->getId() : false;
900c8448 63
72db15ca 64 return $this->sendResponse(['exists' => $exists]);
900c8448
NL
65 }
66
67 /**
68 * Retrieve all entries. It could be filtered by many options.
69 *
70 * @ApiDoc(
71 * parameters={
72 * {"name"="archive", "dataType"="integer", "required"=false, "format"="1 or 0, all entries by default", "description"="filter by archived status."},
73 * {"name"="starred", "dataType"="integer", "required"=false, "format"="1 or 0, all entries by default", "description"="filter by starred status."},
74 * {"name"="sort", "dataType"="string", "required"=false, "format"="'created' or 'updated', default 'created'", "description"="sort entries by date."},
75 * {"name"="order", "dataType"="string", "required"=false, "format"="'asc' or 'desc', default 'desc'", "description"="order of sort."},
76 * {"name"="page", "dataType"="integer", "required"=false, "format"="default '1'", "description"="what page you want."},
77 * {"name"="perPage", "dataType"="integer", "required"=false, "format"="default'30'", "description"="results per page."},
78 * {"name"="tags", "dataType"="string", "required"=false, "format"="api,rest", "description"="a list of tags url encoded. Will returns entries that matches ALL tags."},
79 * {"name"="since", "dataType"="integer", "required"=false, "format"="default '0'", "description"="The timestamp since when you want entries updated."},
80 * }
81 * )
82 *
83 * @return JsonResponse
84 */
85 public function getEntriesAction(Request $request)
86 {
87 $this->validateAuthentication();
88
89 $isArchived = (null === $request->query->get('archive')) ? null : (bool) $request->query->get('archive');
90 $isStarred = (null === $request->query->get('starred')) ? null : (bool) $request->query->get('starred');
91 $sort = $request->query->get('sort', 'created');
92 $order = $request->query->get('order', 'desc');
93 $page = (int) $request->query->get('page', 1);
94 $perPage = (int) $request->query->get('perPage', 30);
95 $tags = $request->query->get('tags', '');
96 $since = $request->query->get('since', 0);
97
b60a666d 98 /** @var \Pagerfanta\Pagerfanta $pager */
900c8448
NL
99 $pager = $this->getDoctrine()
100 ->getRepository('WallabagCoreBundle:Entry')
101 ->findEntries($this->getUser()->getId(), $isArchived, $isStarred, $sort, $order, $since, $tags);
102
900c8448 103 $pager->setMaxPerPage($perPage);
b60a666d 104 $pager->setCurrentPage($page);
900c8448
NL
105
106 $pagerfantaFactory = new PagerfantaFactory('page', 'perPage');
107 $paginatedCollection = $pagerfantaFactory->createRepresentation(
108 $pager,
109 new Route(
110 'api_get_entries',
111 [
112 'archive' => $isArchived,
113 'starred' => $isStarred,
114 'sort' => $sort,
115 'order' => $order,
116 'page' => $page,
117 'perPage' => $perPage,
118 'tags' => $tags,
119 'since' => $since,
120 ],
121 UrlGeneratorInterface::ABSOLUTE_URL
122 )
123 );
124
72db15ca 125 return $this->sendResponse($paginatedCollection);
900c8448
NL
126 }
127
128 /**
129 * Retrieve a single entry.
130 *
131 * @ApiDoc(
132 * requirements={
133 * {"name"="entry", "dataType"="integer", "requirement"="\w+", "description"="The entry ID"}
134 * }
135 * )
136 *
137 * @return JsonResponse
138 */
139 public function getEntryAction(Entry $entry)
140 {
141 $this->validateAuthentication();
142 $this->validateUserAccess($entry->getUser()->getId());
143
72db15ca 144 return $this->sendResponse($entry);
900c8448
NL
145 }
146
864c1dd2
JB
147 /**
148 * Retrieve a single entry as a predefined format.
149 *
150 * @ApiDoc(
151 * requirements={
152 * {"name"="entry", "dataType"="integer", "requirement"="\w+", "description"="The entry ID"}
153 * }
154 * )
155 *
156 * @return Response
157 */
158 public function getEntryExportAction(Entry $entry, Request $request)
159 {
160 $this->validateAuthentication();
161 $this->validateUserAccess($entry->getUser()->getId());
162
163 return $this->get('wallabag_core.helper.entries_export')
164 ->setEntries($entry)
165 ->updateTitle('entry')
166 ->exportAs($request->attributes->get('_format'));
167 }
168
1eca7831 169 /**
a7abcc7b 170 * Handles an entries list and delete URL.
1eca7831
NL
171 *
172 * @ApiDoc(
173 * parameters={
a7abcc7b 174 * {"name"="urls", "dataType"="string", "required"=true, "format"="A JSON array of urls [{'url': 'http://...'}, {'url': 'http://...'}]", "description"="Urls (as an array) to delete."}
1eca7831
NL
175 * }
176 * )
177 *
178 * @return JsonResponse
179 */
a7abcc7b 180 public function deleteEntriesListAction(Request $request)
1eca7831
NL
181 {
182 $this->validateAuthentication();
183
a7abcc7b 184 $urls = json_decode($request->query->get('urls', []));
72db15ca
JB
185
186 if (empty($urls)) {
187 return $this->sendResponse([]);
188 }
189
1eca7831
NL
190 $results = [];
191
192 // handle multiple urls
72db15ca
JB
193 foreach ($urls as $key => $url) {
194 $entry = $this->get('wallabag_core.entry_repository')->findByUrlAndUserId(
195 $url,
196 $this->getUser()->getId()
197 );
a7abcc7b 198
72db15ca 199 $results[$key]['url'] = $url;
a7abcc7b 200
72db15ca
JB
201 if (false !== $entry) {
202 $em = $this->getDoctrine()->getManager();
203 $em->remove($entry);
204 $em->flush();
1eca7831 205
72db15ca
JB
206 // entry deleted, dispatch event about it!
207 $this->get('event_dispatcher')->dispatch(EntryDeletedEvent::NAME, new EntryDeletedEvent($entry));
a7abcc7b 208 }
1eca7831 209
72db15ca
JB
210 $results[$key]['entry'] = $entry instanceof Entry ? true : false;
211 }
1eca7831 212
72db15ca 213 return $this->sendResponse($results);
a7abcc7b 214 }
1eca7831 215
a7abcc7b
NL
216 /**
217 * Handles an entries list and create URL.
218 *
219 * @ApiDoc(
220 * parameters={
221 * {"name"="urls", "dataType"="string", "required"=true, "format"="A JSON array of urls [{'url': 'http://...'}, {'url': 'http://...'}]", "description"="Urls (as an array) to create."}
222 * }
223 * )
224 *
225 * @return JsonResponse
efd351c9 226 *
72db15ca 227 * @throws HttpException When limit is reached
a7abcc7b
NL
228 */
229 public function postEntriesListAction(Request $request)
230 {
231 $this->validateAuthentication();
1eca7831 232
a7abcc7b 233 $urls = json_decode($request->query->get('urls', []));
1eca7831 234
efd351c9
NL
235 $limit = $this->container->getParameter('wallabag_core.api_limit_mass_actions');
236
237 if (count($urls) > $limit) {
72db15ca 238 throw new HttpException(400, 'API limit reached');
efd351c9
NL
239 }
240
d5c2cc54
JB
241 $results = [];
242 if (empty($urls)) {
243 return $this->sendResponse($results);
244 }
245
a7abcc7b 246 // handle multiple urls
d5c2cc54
JB
247 foreach ($urls as $key => $url) {
248 $entry = $this->get('wallabag_core.entry_repository')->findByUrlAndUserId(
249 $url,
250 $this->getUser()->getId()
251 );
1eca7831 252
d5c2cc54 253 $results[$key]['url'] = $url;
1eca7831 254
d5c2cc54
JB
255 if (false === $entry) {
256 $entry = new Entry($this->getUser());
a7abcc7b 257
d5c2cc54
JB
258 $this->get('wallabag_core.content_proxy')->updateEntry($entry, $url);
259 }
a7abcc7b 260
d5c2cc54
JB
261 $em = $this->getDoctrine()->getManager();
262 $em->persist($entry);
263 $em->flush();
a7abcc7b 264
d5c2cc54
JB
265 $results[$key]['entry'] = $entry instanceof Entry ? $entry->getId() : false;
266
267 // entry saved, dispatch event about it!
268 $this->get('event_dispatcher')->dispatch(EntrySavedEvent::NAME, new EntrySavedEvent($entry));
1eca7831
NL
269 }
270
72db15ca 271 return $this->sendResponse($results);
1eca7831
NL
272 }
273
900c8448
NL
274 /**
275 * Create an entry.
276 *
9e349f08
JB
277 * If you want to provide the HTML content (which means wallabag won't fetch it from the url), you must provide `content`, `title` & `url` fields **non-empty**.
278 * Otherwise, content will be fetched as normal from the url and values will be overwritten.
279 *
900c8448
NL
280 * @ApiDoc(
281 * parameters={
282 * {"name"="url", "dataType"="string", "required"=true, "format"="http://www.test.com/article.html", "description"="Url for the entry."},
283 * {"name"="title", "dataType"="string", "required"=false, "description"="Optional, we'll get the title from the page."},
284 * {"name"="tags", "dataType"="string", "required"=false, "format"="tag1,tag2,tag3", "description"="a comma-separated list of tags."},
285 * {"name"="starred", "dataType"="integer", "required"=false, "format"="1 or 0", "description"="entry already starred"},
286 * {"name"="archive", "dataType"="integer", "required"=false, "format"="1 or 0", "description"="entry already archived"},
e668a812
JB
287 * {"name"="content", "dataType"="string", "required"=false, "description"="Content of the entry"},
288 * {"name"="language", "dataType"="string", "required"=false, "description"="Language of the entry"},
289 * {"name"="preview_picture", "dataType"="string", "required"=false, "description"="Preview picture of the entry"},
f0378b4d 290 * {"name"="published_at", "dataType"="datetime|integer", "format"="YYYY-MM-DDTHH:II:SS+TZ or a timestamp", "required"=false, "description"="Published date of the entry"},
fb436e8c 291 * {"name"="authors", "dataType"="string", "format"="Name Firstname,author2,author3", "required"=false, "description"="Authors of the entry"},
900c8448
NL
292 * }
293 * )
294 *
295 * @return JsonResponse
296 */
297 public function postEntriesAction(Request $request)
298 {
299 $this->validateAuthentication();
300
301 $url = $request->request->get('url');
302 $title = $request->request->get('title');
fb436e8c 303 $tags = $request->request->get('tags', []);
900c8448
NL
304 $isArchived = $request->request->get('archive');
305 $isStarred = $request->request->get('starred');
e668a812
JB
306 $content = $request->request->get('content');
307 $language = $request->request->get('language');
308 $picture = $request->request->get('preview_picture');
309 $publishedAt = $request->request->get('published_at');
fb436e8c 310 $authors = $request->request->get('authors', '');
900c8448
NL
311
312 $entry = $this->get('wallabag_core.entry_repository')->findByUrlAndUserId($url, $this->getUser()->getId());
313
314 if (false === $entry) {
08f29ae7 315 $entry = new Entry($this->getUser());
900c8448
NL
316 }
317
e668a812 318 try {
7aba665e 319 $this->get('wallabag_core.content_proxy')->updateEntry(
e668a812
JB
320 $entry,
321 $url,
322 [
323 'title' => $title,
324 'html' => $content,
325 'url' => $url,
326 'language' => $language,
327 'date' => $publishedAt,
328 // faking the preview picture
329 'open_graph' => [
330 'og_image' => $picture,
331 ],
fb436e8c 332 'authors' => explode(',', $authors),
e668a812
JB
333 ]
334 );
335 } catch (\Exception $e) {
336 $this->get('logger')->error('Error while saving an entry', [
337 'exception' => $e,
338 'entry' => $entry,
339 ]);
340 $entry->setUrl($url);
900c8448
NL
341 }
342
900c8448 343 if (!empty($tags)) {
6bc6fb1f 344 $this->get('wallabag_core.tags_assigner')->assignTagsToEntry($entry, $tags);
900c8448
NL
345 }
346
347 if (!is_null($isStarred)) {
348 $entry->setStarred((bool) $isStarred);
349 }
350
351 if (!is_null($isArchived)) {
352 $entry->setArchived((bool) $isArchived);
353 }
354
355 $em = $this->getDoctrine()->getManager();
356 $em->persist($entry);
900c8448
NL
357 $em->flush();
358
5a619812
JB
359 // entry saved, dispatch event about it!
360 $this->get('event_dispatcher')->dispatch(EntrySavedEvent::NAME, new EntrySavedEvent($entry));
361
72db15ca 362 return $this->sendResponse($entry);
900c8448
NL
363 }
364
365 /**
366 * Change several properties of an entry.
367 *
368 * @ApiDoc(
369 * requirements={
370 * {"name"="entry", "dataType"="integer", "requirement"="\w+", "description"="The entry ID"}
371 * },
372 * parameters={
373 * {"name"="title", "dataType"="string", "required"=false},
374 * {"name"="tags", "dataType"="string", "required"=false, "format"="tag1,tag2,tag3", "description"="a comma-separated list of tags."},
375 * {"name"="archive", "dataType"="integer", "required"=false, "format"="1 or 0", "description"="archived the entry."},
376 * {"name"="starred", "dataType"="integer", "required"=false, "format"="1 or 0", "description"="starred the entry."},
645291e8
JB
377 * {"name"="content", "dataType"="string", "required"=false, "description"="Content of the entry"},
378 * {"name"="language", "dataType"="string", "required"=false, "description"="Language of the entry"},
379 * {"name"="preview_picture", "dataType"="string", "required"=false, "description"="Preview picture of the entry"},
380 * {"name"="published_at", "dataType"="datetime|integer", "format"="YYYY-MM-DDTHH:II:SS+TZ or a timestamp", "required"=false, "description"="Published date of the entry"},
381 * {"name"="authors", "dataType"="string", "format"="Name Firstname,author2,author3", "required"=false, "description"="Authors of the entry"},
900c8448
NL
382 * }
383 * )
384 *
385 * @return JsonResponse
386 */
387 public function patchEntriesAction(Entry $entry, Request $request)
388 {
389 $this->validateAuthentication();
390 $this->validateUserAccess($entry->getUser()->getId());
391
392 $title = $request->request->get('title');
645291e8 393 $tags = $request->request->get('tags', '');
900c8448
NL
394 $isArchived = $request->request->get('archive');
395 $isStarred = $request->request->get('starred');
645291e8
JB
396 $content = $request->request->get('content');
397 $language = $request->request->get('language');
398 $picture = $request->request->get('preview_picture');
399 $publishedAt = $request->request->get('published_at');
400 $authors = $request->request->get('authors', '');
900c8448 401
645291e8
JB
402 try {
403 $this->get('wallabag_core.content_proxy')->updateEntry(
404 $entry,
405 $entry->getUrl(),
406 [
407 'title' => !empty($title) ? $title : $entry->getTitle(),
408 'html' => !empty($content) ? $content : $entry->getContent(),
409 'url' => $entry->getUrl(),
410 'language' => $language,
411 'date' => $publishedAt,
412 // faking the preview picture
413 'open_graph' => [
414 'og_image' => $picture,
415 ],
416 'authors' => is_string($authors) ? explode(',', $authors) : [],
417 ],
418 // we don't want the content to be update by fetching the url
419 true
420 );
421 } catch (\Exception $e) {
422 $this->get('logger')->error('Error while saving an entry', [
423 'exception' => $e,
424 'entry' => $entry,
425 ]);
900c8448
NL
426 }
427
428 if (!is_null($isArchived)) {
429 $entry->setArchived((bool) $isArchived);
430 }
431
432 if (!is_null($isStarred)) {
433 $entry->setStarred((bool) $isStarred);
434 }
435
900c8448 436 if (!empty($tags)) {
6bc6fb1f 437 $this->get('wallabag_core.tags_assigner')->assignTagsToEntry($entry, $tags);
900c8448
NL
438 }
439
440 $em = $this->getDoctrine()->getManager();
441 $em->flush();
442
72db15ca 443 return $this->sendResponse($entry);
900c8448
NL
444 }
445
0a6f4568
JB
446 /**
447 * Reload an entry.
5cd0857e 448 * An empty response with HTTP Status 304 will be send if we weren't able to update the content (because it hasn't changed or we got an error).
0a6f4568
JB
449 *
450 * @ApiDoc(
451 * requirements={
452 * {"name"="entry", "dataType"="integer", "requirement"="\w+", "description"="The entry ID"}
453 * }
454 * )
455 *
456 * @return JsonResponse
457 */
458 public function patchEntriesReloadAction(Entry $entry)
459 {
460 $this->validateAuthentication();
461 $this->validateUserAccess($entry->getUser()->getId());
462
0a6f4568 463 try {
7aba665e 464 $this->get('wallabag_core.content_proxy')->updateEntry($entry, $entry->getUrl());
0a6f4568
JB
465 } catch (\Exception $e) {
466 $this->get('logger')->error('Error while saving an entry', [
467 'exception' => $e,
468 'entry' => $entry,
469 ]);
470
5cd0857e 471 return new JsonResponse([], 304);
0a6f4568
JB
472 }
473
474 // if refreshing entry failed, don't save it
475 if ($this->getParameter('wallabag_core.fetching_error_message') === $entry->getContent()) {
5cd0857e 476 return new JsonResponse([], 304);
0a6f4568
JB
477 }
478
479 $em = $this->getDoctrine()->getManager();
480 $em->persist($entry);
481 $em->flush();
482
483 // entry saved, dispatch event about it!
484 $this->get('event_dispatcher')->dispatch(EntrySavedEvent::NAME, new EntrySavedEvent($entry));
485
72db15ca 486 return $this->sendResponse($entry);
0a6f4568
JB
487 }
488
900c8448
NL
489 /**
490 * Delete **permanently** an entry.
491 *
492 * @ApiDoc(
493 * requirements={
494 * {"name"="entry", "dataType"="integer", "requirement"="\w+", "description"="The entry ID"}
495 * }
496 * )
497 *
498 * @return JsonResponse
499 */
500 public function deleteEntriesAction(Entry $entry)
501 {
502 $this->validateAuthentication();
503 $this->validateUserAccess($entry->getUser()->getId());
504
505 $em = $this->getDoctrine()->getManager();
506 $em->remove($entry);
507 $em->flush();
508
5a619812
JB
509 // entry deleted, dispatch event about it!
510 $this->get('event_dispatcher')->dispatch(EntryDeletedEvent::NAME, new EntryDeletedEvent($entry));
511
72db15ca 512 return $this->sendResponse($entry);
900c8448
NL
513 }
514
515 /**
516 * Retrieve all tags for an entry.
517 *
518 * @ApiDoc(
519 * requirements={
520 * {"name"="entry", "dataType"="integer", "requirement"="\w+", "description"="The entry ID"}
521 * }
522 * )
523 *
524 * @return JsonResponse
525 */
526 public function getEntriesTagsAction(Entry $entry)
527 {
528 $this->validateAuthentication();
529 $this->validateUserAccess($entry->getUser()->getId());
530
72db15ca 531 return $this->sendResponse($entry->getTags());
900c8448
NL
532 }
533
534 /**
535 * Add one or more tags to an entry.
536 *
537 * @ApiDoc(
538 * requirements={
539 * {"name"="entry", "dataType"="integer", "requirement"="\w+", "description"="The entry ID"}
540 * },
541 * parameters={
542 * {"name"="tags", "dataType"="string", "required"=false, "format"="tag1,tag2,tag3", "description"="a comma-separated list of tags."},
543 * }
544 * )
545 *
546 * @return JsonResponse
547 */
548 public function postEntriesTagsAction(Request $request, Entry $entry)
549 {
550 $this->validateAuthentication();
551 $this->validateUserAccess($entry->getUser()->getId());
552
553 $tags = $request->request->get('tags', '');
554 if (!empty($tags)) {
6bc6fb1f 555 $this->get('wallabag_core.tags_assigner')->assignTagsToEntry($entry, $tags);
900c8448
NL
556 }
557
558 $em = $this->getDoctrine()->getManager();
559 $em->persist($entry);
560 $em->flush();
561
72db15ca 562 return $this->sendResponse($entry);
900c8448
NL
563 }
564
565 /**
566 * Permanently remove one tag for an entry.
567 *
568 * @ApiDoc(
569 * requirements={
570 * {"name"="tag", "dataType"="integer", "requirement"="\w+", "description"="The tag ID"},
571 * {"name"="entry", "dataType"="integer", "requirement"="\w+", "description"="The entry ID"}
572 * }
573 * )
574 *
575 * @return JsonResponse
576 */
577 public function deleteEntriesTagsAction(Entry $entry, Tag $tag)
578 {
579 $this->validateAuthentication();
580 $this->validateUserAccess($entry->getUser()->getId());
581
582 $entry->removeTag($tag);
583 $em = $this->getDoctrine()->getManager();
584 $em->persist($entry);
585 $em->flush();
586
72db15ca 587 return $this->sendResponse($entry);
900c8448 588 }
d1fc5902
NL
589
590 /**
80299ed2 591 * Handles an entries list delete tags from them.
d1fc5902
NL
592 *
593 * @ApiDoc(
594 * parameters={
80299ed2 595 * {"name"="list", "dataType"="string", "required"=true, "format"="A JSON array of urls [{'url': 'http://...','tags': 'tag1, tag2'}, {'url': 'http://...','tags': 'tag1, tag2'}]", "description"="Urls (as an array) to handle."}
d1fc5902
NL
596 * }
597 * )
598 *
599 * @return JsonResponse
600 */
80299ed2 601 public function deleteEntriesTagsListAction(Request $request)
d1fc5902
NL
602 {
603 $this->validateAuthentication();
604
605 $list = json_decode($request->query->get('list', []));
72db15ca
JB
606
607 if (empty($list)) {
608 return $this->sendResponse([]);
609 }
d1fc5902
NL
610
611 // handle multiple urls
72db15ca 612 $results = [];
d1fc5902 613
72db15ca
JB
614 foreach ($list as $key => $element) {
615 $entry = $this->get('wallabag_core.entry_repository')->findByUrlAndUserId(
616 $element->url,
617 $this->getUser()->getId()
618 );
d1fc5902 619
72db15ca
JB
620 $results[$key]['url'] = $element->url;
621 $results[$key]['entry'] = $entry instanceof Entry ? $entry->getId() : false;
d1fc5902 622
72db15ca 623 $tags = $element->tags;
80299ed2 624
72db15ca
JB
625 if (false !== $entry && !(empty($tags))) {
626 $tags = explode(',', $tags);
627 foreach ($tags as $label) {
628 $label = trim($label);
80299ed2 629
72db15ca
JB
630 $tag = $this->getDoctrine()
631 ->getRepository('WallabagCoreBundle:Tag')
632 ->findOneByLabel($label);
d1fc5902 633
72db15ca
JB
634 if (false !== $tag) {
635 $entry->removeTag($tag);
636 }
d1fc5902 637 }
72db15ca
JB
638
639 $em = $this->getDoctrine()->getManager();
640 $em->persist($entry);
641 $em->flush();
d1fc5902
NL
642 }
643 }
644
72db15ca 645 return $this->sendResponse($results);
d1fc5902 646 }
80299ed2
NL
647
648 /**
649 * Handles an entries list and add tags to them.
650 *
651 * @ApiDoc(
652 * parameters={
653 * {"name"="list", "dataType"="string", "required"=true, "format"="A JSON array of urls [{'url': 'http://...','tags': 'tag1, tag2'}, {'url': 'http://...','tags': 'tag1, tag2'}]", "description"="Urls (as an array) to handle."}
654 * }
655 * )
656 *
657 * @return JsonResponse
658 */
659 public function postEntriesTagsListAction(Request $request)
660 {
661 $this->validateAuthentication();
662
663 $list = json_decode($request->query->get('list', []));
72db15ca
JB
664
665 if (empty($list)) {
666 return $this->sendResponse([]);
667 }
668
80299ed2
NL
669 $results = [];
670
671 // handle multiple urls
72db15ca
JB
672 foreach ($list as $key => $element) {
673 $entry = $this->get('wallabag_core.entry_repository')->findByUrlAndUserId(
674 $element->url,
675 $this->getUser()->getId()
676 );
80299ed2 677
72db15ca
JB
678 $results[$key]['url'] = $element->url;
679 $results[$key]['entry'] = $entry instanceof Entry ? $entry->getId() : false;
80299ed2 680
72db15ca 681 $tags = $element->tags;
80299ed2 682
72db15ca 683 if (false !== $entry && !(empty($tags))) {
6bc6fb1f 684 $this->get('wallabag_core.tags_assigner')->assignTagsToEntry($entry, $tags);
80299ed2 685
72db15ca
JB
686 $em = $this->getDoctrine()->getManager();
687 $em->persist($entry);
688 $em->flush();
80299ed2
NL
689 }
690 }
691
72db15ca
JB
692 return $this->sendResponse($results);
693 }
694
695 /**
696 * Shortcut to send data serialized in json.
697 *
698 * @param mixed $data
699 *
700 * @return JsonResponse
701 */
702 private function sendResponse($data)
703 {
704 $json = $this->get('serializer')->serialize($data, 'json');
80299ed2
NL
705
706 return (new JsonResponse())->setJson($json);
707 }
900c8448 708}