src/Controller/BlogController.php line 73

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace App\Controller;
  11. use App\Entity\Comment;
  12. use App\Entity\Post;
  13. use App\Events\CommentCreatedEvent;
  14. use App\Form\CommentType;
  15. use App\Repository\PostRepository;
  16. use App\Repository\TagRepository;
  17. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Cache;
  18. use Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted;
  19. use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
  20. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  21. use Symfony\Component\EventDispatcher\EventDispatcherInterface;
  22. use Symfony\Component\HttpFoundation\Request;
  23. use Symfony\Component\HttpFoundation\Response;
  24. use Symfony\Component\Routing\Annotation\Route;
  25. /**
  26.  * Controller used to manage blog contents in the public part of the site.
  27.  *
  28.  * @Route("/blog")
  29.  *
  30.  * @author Ryan Weaver <weaverryan@gmail.com>
  31.  * @author Javier Eguiluz <javier.eguiluz@gmail.com>
  32.  */
  33. class BlogController extends AbstractController
  34. {
  35.     /**
  36.      * @Route("/", defaults={"page": "1", "_format"="html"}, methods="GET", name="blog_index")
  37.      * @Route("/rss.xml", defaults={"page": "1", "_format"="xml"}, methods="GET", name="blog_rss")
  38.      * @Route("/page/{page<[1-9]\d*>}", defaults={"_format"="html"}, methods="GET", name="blog_index_paginated")
  39.      * @Cache(smaxage="10")
  40.      *
  41.      * NOTE: For standard formats, Symfony will also automatically choose the best
  42.      * Content-Type header for the response.
  43.      * See https://symfony.com/doc/current/routing.html#special-parameters
  44.      */
  45.     public function index(Request $requestint $pagestring $_formatPostRepository $postsTagRepository $tags): Response
  46.     {
  47.         $tag null;
  48.         if ($request->query->has('tag')) {
  49.             $tag $tags->findOneBy(['name' => $request->query->get('tag')]);
  50.         }
  51.         $latestPosts $posts->findLatest($page$tag);
  52.         // Every template name also has two extensions that specify the format and
  53.         // engine for that template.
  54.         // See https://symfony.com/doc/current/templates.html#template-naming
  55.         return $this->render('blog/index.'.$_format.'.twig', [
  56.             'paginator' => $latestPosts,
  57.         ]);
  58.     }
  59.     /**
  60.      * @Route("/posts/{slug}", methods="GET", name="blog_post")
  61.      *
  62.      * NOTE: The $post controller argument is automatically injected by Symfony
  63.      * after performing a database query looking for a Post with the 'slug'
  64.      * value given in the route.
  65.      * See https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html
  66.      */
  67.     public function postShow(Post $post): Response
  68.     {
  69.         // Symfony's 'dump()' function is an improved version of PHP's 'var_dump()' but
  70.         // it's not available in the 'prod' environment to prevent leaking sensitive information.
  71.         // It can be used both in PHP files and Twig templates, but it requires to
  72.         // have enabled the DebugBundle. Uncomment the following line to see it in action:
  73.         //
  74.         // dump($post, $this->getUser(), new \DateTime());
  75.         return $this->render('blog/post_show.html.twig', ['post' => $post]);
  76.     }
  77.     /**
  78.      * @Route("/comment/{postSlug}/new", methods="POST", name="comment_new")
  79.      * @IsGranted("IS_AUTHENTICATED_FULLY")
  80.      * @ParamConverter("post", options={"mapping": {"postSlug": "slug"}})
  81.      *
  82.      * NOTE: The ParamConverter mapping is required because the route parameter
  83.      * (postSlug) doesn't match any of the Doctrine entity properties (slug).
  84.      * See https://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html#doctrine-converter
  85.      */
  86.     public function commentNew(Request $requestPost $postEventDispatcherInterface $eventDispatcher): Response
  87.     {
  88.         $comment = new Comment();
  89.         $comment->setAuthor($this->getUser());
  90.         $post->addComment($comment);
  91.         $form $this->createForm(CommentType::class, $comment);
  92.         $form->handleRequest($request);
  93.         if ($form->isSubmitted() && $form->isValid()) {
  94.             $em $this->getDoctrine()->getManager();
  95.             $em->persist($comment);
  96.             $em->flush();
  97.             // When an event is dispatched, Symfony notifies it to all the listeners
  98.             // and subscribers registered to it. Listeners can modify the information
  99.             // passed in the event and they can even modify the execution flow, so
  100.             // there's no guarantee that the rest of this controller will be executed.
  101.             // See https://symfony.com/doc/current/components/event_dispatcher.html
  102.             $eventDispatcher->dispatch(new CommentCreatedEvent($comment));
  103.             return $this->redirectToRoute('blog_post', ['slug' => $post->getSlug()]);
  104.         }
  105.         return $this->render('blog/comment_form_error.html.twig', [
  106.             'post' => $post,
  107.             'form' => $form->createView(),
  108.         ]);
  109.     }
  110.     /**
  111.      * This controller is called directly via the render() function in the
  112.      * blog/post_show.html.twig template. That's why it's not needed to define
  113.      * a route name for it.
  114.      *
  115.      * The "id" of the Post is passed in and then turned into a Post object
  116.      * automatically by the ParamConverter.
  117.      */
  118.     public function commentForm(Post $post): Response
  119.     {
  120.         $form $this->createForm(CommentType::class);
  121.         return $this->render('blog/_comment_form.html.twig', [
  122.             'post' => $post,
  123.             'form' => $form->createView(),
  124.         ]);
  125.     }
  126.     /**
  127.      * @Route("/search", methods="GET", name="blog_search")
  128.      */
  129.     public function search(Request $requestPostRepository $posts): Response
  130.     {
  131.         if (!$request->isXmlHttpRequest()) {
  132.             return $this->render('blog/search.html.twig');
  133.         }
  134.         $query $request->query->get('q''');
  135.         $limit $request->query->get('l'10);
  136.         $foundPosts $posts->findBySearchQuery($query$limit);
  137.         $results = [];
  138.         foreach ($foundPosts as $post) {
  139.             $results[] = [
  140.                 'title' => htmlspecialchars($post->getTitle(), ENT_COMPAT ENT_HTML5),
  141.                 'date' => $post->getPublishedAt()->format('M d, Y'),
  142.                 'author' => htmlspecialchars($post->getAuthor()->getFullName(), ENT_COMPAT ENT_HTML5),
  143.                 'summary' => htmlspecialchars($post->getSummary(), ENT_COMPAT ENT_HTML5),
  144.                 'url' => $this->generateUrl('blog_post', ['slug' => $post->getSlug()]),
  145.             ];
  146.         }
  147.         return $this->json($results);
  148.     }
  149. }