diff options
Diffstat (limited to 'src/Wallabag/ApiBundle/Controller')
-rw-r--r-- | src/Wallabag/ApiBundle/Controller/EntryRestController.php | 38 |
1 files changed, 35 insertions, 3 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/EntryRestController.php b/src/Wallabag/ApiBundle/Controller/EntryRestController.php index 93c8157e..7135e616 100644 --- a/src/Wallabag/ApiBundle/Controller/EntryRestController.php +++ b/src/Wallabag/ApiBundle/Controller/EntryRestController.php | |||
@@ -374,6 +374,11 @@ class EntryRestController extends WallabagRestController | |||
374 | * {"name"="tags", "dataType"="string", "required"=false, "format"="tag1,tag2,tag3", "description"="a comma-separated list of tags."}, | 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."}, | 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."}, | 376 | * {"name"="starred", "dataType"="integer", "required"=false, "format"="1 or 0", "description"="starred the entry."}, |
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"}, | ||
377 | * } | 382 | * } |
378 | * ) | 383 | * ) |
379 | * | 384 | * |
@@ -385,11 +390,39 @@ class EntryRestController extends WallabagRestController | |||
385 | $this->validateUserAccess($entry->getUser()->getId()); | 390 | $this->validateUserAccess($entry->getUser()->getId()); |
386 | 391 | ||
387 | $title = $request->request->get('title'); | 392 | $title = $request->request->get('title'); |
393 | $tags = $request->request->get('tags', ''); | ||
388 | $isArchived = $request->request->get('archive'); | 394 | $isArchived = $request->request->get('archive'); |
389 | $isStarred = $request->request->get('starred'); | 395 | $isStarred = $request->request->get('starred'); |
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', ''); | ||
390 | 401 | ||
391 | if (!is_null($title)) { | 402 | try { |
392 | $entry->setTitle($title); | 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 | ]); | ||
393 | } | 426 | } |
394 | 427 | ||
395 | if (!is_null($isArchived)) { | 428 | if (!is_null($isArchived)) { |
@@ -400,7 +433,6 @@ class EntryRestController extends WallabagRestController | |||
400 | $entry->setStarred((bool) $isStarred); | 433 | $entry->setStarred((bool) $isStarred); |
401 | } | 434 | } |
402 | 435 | ||
403 | $tags = $request->request->get('tags', ''); | ||
404 | if (!empty($tags)) { | 436 | if (!empty($tags)) { |
405 | $this->get('wallabag_core.tags_assigner')->assignTagsToEntry($entry, $tags); | 437 | $this->get('wallabag_core.tags_assigner')->assignTagsToEntry($entry, $tags); |
406 | } | 438 | } |