date-poll-api/src/Controller/PollController.php

113 lines
3.1 KiB
PHP
Raw Normal View History

2020-01-30 11:28:24 +01:00
<?php
namespace App\Controller;
use App\Entity\Poll;
2020-10-26 11:39:04 +01:00
use App\Form\PollType;
use App\Repository\PollRepository;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
2020-01-30 11:28:24 +01:00
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
2020-10-26 11:39:04 +01:00
use Symfony\Component\Routing\Annotation\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
2020-01-30 11:28:24 +01:00
/**
2020-10-26 11:39:04 +01:00
* @Route("/poll")
2020-01-30 11:28:24 +01:00
*/
2020-10-26 11:39:04 +01:00
class PollController extends AbstractController
{
/**
* @Route("/", name="poll_index", methods={"GET"})
*/
public function index(PollRepository $pollRepository): Response
{
$polls = $pollRepository->findAll();
$titles=[];
foreach ( $polls as $poll ) {
$titles[] = $poll->getTitle();
}
2020-10-26 11:39:04 +01:00
return $this->render('poll/index.html.twig', [
'count' => count($polls),
2021-04-21 11:04:54 +02:00
'titles' => $titles,
'polls' => $polls,
2020-10-26 11:39:04 +01:00
]);
}
/**
* @Route("/new", name="poll_new", methods={"GET","POST"})
*/
public function new(Request $request): Response
{
$poll = new Poll();
$form = $this->createForm(PollType::class, $poll);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
$entityManager = $this->getDoctrine()->getManager();
$entityManager->persist($poll);
$entityManager->flush();
return $this->redirectToRoute('poll_index');
}
return $this->render('poll/new.html.twig', [
'poll' => $poll,
'form' => $form->createView(),
]);
}
/**
* on cherche un sondage par son url personnalisée
2020-10-26 11:39:04 +01:00
* @Route("/{id}", name="poll_show", methods={"GET"})
*/
public function show($id): Response
2020-10-26 11:39:04 +01:00
{
$repository = $this->getDoctrine()->getRepository(Poll::class);
$foundPoll = $repository->findOneByCustomUrl($id);
if(!$foundPoll){
return $this->json([
'message' => $id.' : not found'
], 404);
}
2020-10-26 11:39:04 +01:00
return $this->render('poll/show.html.twig', [
'poll' => $foundPoll,
2020-10-26 11:39:04 +01:00
]);
}
/**
* @Route("/{id}/edit", name="poll_edit", methods={"GET","POST"})
*/
public function edit(Request $request, Poll $poll): Response
{
$form = $this->createForm(PollType::class, $poll);
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
$this->getDoctrine()->getManager()->flush();
return $this->redirectToRoute('poll_index');
}
return $this->render('poll/edit.html.twig', [
'poll' => $poll,
'form' => $form->createView(),
]);
}
/**
* @Route("/{id}", name="poll_delete", methods={"DELETE"})
*/
public function delete(Request $request, Poll $poll): Response
{
if ($this->isCsrfTokenValid('delete'.$poll->getId(), $request->request->get('_token'))) {
$entityManager = $this->getDoctrine()->getManager();
$entityManager->remove($poll);
$entityManager->flush();
}
return $this->redirectToRoute('poll_index');
}
2020-01-30 11:28:24 +01:00
}