wallabag/src/Wallabag/CoreBundle/Controller/RssController.php

96 lines
3.1 KiB
PHP
Raw Normal View History

2015-03-28 13:27:45 +00:00
<?php
namespace Wallabag\CoreBundle\Controller;
use Pagerfanta\Adapter\DoctrineORMAdapter;
use Pagerfanta\Pagerfanta;
2015-03-28 13:27:45 +00:00
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
2015-03-28 13:27:45 +00:00
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\UserBundle\Entity\User;
2015-03-28 13:27:45 +00:00
class RssController extends Controller
{
/**
2015-05-30 11:52:26 +00:00
* Shows unread entries for current user.
2015-03-28 13:27:45 +00:00
*
* @Route("/{username}/{token}/unread.xml", name="unread_rss", defaults={"_format"="xml"})
* @ParamConverter("user", class="WallabagUserBundle:User", converter="username_rsstoken_converter")
2015-03-28 13:27:45 +00:00
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function showUnreadAction(User $user)
{
return $this->showEntries('unread', $user);
2015-03-28 13:27:45 +00:00
}
/**
2015-05-30 11:52:26 +00:00
* Shows read entries for current user.
2015-03-28 13:27:45 +00:00
*
* @Route("/{username}/{token}/archive.xml", name="archive_rss")
* @ParamConverter("user", class="WallabagUserBundle:User", converter="username_rsstoken_converter")
2015-03-28 13:27:45 +00:00
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function showArchiveAction(User $user)
{
return $this->showEntries('archive', $user);
2015-03-28 13:27:45 +00:00
}
/**
2015-05-30 11:52:26 +00:00
* Shows starred entries for current user.
2015-03-28 13:27:45 +00:00
*
* @Route("/{username}/{token}/starred.xml", name="starred_rss")
* @ParamConverter("user", class="WallabagUserBundle:User", converter="username_rsstoken_converter")
2015-03-28 13:27:45 +00:00
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function showStarredAction(User $user)
{
return $this->showEntries('starred', $user);
}
/**
* Global method to retrieve entries depending on the given type
* It returns the response to be send.
*
* @param string $type Entries type: unread, starred or archive
* @param User $user
*
* @return \Symfony\Component\HttpFoundation\Response
*/
private function showEntries($type, User $user)
{
$repository = $this->getDoctrine()->getRepository('WallabagCoreBundle:Entry');
switch ($type) {
case 'starred':
$qb = $repository->getBuilderForStarredByUser($user->getId());
break;
case 'archive':
$qb = $repository->getBuilderForArchiveByUser($user->getId());
break;
case 'unread':
$qb = $repository->getBuilderForUnreadByUser($user->getId());
break;
default:
throw new \InvalidArgumentException(sprintf('Type "%s" is not implemented.', $type));
}
2015-03-28 13:27:45 +00:00
$pagerAdapter = new DoctrineORMAdapter($qb->getQuery());
$entries = new Pagerfanta($pagerAdapter);
2016-01-21 11:24:27 +00:00
$perPage = $user->getConfig()->getRssLimit() ?: $this->getParameter('wallabag_core.rss_limit');
$entries->setMaxPerPage($perPage);
2016-09-30 07:38:08 +00:00
return $this->render('@WallabagCore/themes/common/Entry/entries.xml.twig', [
'type' => $type,
2015-03-28 13:27:45 +00:00
'entries' => $entries,
]);
2015-03-28 13:27:45 +00:00
}
}