- $calendar = 'toto';
-
- //Render the view
- return $this->render('@RapsysAir/location/index.html.twig', ['title' => $title, 'section' => $section, 'calendar' => $calendar]+$context+$this->context);
- }
-
- public function show(Request $request, $id) {
- }
-
- public function toto(Request $request) {
- //Prevent non-admin to access here
- $this->denyAccessUnlessGranted('ROLE_GUEST', null, 'Unable to access this page without ROLE_GUEST!');
-
- //Set section
- $section = $this->translator->trans('Admin');
-
- //Set title
- $title = $section.' - '.$this->translator->trans($this->config['site']['title']);
-
- header('Content-Type: text/plain');
- var_dump('TODO');
- exit;
- //Create the form according to the FormType created previously.
- //And give the proper parameters
- $form = $this->createForm('Rapsys\AirBundle\Form\ApplicationType', null, [
- // To set the action use $this->generateUrl('route_identifier')
- 'action' => $this->generateUrl('rapsys_air_admin'),
- 'method' => 'POST',
- 'attr' => [ 'class' => 'form_col' ]
- ]);
-
- //Get doctrine
- $doctrine = $this->getDoctrine();
-
- //Handle request
- if ($request->isMethod('POST')) {
- // Refill the fields in case the form is not valid.
- $form->handleRequest($request);
-
- if ($form->isValid()) {
- //Get data
- $data = $form->getData();
-
- //Get manager
- $manager = $doctrine->getManager();
-
- //Protect session fetching
- try {
- $session = $doctrine->getRepository(Session::class)->findOneByLocationSlotDate($data['location'], $data['slot'], $data['date']);
- //Catch no session case
- } catch (\Doctrine\ORM\NoResultException $e) {
- //Create the session
- $session = new Session();
- $session->setLocation($data['location']);
- $session->setSlot($data['slot']);
- $session->setDate($data['date']);
- $session->setCreated(new \DateTime('now'));
- $session->setUpdated(new \DateTime('now'));
- $manager->persist($session);
- //Flush to get the ids
- #$manager->flush();
- }
-
- //Init application
- $application = false;
-
- //Protect application fetching
- try {
- //TODO: handle admin case where we provide a user in extra
- $application = $doctrine->getRepository(Application::class)->findOneBySessionUser($session, $this->getUser());
-
- //Add error message to mail field
- $form->get('slot')->addError(new FormError($this->translator->trans('Application already exists')));
- //Catch no application cases
- //XXX: combine these catch when php 7.1 is available
- } catch (\Doctrine\ORM\NoResultException $e) {
- //Catch invalid argument because session is not already persisted
- } catch(\Doctrine\ORM\ORMInvalidArgumentException $e) {
- }
-
- //Create new application if none found
- if (!$application) {
- //Create the application
- $application = new Application();
- $application->setSession($session);
- //TODO: handle admin case where we provide a user in extra
- $application->setUser($this->getUser());
- $application->setCreated(new \DateTime('now'));
- $application->setUpdated(new \DateTime('now'));
- $manager->persist($application);
-
- //Flush to get the ids
- $manager->flush();
-
- //Add notice in flash message
- $this->addFlash('notice', $this->translator->trans('Application request the %date% for %location% on the slot %slot% saved', ['%location%' => $data['location']->getTitle(), '%slot%' => $data['slot']->getTitle(), '%date%' => $data['date']->format('Y-m-d')]));
-
- //Redirect to cleanup the form
- return $this->redirectToRoute('rapsys_air_admin');
- }
- }
- }
-