2015-01-22 16:18:56 +00:00
|
|
|
<?php
|
|
|
|
|
2015-01-23 15:28:37 +00:00
|
|
|
namespace Wallabag\CoreBundle\Controller;
|
2015-01-22 16:18:56 +00:00
|
|
|
|
|
|
|
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
2015-01-23 11:45:24 +00:00
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
2015-02-06 06:45:32 +00:00
|
|
|
use Wallabag\CoreBundle\Entity\Entry;
|
2015-06-02 16:54:34 +00:00
|
|
|
use Wallabag\CoreBundle\Form\Type\NewEntryType;
|
|
|
|
use Wallabag\CoreBundle\Form\Type\EditEntryType;
|
2015-08-07 20:20:30 +00:00
|
|
|
use Wallabag\CoreBundle\Filter\EntryFilterType;
|
|
|
|
use Pagerfanta\Adapter\DoctrineORMAdapter;
|
|
|
|
use Pagerfanta\Pagerfanta;
|
2015-01-22 16:18:56 +00:00
|
|
|
|
|
|
|
class EntryController extends Controller
|
|
|
|
{
|
2015-01-23 13:58:17 +00:00
|
|
|
/**
|
2015-02-10 21:33:18 +00:00
|
|
|
* @param Request $request
|
|
|
|
*
|
2015-08-12 06:22:30 +00:00
|
|
|
* @Route("/new-entry", name="new_entry")
|
2015-02-10 21:33:18 +00:00
|
|
|
*
|
2015-01-23 13:58:17 +00:00
|
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
2015-08-12 06:22:30 +00:00
|
|
|
public function addEntryFormAction(Request $request)
|
2015-01-23 13:58:17 +00:00
|
|
|
{
|
2015-02-08 22:05:51 +00:00
|
|
|
$entry = new Entry($this->getUser());
|
2015-01-23 13:58:17 +00:00
|
|
|
|
2015-06-02 16:54:34 +00:00
|
|
|
$form = $this->createForm(new NewEntryType(), $entry);
|
2015-01-23 13:58:17 +00:00
|
|
|
|
|
|
|
$form->handleRequest($request);
|
|
|
|
|
|
|
|
if ($form->isValid()) {
|
2015-09-10 19:57:25 +00:00
|
|
|
$entry = $this->get('wallabag_core.content_proxy')->updateEntry($entry, $entry->getUrl());
|
2015-01-26 21:15:19 +00:00
|
|
|
|
|
|
|
$em = $this->getDoctrine()->getManager();
|
2015-01-23 13:58:17 +00:00
|
|
|
$em->persist($entry);
|
|
|
|
$em->flush();
|
|
|
|
|
|
|
|
$this->get('session')->getFlashBag()->add(
|
|
|
|
'notice',
|
|
|
|
'Entry saved'
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->redirect($this->generateUrl('homepage'));
|
|
|
|
}
|
|
|
|
|
2015-08-12 06:22:30 +00:00
|
|
|
return $this->render('WallabagCoreBundle:Entry:new_form.html.twig', array(
|
2015-01-23 13:58:17 +00:00
|
|
|
'form' => $form->createView(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2015-08-12 06:22:30 +00:00
|
|
|
/**
|
|
|
|
* @param Request $request
|
|
|
|
*
|
|
|
|
* @Route("/new", name="new")
|
|
|
|
*
|
|
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
|
|
|
public function addEntryAction(Request $request)
|
|
|
|
{
|
|
|
|
return $this->render('WallabagCoreBundle:Entry:new.html.twig');
|
|
|
|
}
|
|
|
|
|
2015-06-02 16:54:34 +00:00
|
|
|
/**
|
|
|
|
* Edit an entry content.
|
|
|
|
*
|
|
|
|
* @param Request $request
|
|
|
|
* @param Entry $entry
|
|
|
|
*
|
|
|
|
* @Route("/edit/{id}", requirements={"id" = "\d+"}, name="edit")
|
|
|
|
*
|
|
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
|
|
|
public function editEntryAction(Request $request, Entry $entry)
|
|
|
|
{
|
|
|
|
$this->checkUserAction($entry);
|
|
|
|
|
|
|
|
$form = $this->createForm(new EditEntryType(), $entry);
|
|
|
|
|
|
|
|
$form->handleRequest($request);
|
|
|
|
|
|
|
|
if ($form->isValid()) {
|
|
|
|
$em = $this->getDoctrine()->getManager();
|
|
|
|
$em->persist($entry);
|
|
|
|
$em->flush();
|
|
|
|
|
|
|
|
$this->get('session')->getFlashBag()->add(
|
|
|
|
'notice',
|
|
|
|
'Entry updated'
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->redirect($this->generateUrl('view', array('id' => $entry->getId())));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->render('WallabagCoreBundle:Entry:edit.html.twig', array(
|
|
|
|
'form' => $form->createView(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2015-08-20 13:59:47 +00:00
|
|
|
/**
|
|
|
|
* Shows all entries for current user.
|
|
|
|
*
|
|
|
|
* @param Request $request
|
|
|
|
* @param int $page
|
|
|
|
*
|
|
|
|
* @Route("/all/list/{page}", name="all", defaults={"page" = "1"})
|
|
|
|
*
|
|
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
|
|
|
public function showAllAction(Request $request, $page)
|
|
|
|
{
|
2015-08-21 05:38:18 +00:00
|
|
|
return $this->showEntries('all', $request, $page);
|
2015-08-20 13:59:47 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 16:18:56 +00:00
|
|
|
/**
|
2015-05-30 11:52:26 +00:00
|
|
|
* Shows unread entries for current user.
|
2015-01-23 11:45:24 +00:00
|
|
|
*
|
2015-08-07 20:20:30 +00:00
|
|
|
* @param Request $request
|
|
|
|
* @param int $page
|
|
|
|
*
|
2015-07-27 21:20:32 +00:00
|
|
|
* @Route("/unread/list/{page}", name="unread", defaults={"page" = "1"})
|
2015-02-10 21:33:18 +00:00
|
|
|
*
|
2015-01-23 11:45:24 +00:00
|
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
2015-01-22 16:18:56 +00:00
|
|
|
*/
|
2015-08-07 20:20:30 +00:00
|
|
|
public function showUnreadAction(Request $request, $page)
|
2015-01-22 16:18:56 +00:00
|
|
|
{
|
2015-08-20 18:10:06 +00:00
|
|
|
return $this->showEntries('unread', $request, $page);
|
2015-01-22 16:18:56 +00:00
|
|
|
}
|
2015-01-22 20:11:22 +00:00
|
|
|
|
|
|
|
/**
|
2015-05-30 11:52:26 +00:00
|
|
|
* Shows read entries for current user.
|
2015-01-23 11:45:24 +00:00
|
|
|
*
|
2015-08-07 20:20:30 +00:00
|
|
|
* @param Request $request
|
|
|
|
* @param int $page
|
|
|
|
*
|
2015-07-27 21:20:32 +00:00
|
|
|
* @Route("/archive/list/{page}", name="archive", defaults={"page" = "1"})
|
2015-02-10 21:33:18 +00:00
|
|
|
*
|
2015-01-23 11:45:24 +00:00
|
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
2015-01-22 20:11:22 +00:00
|
|
|
*/
|
2015-08-07 20:20:30 +00:00
|
|
|
public function showArchiveAction(Request $request, $page)
|
2015-01-22 20:11:22 +00:00
|
|
|
{
|
2015-08-20 18:10:06 +00:00
|
|
|
return $this->showEntries('archive', $request, $page);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows starred entries for current user.
|
|
|
|
*
|
|
|
|
* @param Request $request
|
|
|
|
* @param int $page
|
|
|
|
*
|
|
|
|
* @Route("/starred/list/{page}", name="starred", defaults={"page" = "1"})
|
|
|
|
*
|
|
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
|
|
|
public function showStarredAction(Request $request, $page)
|
|
|
|
{
|
|
|
|
return $this->showEntries('starred', $request, $page);
|
|
|
|
}
|
2015-08-07 20:20:30 +00:00
|
|
|
|
2015-08-20 18:10:06 +00:00
|
|
|
/**
|
|
|
|
* 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 Request $request
|
|
|
|
* @param int $page
|
|
|
|
*
|
|
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
|
|
*/
|
|
|
|
private function showEntries($type, Request $request, $page)
|
|
|
|
{
|
|
|
|
$repository = $this->getDoctrine()->getRepository('WallabagCoreBundle:Entry');
|
|
|
|
|
|
|
|
switch ($type) {
|
|
|
|
case 'starred':
|
|
|
|
$qb = $repository->getBuilderForStarredByUser($this->getUser()->getId());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'archive':
|
|
|
|
$qb = $repository->getBuilderForArchiveByUser($this->getUser()->getId());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'unread':
|
|
|
|
$qb = $repository->getBuilderForUnreadByUser($this->getUser()->getId());
|
|
|
|
break;
|
|
|
|
|
2015-08-21 05:38:18 +00:00
|
|
|
case 'all':
|
|
|
|
$qb = $repository->getBuilderForAllByUser($this->getUser()->getId());
|
|
|
|
break;
|
|
|
|
|
2015-08-20 18:10:06 +00:00
|
|
|
default:
|
|
|
|
throw new \InvalidArgumentException(sprintf('Type "%s" is not implemented.', $type));
|
|
|
|
}
|
|
|
|
|
2015-09-23 05:55:55 +00:00
|
|
|
$form = $this->get('form.factory')->create(new EntryFilterType($repository, $this->getUser()));
|
2015-07-27 21:20:32 +00:00
|
|
|
|
2015-08-07 20:20:30 +00:00
|
|
|
if ($request->query->has($form->getName())) {
|
|
|
|
// manually bind values from the request
|
|
|
|
$form->submit($request->query->get($form->getName()));
|
|
|
|
|
|
|
|
// build the query from the given form object
|
2015-08-20 18:10:06 +00:00
|
|
|
$this->get('lexik_form_filter.query_builder_updater')->addFilterConditions($form, $qb);
|
2015-08-07 20:20:30 +00:00
|
|
|
}
|
|
|
|
|
2015-08-20 18:10:06 +00:00
|
|
|
$pagerAdapter = new DoctrineORMAdapter($qb->getQuery());
|
2015-08-07 20:20:30 +00:00
|
|
|
$entries = new Pagerfanta($pagerAdapter);
|
|
|
|
|
2015-08-07 16:04:46 +00:00
|
|
|
$entries->setMaxPerPage($this->getUser()->getConfig()->getItemsPerPage());
|
2015-07-27 21:20:32 +00:00
|
|
|
$entries->setCurrentPage($page);
|
2015-01-22 20:11:22 +00:00
|
|
|
|
|
|
|
return $this->render(
|
2015-01-23 15:28:37 +00:00
|
|
|
'WallabagCoreBundle:Entry:entries.html.twig',
|
2015-07-27 21:20:32 +00:00
|
|
|
array(
|
2015-08-20 05:53:55 +00:00
|
|
|
'form' => $form->createView(),
|
|
|
|
'entries' => $entries,
|
|
|
|
'currentPage' => $page,
|
2015-07-27 21:20:32 +00:00
|
|
|
)
|
2015-01-22 20:11:22 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-30 11:52:26 +00:00
|
|
|
* Shows entry content.
|
2015-01-23 11:45:24 +00:00
|
|
|
*
|
2015-02-10 21:33:18 +00:00
|
|
|
* @param Entry $entry
|
|
|
|
*
|
2015-01-22 20:11:22 +00:00
|
|
|
* @Route("/view/{id}", requirements={"id" = "\d+"}, name="view")
|
2015-02-10 21:33:18 +00:00
|
|
|
*
|
2015-01-23 11:45:24 +00:00
|
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
2015-01-22 20:11:22 +00:00
|
|
|
*/
|
2015-02-06 06:45:32 +00:00
|
|
|
public function viewAction(Entry $entry)
|
2015-01-22 20:11:22 +00:00
|
|
|
{
|
2015-02-10 21:33:18 +00:00
|
|
|
$this->checkUserAction($entry);
|
|
|
|
|
2015-01-22 20:11:22 +00:00
|
|
|
return $this->render(
|
2015-01-23 15:28:37 +00:00
|
|
|
'WallabagCoreBundle:Entry:entry.html.twig',
|
2015-01-22 20:11:22 +00:00
|
|
|
array('entry' => $entry)
|
|
|
|
);
|
2015-01-23 11:45:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-30 11:52:26 +00:00
|
|
|
* Changes read status for an entry.
|
2015-01-23 11:45:24 +00:00
|
|
|
*
|
2015-02-10 21:33:18 +00:00
|
|
|
* @param Request $request
|
|
|
|
* @param Entry $entry
|
|
|
|
*
|
2015-01-23 11:45:24 +00:00
|
|
|
* @Route("/archive/{id}", requirements={"id" = "\d+"}, name="archive_entry")
|
2015-02-10 21:33:18 +00:00
|
|
|
*
|
2015-01-23 11:45:24 +00:00
|
|
|
* @return \Symfony\Component\HttpFoundation\RedirectResponse
|
|
|
|
*/
|
2015-02-06 06:45:32 +00:00
|
|
|
public function toggleArchiveAction(Request $request, Entry $entry)
|
2015-01-23 11:45:24 +00:00
|
|
|
{
|
2015-02-10 21:33:18 +00:00
|
|
|
$this->checkUserAction($entry);
|
|
|
|
|
2015-01-23 11:45:24 +00:00
|
|
|
$entry->toggleArchive();
|
|
|
|
$this->getDoctrine()->getManager()->flush();
|
|
|
|
|
|
|
|
$this->get('session')->getFlashBag()->add(
|
|
|
|
'notice',
|
2015-08-20 05:53:55 +00:00
|
|
|
'Entry '.($entry->isArchived() ? 'archived' : 'unarchived')
|
2015-01-23 11:45:24 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
return $this->redirect($request->headers->get('referer'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-30 11:52:26 +00:00
|
|
|
* Changes favorite status for an entry.
|
2015-01-23 11:45:24 +00:00
|
|
|
*
|
2015-02-10 21:33:18 +00:00
|
|
|
* @param Request $request
|
|
|
|
* @param Entry $entry
|
|
|
|
*
|
2015-01-23 11:45:24 +00:00
|
|
|
* @Route("/star/{id}", requirements={"id" = "\d+"}, name="star_entry")
|
2015-02-10 21:33:18 +00:00
|
|
|
*
|
2015-01-23 11:45:24 +00:00
|
|
|
* @return \Symfony\Component\HttpFoundation\RedirectResponse
|
|
|
|
*/
|
2015-02-06 06:45:32 +00:00
|
|
|
public function toggleStarAction(Request $request, Entry $entry)
|
2015-01-23 11:45:24 +00:00
|
|
|
{
|
2015-02-10 21:33:18 +00:00
|
|
|
$this->checkUserAction($entry);
|
|
|
|
|
2015-01-23 11:45:24 +00:00
|
|
|
$entry->toggleStar();
|
|
|
|
$this->getDoctrine()->getManager()->flush();
|
|
|
|
|
|
|
|
$this->get('session')->getFlashBag()->add(
|
|
|
|
'notice',
|
2015-08-20 05:53:55 +00:00
|
|
|
'Entry '.($entry->isStarred() ? 'starred' : 'unstarred')
|
2015-01-23 11:45:24 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
return $this->redirect($request->headers->get('referer'));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-08-22 09:40:45 +00:00
|
|
|
* Deletes entry and redirect to the homepage.
|
2015-01-23 11:45:24 +00:00
|
|
|
*
|
2015-08-22 09:40:45 +00:00
|
|
|
* @param Entry $entry
|
2015-02-10 21:33:18 +00:00
|
|
|
*
|
2015-01-23 11:45:24 +00:00
|
|
|
* @Route("/delete/{id}", requirements={"id" = "\d+"}, name="delete_entry")
|
2015-02-10 21:33:18 +00:00
|
|
|
*
|
2015-01-23 11:45:24 +00:00
|
|
|
* @return \Symfony\Component\HttpFoundation\RedirectResponse
|
|
|
|
*/
|
2015-08-22 09:40:45 +00:00
|
|
|
public function deleteEntryAction(Entry $entry)
|
2015-01-23 11:45:24 +00:00
|
|
|
{
|
2015-02-10 21:33:18 +00:00
|
|
|
$this->checkUserAction($entry);
|
|
|
|
|
2015-02-20 14:36:25 +00:00
|
|
|
$em = $this->getDoctrine()->getManager();
|
|
|
|
$em->remove($entry);
|
|
|
|
$em->flush();
|
2015-01-23 11:45:24 +00:00
|
|
|
|
|
|
|
$this->get('session')->getFlashBag()->add(
|
|
|
|
'notice',
|
|
|
|
'Entry deleted'
|
|
|
|
);
|
2015-01-22 20:11:22 +00:00
|
|
|
|
2015-08-22 09:40:45 +00:00
|
|
|
return $this->redirect($this->generateUrl('homepage'));
|
2015-01-22 20:11:22 +00:00
|
|
|
}
|
2015-02-10 21:33:18 +00:00
|
|
|
|
|
|
|
/**
|
2015-05-30 11:52:26 +00:00
|
|
|
* Check if the logged user can manage the given entry.
|
2015-02-10 21:33:18 +00:00
|
|
|
*
|
|
|
|
* @param Entry $entry
|
|
|
|
*/
|
|
|
|
private function checkUserAction(Entry $entry)
|
|
|
|
{
|
|
|
|
if ($this->getUser()->getId() != $entry->getUser()->getId()) {
|
2015-06-02 16:54:34 +00:00
|
|
|
throw $this->createAccessDeniedException('You can not access this entry.');
|
2015-02-10 21:33:18 +00:00
|
|
|
}
|
|
|
|
}
|
2015-01-22 16:18:56 +00:00
|
|
|
}
|