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

193 lines
5.9 KiB
PHP
Raw Normal View History

2015-01-22 16:18:56 +00:00
<?php
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;
use Wallabag\CoreBundle\Repository;
2015-01-26 21:15:19 +00:00
use Wallabag\CoreBundle\Service\Extractor;
2015-01-27 12:08:02 +00:00
use Wallabag\CoreBundle\Helper\Url;
2015-01-22 16:18:56 +00:00
class EntryController extends Controller
{
2015-01-23 13:58:17 +00:00
/**
2015-01-31 18:09:34 +00:00
* @param Request $request
2015-01-23 13:58:17 +00:00
* @Route("/new", name="new_entry")
* @return \Symfony\Component\HttpFoundation\Response
*/
public function addEntryAction(Request $request)
{
$repository = $this->getDoctrine()->getRepository('WallabagCoreBundle:User');
$user = $repository->find(1);
$entry = new Entry($user);
2015-01-23 13:58:17 +00:00
$form = $this->createFormBuilder($entry)
->add('url', 'url')
->add('save', 'submit')
->getForm();
$form->handleRequest($request);
if ($form->isValid()) {
2015-01-26 21:15:19 +00:00
$content = Extractor::extract($entry->getUrl());
2015-01-23 13:58:17 +00:00
2015-01-26 21:15:19 +00:00
$entry->setTitle($content->getTitle());
$entry->setContent($content->getBody());
$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'));
}
return $this->render('WallabagCoreBundle:Entry:new.html.twig', array(
2015-01-23 13:58:17 +00:00
'form' => $form->createView(),
));
}
2015-01-22 16:18:56 +00:00
/**
2015-01-23 11:45:24 +00:00
* Shows unread entries for current user
*
2015-01-22 16:18:56 +00:00
* @Route("/unread", name="unread")
2015-01-23 11:45:24 +00:00
* @return \Symfony\Component\HttpFoundation\Response
2015-01-22 16:18:56 +00:00
*/
2015-01-22 20:11:22 +00:00
public function showUnreadAction()
2015-01-22 16:18:56 +00:00
{
2015-02-06 06:45:32 +00:00
$repository = $this->getDoctrine()->getRepository('WallabagCoreBundle:Entry');
2015-01-30 06:50:52 +00:00
// TODO don't give the user ID like this
// TODO change pagination
2015-01-23 11:45:24 +00:00
$entries = $repository->findUnreadByUser(1, 0);
2015-01-22 16:18:56 +00:00
return $this->render(
'WallabagCoreBundle:Entry:entries.html.twig',
2015-01-22 16:18:56 +00:00
array('entries' => $entries)
);
}
2015-01-22 20:11:22 +00:00
/**
2015-01-23 11:45:24 +00:00
* Shows read entries for current user
*
2015-01-22 20:11:22 +00:00
* @Route("/archive", name="archive")
2015-01-23 11:45:24 +00:00
* @return \Symfony\Component\HttpFoundation\Response
2015-01-22 20:11:22 +00:00
*/
public function showArchiveAction()
{
2015-02-06 06:45:32 +00:00
$repository = $this->getDoctrine()->getRepository('WallabagCoreBundle:Entry');
2015-01-30 06:50:52 +00:00
// TODO don't give the user ID like this
// TODO change pagination
2015-01-23 11:45:24 +00:00
$entries = $repository->findArchiveByUser(1, 0);
2015-01-22 20:11:22 +00:00
return $this->render(
'WallabagCoreBundle:Entry:entries.html.twig',
2015-01-22 20:11:22 +00:00
array('entries' => $entries)
);
}
/**
2015-01-23 11:45:24 +00:00
* Shows starred entries for current user
*
2015-01-22 20:11:22 +00:00
* @Route("/starred", name="starred")
2015-01-23 11:45:24 +00:00
* @return \Symfony\Component\HttpFoundation\Response
2015-01-22 20:11:22 +00:00
*/
public function showStarredAction()
{
2015-02-06 06:45:32 +00:00
$repository = $this->getDoctrine()->getRepository('WallabagCoreBundle:Entry');
2015-01-30 06:50:52 +00:00
// TODO don't give the user ID like this
// TODO change pagination
2015-01-23 11:45:24 +00:00
$entries = $repository->findStarredByUser(1, 0);
2015-01-22 20:11:22 +00:00
return $this->render(
'WallabagCoreBundle:Entry:entries.html.twig',
2015-01-22 20:11:22 +00:00
array('entries' => $entries)
);
}
/**
2015-01-23 11:45:24 +00:00
* Shows entry content
*
2015-02-06 06:45:32 +00:00
* @param Entry $entry
2015-01-22 20:11:22 +00:00
* @Route("/view/{id}", requirements={"id" = "\d+"}, name="view")
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
{
return $this->render(
'WallabagCoreBundle:Entry:entry.html.twig',
2015-01-22 20:11:22 +00:00
array('entry' => $entry)
);
2015-01-23 11:45:24 +00:00
}
/**
* Changes read status for an entry
*
2015-01-31 18:09:34 +00:00
* @param Request $request
2015-02-06 06:45:32 +00:00
* @param Entry $entry
2015-01-23 11:45:24 +00:00
* @Route("/archive/{id}", requirements={"id" = "\d+"}, name="archive_entry")
* @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
{
$entry->toggleArchive();
$this->getDoctrine()->getManager()->flush();
$this->get('session')->getFlashBag()->add(
'notice',
'Entry archived'
);
return $this->redirect($request->headers->get('referer'));
}
/**
* Changes favorite status for an entry
*
2015-01-31 18:09:34 +00:00
* @param Request $request
2015-02-06 06:45:32 +00:00
* @param Entry $entry
2015-01-23 11:45:24 +00:00
* @Route("/star/{id}", requirements={"id" = "\d+"}, name="star_entry")
* @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
{
$entry->toggleStar();
$this->getDoctrine()->getManager()->flush();
$this->get('session')->getFlashBag()->add(
'notice',
'Entry starred'
);
return $this->redirect($request->headers->get('referer'));
}
/**
* Deletes entry
*
2015-01-31 18:09:34 +00:00
* @param Request $request
2015-02-06 06:45:32 +00:00
* @param Entry $entry
2015-01-23 11:45:24 +00:00
* @Route("/delete/{id}", requirements={"id" = "\d+"}, name="delete_entry")
* @return \Symfony\Component\HttpFoundation\RedirectResponse
*/
2015-02-06 06:45:32 +00:00
public function deleteEntryAction(Request $request, Entry $entry)
2015-01-23 11:45:24 +00:00
{
2015-01-26 21:15:19 +00:00
$em = $this->getDoctrine()->getManager();
2015-02-04 16:54:23 +00:00
$entry->setDeleted(1);
$em->persist($entry);
2015-01-23 11:45:24 +00:00
$em->flush();
$this->get('session')->getFlashBag()->add(
'notice',
'Entry deleted'
);
2015-01-22 20:11:22 +00:00
2015-01-23 11:45:24 +00:00
return $this->redirect($request->headers->get('referer'));
2015-01-22 20:11:22 +00:00
}
2015-01-22 16:18:56 +00:00
}