diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-10-08 12:59:17 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-10-08 12:59:19 +0200 |
commit | 3f3a60879e168f4a8040c441e295fa63e024961d (patch) | |
tree | a4b51dabab6bdaa6f7e7679b8bc424b2324b78dc /src/Wallabag/ApiBundle/Controller | |
parent | 24de86653440de3f84d585f089caab3734dcb573 (diff) | |
download | wallabag-3f3a60879e168f4a8040c441e295fa63e024961d.tar.gz wallabag-3f3a60879e168f4a8040c441e295fa63e024961d.tar.zst wallabag-3f3a60879e168f4a8040c441e295fa63e024961d.zip |
Add entry export in API
Export isn't available for json & xml because user can use the default
entry endpoint instead.
Diffstat (limited to 'src/Wallabag/ApiBundle/Controller')
-rw-r--r-- | src/Wallabag/ApiBundle/Controller/WallabagRestController.php | 38 |
1 files changed, 28 insertions, 10 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php index 072e5f85..85875589 100644 --- a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php +++ b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php | |||
@@ -3,7 +3,7 @@ | |||
3 | namespace Wallabag\ApiBundle\Controller; | 3 | namespace Wallabag\ApiBundle\Controller; |
4 | 4 | ||
5 | use FOS\RestBundle\Controller\FOSRestController; | 5 | use FOS\RestBundle\Controller\FOSRestController; |
6 | use Hateoas\Configuration\Route; | 6 | use Hateoas\Configuration\Route as HateoasRoute; |
7 | use Hateoas\Representation\Factory\PagerfantaFactory; | 7 | use Hateoas\Representation\Factory\PagerfantaFactory; |
8 | use Nelmio\ApiDocBundle\Annotation\ApiDoc; | 8 | use Nelmio\ApiDocBundle\Annotation\ApiDoc; |
9 | use Symfony\Component\HttpFoundation\Request; | 9 | use Symfony\Component\HttpFoundation\Request; |
@@ -12,6 +12,7 @@ use Symfony\Component\Routing\Generator\UrlGeneratorInterface; | |||
12 | use Symfony\Component\Security\Core\Exception\AccessDeniedException; | 12 | use Symfony\Component\Security\Core\Exception\AccessDeniedException; |
13 | use Wallabag\CoreBundle\Entity\Entry; | 13 | use Wallabag\CoreBundle\Entity\Entry; |
14 | use Wallabag\CoreBundle\Entity\Tag; | 14 | use Wallabag\CoreBundle\Entity\Tag; |
15 | use FOS\RestBundle\Controller\Annotations\Route; | ||
15 | 16 | ||
16 | class WallabagRestController extends FOSRestController | 17 | class WallabagRestController extends FOSRestController |
17 | { | 18 | { |
@@ -95,7 +96,7 @@ class WallabagRestController extends FOSRestController | |||
95 | $pagerfantaFactory = new PagerfantaFactory('page', 'perPage'); | 96 | $pagerfantaFactory = new PagerfantaFactory('page', 'perPage'); |
96 | $paginatedCollection = $pagerfantaFactory->createRepresentation( | 97 | $paginatedCollection = $pagerfantaFactory->createRepresentation( |
97 | $pager, | 98 | $pager, |
98 | new Route( | 99 | new HateoasRoute( |
99 | 'api_get_entries', | 100 | 'api_get_entries', |
100 | [ | 101 | [ |
101 | 'archive' => $isArchived, | 102 | 'archive' => $isArchived, |
@@ -127,24 +128,41 @@ class WallabagRestController extends FOSRestController | |||
127 | * | 128 | * |
128 | * @return JsonResponse | 129 | * @return JsonResponse |
129 | */ | 130 | */ |
130 | public function getEntryAction(Entry $entry, $_format) | 131 | public function getEntryAction(Entry $entry) |
131 | { | 132 | { |
132 | $this->validateAuthentication(); | 133 | $this->validateAuthentication(); |
133 | $this->validateUserAccess($entry->getUser()->getId()); | 134 | $this->validateUserAccess($entry->getUser()->getId()); |
134 | 135 | ||
135 | if ($_format === 'epub') { | ||
136 | return $this->get('wallabag_core.helper.entries_export') | ||
137 | ->setEntries($entry) | ||
138 | ->updateTitle('entry') | ||
139 | ->exportAs($_format); | ||
140 | } | ||
141 | |||
142 | $json = $this->get('serializer')->serialize($entry, 'json'); | 136 | $json = $this->get('serializer')->serialize($entry, 'json'); |
143 | 137 | ||
144 | return (new JsonResponse())->setJson($json); | 138 | return (new JsonResponse())->setJson($json); |
145 | } | 139 | } |
146 | 140 | ||
147 | /** | 141 | /** |
142 | * Retrieve a single entry as a predefined format. | ||
143 | * | ||
144 | * @ApiDoc( | ||
145 | * requirements={ | ||
146 | * {"name"="entry", "dataType"="integer", "requirement"="\w+", "description"="The entry ID"} | ||
147 | * } | ||
148 | * ) | ||
149 | * | ||
150 | * @Route(requirements={"_format"="epub|mobi|pdf|txt|csv"}) | ||
151 | * | ||
152 | * @return Response | ||
153 | */ | ||
154 | public function getEntryExportAction(Entry $entry, Request $request) | ||
155 | { | ||
156 | $this->validateAuthentication(); | ||
157 | $this->validateUserAccess($entry->getUser()->getId()); | ||
158 | |||
159 | return $this->get('wallabag_core.helper.entries_export') | ||
160 | ->setEntries($entry) | ||
161 | ->updateTitle('entry') | ||
162 | ->exportAs($request->attributes->get('_format')); | ||
163 | } | ||
164 | |||
165 | /** | ||
148 | * Create an entry. | 166 | * Create an entry. |
149 | * | 167 | * |
150 | * @ApiDoc( | 168 | * @ApiDoc( |