]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Added API endpoint to handle a list of URL and to add/delete tags
authorNicolas Lœuillet <nicolas@loeuillet.org>
Mon, 24 Apr 2017 09:12:41 +0000 (11:12 +0200)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Mon, 24 Apr 2017 09:12:41 +0000 (11:12 +0200)
src/Wallabag/ApiBundle/Controller/EntryRestController.php
tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php

index af5f760382bdbd729becb4c9dfb91cc7e4177649..fc46e782efb6cb29c5a6843c455e2d99b65ab3aa 100644 (file)
@@ -438,4 +438,72 @@ class EntryRestController extends WallabagRestController
 
         return (new JsonResponse())->setJson($json);
     }
+
+    /**
+     * Handles an entries list and add / delete to them some tags.
+     *
+     * @ApiDoc(
+     *       parameters={
+     *          {"name"="list", "dataType"="string", "required"=true, "format"="A JSON array of urls [{'url': 'http://...','tags': 'tag1, tag2','action': 'delete'}, {'url': 'http://...','tags': 'tag1, tag2','action': 'add'}]", "description"="Urls (as an array) to handle."}
+     *       }
+     * )
+     *
+     * @return JsonResponse
+     */
+    public function postEntriesTagsListAction(Request $request)
+    {
+        $this->validateAuthentication();
+
+        $list = json_decode($request->query->get('list', []));
+        $results = [];
+
+        // handle multiple urls
+        if (!empty($list)) {
+            $results = [];
+            foreach ($list as $key => $element) {
+                $entry = $this->get('wallabag_core.entry_repository')->findByUrlAndUserId(
+                    $element->url,
+                    $this->getUser()->getId()
+                );
+
+                $results[$key]['url'] = $element->url;
+                $results[$key]['action'] = $element->action;
+                $results[$key]['entry'] = $entry instanceof Entry ? $entry->getId() : false;
+
+                $tags = $element->tags;
+
+                if (false !== $entry && !(empty($tags))) {
+                    switch ($element->action) {
+                        case 'delete':
+                            $tags = explode(',', $tags);
+                            foreach ($tags as $label) {
+                                $label = trim($label);
+
+                                $tag = $this->getDoctrine()
+                                    ->getRepository('WallabagCoreBundle:Tag')
+                                    ->findOneByLabel($label);
+
+                                if (false !== $tag) {
+                                    $entry->removeTag($tag);
+                                }
+                            }
+
+                            break;
+                        case 'add':
+                            $this->get('wallabag_core.content_proxy')->assignTagsToEntry($entry, $tags);
+
+                            break;
+                    }
+
+                    $em = $this->getDoctrine()->getManager();
+                    $em->persist($entry);
+                    $em->flush();
+                }
+            }
+        }
+
+        $json = $this->get('serializer')->serialize($results, 'json');
+
+        return (new JsonResponse())->setJson($json);
+    }
 }
index dc5160c7a0badebea65f41f951db0ce7f8326b6d..1f5c7a4f8ea074c4c7a648e76156020d298d061e 100644 (file)
@@ -714,4 +714,35 @@ class EntryRestControllerTest extends WallabagApiTestCase
 
         $this->assertEquals('application/json', $this->client->getResponse()->headers->get('Content-Type'));
     }
+
+    public function testPostEntriesTagsListAction()
+    {
+        $list = [
+            [
+                'url' => 'http://0.0.0.0/entry1',
+                'tags' => 'foo bar, baz',
+                'action' => 'delete',
+            ],
+            [
+                'url' => 'http://0.0.0.0/entry2',
+                'tags' => 'new tag 1, new tag 2',
+                'action' => 'add',
+            ],
+        ];
+
+        $this->client->request('POST', '/api/entries/tags/lists?list='.json_encode($list));
+
+        $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
+
+        $content = json_decode($this->client->getResponse()->getContent(), true);
+
+
+        $this->assertFalse($content[0]['entry']);
+        $this->assertEquals('http://0.0.0.0/entry1', $content[0]['url']);
+        $this->assertEquals('delete', $content[0]['action']);
+
+        $this->assertInternalType('int', $content[1]['entry']);
+        $this->assertEquals('http://0.0.0.0/entry2', $content[1]['url']);
+        $this->assertEquals('add', $content[1]['action']);
+    }
 }