1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-22 17:18:37 +00:00

Add entry export in API

Export isn't available for json & xml because user can use the default
entry endpoint instead.
This commit is contained in:
Jeremy Benoist 2016-10-08 12:59:17 +02:00
parent 24de866534
commit 3f3a60879e
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
4 changed files with 90 additions and 64 deletions

View file

@ -3,7 +3,7 @@
namespace Wallabag\ApiBundle\Controller;
use FOS\RestBundle\Controller\FOSRestController;
use Hateoas\Configuration\Route;
use Hateoas\Configuration\Route as HateoasRoute;
use Hateoas\Representation\Factory\PagerfantaFactory;
use Nelmio\ApiDocBundle\Annotation\ApiDoc;
use Symfony\Component\HttpFoundation\Request;
@ -12,6 +12,7 @@ use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\Tag;
use FOS\RestBundle\Controller\Annotations\Route;
class WallabagRestController extends FOSRestController
{
@ -95,7 +96,7 @@ class WallabagRestController extends FOSRestController
$pagerfantaFactory = new PagerfantaFactory('page', 'perPage');
$paginatedCollection = $pagerfantaFactory->createRepresentation(
$pager,
new Route(
new HateoasRoute(
'api_get_entries',
[
'archive' => $isArchived,
@ -127,23 +128,40 @@ class WallabagRestController extends FOSRestController
*
* @return JsonResponse
*/
public function getEntryAction(Entry $entry, $_format)
public function getEntryAction(Entry $entry)
{
$this->validateAuthentication();
$this->validateUserAccess($entry->getUser()->getId());
if ($_format === 'epub') {
return $this->get('wallabag_core.helper.entries_export')
->setEntries($entry)
->updateTitle('entry')
->exportAs($_format);
}
$json = $this->get('serializer')->serialize($entry, 'json');
return (new JsonResponse())->setJson($json);
}
/**
* Retrieve a single entry as a predefined format.
*
* @ApiDoc(
* requirements={
* {"name"="entry", "dataType"="integer", "requirement"="\w+", "description"="The entry ID"}
* }
* )
*
* @Route(requirements={"_format"="epub|mobi|pdf|txt|csv"})
*
* @return Response
*/
public function getEntryExportAction(Entry $entry, Request $request)
{
$this->validateAuthentication();
$this->validateUserAccess($entry->getUser()->getId());
return $this->get('wallabag_core.helper.entries_export')
->setEntries($entry)
->updateTitle('entry')
->exportAs($request->attributes->get('_format'));
}
/**
* Create an entry.
*

View file

@ -1,6 +1,4 @@
entries:
type: rest
resource: "WallabagApiBundle:WallabagRest"
name_prefix: api_
requirements:
_format: xml|json|html|epub
api:
type: rest
resource: "WallabagApiBundle:WallabagRest"
name_prefix: api_