Ejemplo n.º 1
0
 /**
  * @Route("/rss/{blogId}", name="icap_blog_rss", requirements={"blogId" = "\d+"})
  * @ParamConverter("blog", class="IcapBlogBundle:Blog", options={"id" = "blogId"})
  */
 public function rssAction(Blog $blog)
 {
     $baseUrl = $this->get('request')->getSchemeAndHttpHost();
     $feed = ['title' => $blog->getResourceNode()->getName(), 'description' => $blog->getInfos(), 'siteUrl' => $baseUrl . $this->generateUrl('icap_blog_view', ['blogId' => $blog->getId()]), 'feedUrl' => $baseUrl . $this->generateUrl('icap_blog_rss', ['blogId' => $blog->getId()]), 'lang' => $this->get('claroline.config.platform_config_handler')->getParameter('locale_language')];
     /** @var \Icap\BlogBundle\Entity\Post[] $posts */
     $posts = $this->getDoctrine()->getRepository('IcapBlogBundle:Post')->findRssDatas($blog);
     $items = [];
     foreach ($posts as $post) {
         $items[] = ['title' => $post->getTitle(), 'url' => $baseUrl . $this->generateUrl('icap_blog_post_view', ['blogId' => $blog->getId(), 'postSlug' => $post->getSlug()]), 'date' => $post->getPublicationDate()->format('d/m/Y h:i:s'), 'intro' => $post->getContent(), 'author' => $post->getAuthor()->getFirstName() - $post->getAuthor()->getLastName()];
     }
     return new Response($this->renderView('IcapBlogBundle:Blog:rss.html.twig', ['feed' => $feed, 'items' => $items]), 200, ['Content-Type' => 'application/rss+xml', 'charset' => 'utf-8']);
 }
Ejemplo n.º 2
0
 /**
  * @param Blog  $blog
  * @param array $changeSet
  *
  * @return Controller
  */
 protected function dispatchBlogUpdateEvent(Blog $blog, $changeSet)
 {
     $logEvent = new LogResourceUpdateEvent($blog->getResourceNode(), $changeSet);
     return $this->dispatch($logEvent);
 }
Ejemplo n.º 3
0
 private function persistCommentUpdate(Request $request, Blog $blog, Post $post, Comment $comment, User $user, array $messages)
 {
     $form = $this->createForm($this->get('icap_blog.form.comment'), $comment);
     if ($request->isXMLHttpRequest()) {
         return $this->render('IcapBlogBundle:Comment:inlineEdit.html.twig', array('_resource' => $blog, 'post' => $post, 'comment' => $comment, 'workspace' => $blog->getResourceNode()->getWorkspace(), 'form' => $form->createView()));
     } else {
         if ("POST" === $request->getMethod()) {
             $form->handleRequest($request);
             if ($form->isValid()) {
                 $flashBag = $this->get('session')->getFlashBag();
                 $entityManager = $this->getDoctrine()->getManager();
                 try {
                     $unitOfWork = $entityManager->getUnitOfWork();
                     $unitOfWork->computeChangeSets();
                     $changeSet = $unitOfWork->getEntityChangeSet($comment);
                     $entityManager->persist($comment);
                     $entityManager->flush();
                     $this->dispatchCommentUpdateEvent($post, $comment, $changeSet);
                     $flashBag->add('success', $messages['success']);
                 } catch (\Exception $exception) {
                     $flashBag->add('error', $messages['error']);
                 }
                 return $this->redirect($this->generateUrl('icap_blog_post_view', array('blogId' => $blog->getId(), 'postSlug' => $post->getSlug())));
             }
         }
     }
     return array('_resource' => $blog, 'bannerForm' => $this->getBannerForm($blog->getOptions()), 'user' => $user, 'post' => $post, 'comment' => $comment, 'form' => $form->createView());
 }