1 <?php 
declare(strict_types
=1); 
   4  * This file is part of the Rapsys AirBundle package. 
   6  * (c) Raphaël Gertz <symfony@rapsys.eu> 
   8  * For the full copyright and license information, please view the LICENSE 
   9  * file that was distributed with this source code. 
  12 namespace Rapsys\AirBundle\Controller
; 
  14 use Doctrine\Bundle\DoctrineBundle\Registry
; 
  15 use Doctrine\ORM\EntityManagerInterface
; 
  16 use Doctrine\ORM\NoResultException
; 
  17 use Doctrine\ORM\ORMInvalidArgumentException
; 
  18 use Symfony\Component\Form\FormError
; 
  19 use Symfony\Component\HttpFoundation\Request
; 
  20 use Symfony\Component\HttpFoundation\Response
; 
  21 use Symfony\Component\Routing\Exception\MethodNotAllowedException
; 
  22 use Symfony\Component\Routing\Exception\ResourceNotFoundException
; 
  23 use Symfony\Component\Routing\RequestContext
; 
  25 use Rapsys\AirBundle\Entity\Application
; 
  26 use Rapsys\AirBundle\Entity\Dance
; 
  27 use Rapsys\AirBundle\Entity\Location
; 
  28 use Rapsys\AirBundle\Entity\Session
; 
  29 use Rapsys\AirBundle\Entity\Slot
; 
  30 use Rapsys\AirBundle\Entity\User
; 
  35 class ApplicationController 
extends AbstractController 
{ 
  39          * @desc Persist application and all required dependencies in database 
  41          * @param Request $request The request instance 
  42          * @param Registry $manager The doctrine registry 
  43          * @param EntityManagerInterface $manager The doctrine entity manager 
  45          * @return Response The rendered view or redirection 
  47          * @throws \RuntimeException When user has not at least guest role 
  49         public function add(Request 
$request, Registry 
$doctrine, EntityManagerInterface 
$manager) { 
  50                 //Prevent non-guest to access here 
  51                 $this->denyAccessUnlessGranted('ROLE_GUEST', null, $this->translator
->trans('Unable to access this page without role %role%!', ['%role%' => $this->translator
->trans('Guest')])); 
  53                 //Get favorites dances 
  54                 $danceFavorites = $doctrine->getRepository(Dance
::class)->findByUserId($this->getUser()->getId()); 
  57                 $danceDefault = !empty($danceFavorites)?current($danceFavorites):null; 
  60                 //Get favorites locations 
  61                 $locationFavorites = $doctrine->getRepository(Location
::class)->findByUserId($this->getUser()->getId()); 
  63                 //Set location default 
  64                 $locationDefault = !empty($locationFavorites)?current($locationFavorites):null; 
  67                 if ($this->isGranted('ROLE_ADMIN')) { 
  69                         $dances = $doctrine->getRepository(Dance
::class)->findAll(); 
  72                         $locations = $doctrine->getRepository(Location
::class)->findAll(); 
  75                         //Restrict to favorite dances 
  76                         $dances = $danceFavorites; 
  81                         //Restrict to favorite locations 
  82                         $locations = $locationFavorites; 
  85                         $locationFavorites = []; 
  88                 //Create ApplicationType form 
  89                 $form = $this->createForm('Rapsys\AirBundle\Form\ApplicationType', null, [ 
  91                         'action' => $this->generateUrl('rapsys_air_application_add'), 
  92                         //Set the form attribute 
  93                         #'attr' => [ 'class' => 'col' ], 
  95                         'dance_choices' => $dances, 
  97                         'dance_default' => $danceDefault, 
  99                         'dance_favorites' => $danceFavorites, 
 100                         //Set location choices 
 101                         'location_choices' => $locations, 
 102                         //Set location default 
 103                         'location_default' => $locationDefault, 
 104                         //Set location favorites 
 105                         'location_favorites' => $locationFavorites, 
 107                         'user' => $this->isGranted('ROLE_ADMIN'), 
 109                         'user_choices' => $doctrine->getRepository(User
::class)->findAllWithTranslatedGroupAndCivility($this->translator
), 
 110                         //Set default user to current 
 111                         'user_default' => $this->getUser()->getId(), 
 112                         //Set default slot to evening 
 113                         //XXX: default to Evening (3) 
 114                         'slot_default' => $doctrine->getRepository(Slot
::class)->findOneByTitle('Evening') 
 117                 //Refill the fields in case of invalid form 
 118                 $form->handleRequest($request); 
 120                 //Handle invalid form 
 121                 if (!$form->isSubmitted() || !$form->isValid()) { 
 123                         $title = $this->translator
->trans('Application add'); 
 126                         return $this->render('@RapsysAir/application/add.html.twig', ['title' => $title, 'form' => $form->createView()]+
$this->context
); 
 130                 $data = $form->getData(); 
 132                 //Protect session fetching 
 135                         $session = $doctrine->getRepository(Session
::class)->findOneByLocationSlotDate($data['location'], $data['slot'], $data['date']); 
 136                 //Catch no session case 
 137                 } catch (NoResultException 
$e) { 
 139                         $session = new Session(); 
 140                         $session->setLocation($data['location']); 
 141                         $session->setDate($data['date']); 
 142                         $session->setSlot($data['slot']); 
 145                         $location = $data['location']->getTitle(); 
 148                         $slot = $data['slot']->getTitle(); 
 151                         //XXX: premium is stored only for Afternoon and Evening 
 152                         $premium = $session->isPremium(); 
 154                         //Set default length at 6h 
 155                         //XXX: date part will be truncated on save 
 156                         $session->setLength(new \
DateTime('06:00:00')); 
 159                         if ($this->isGranted('ROLE_ADMIN')) { 
 161                                 if ($slot == 'Morning') { 
 163                                         $session->setBegin(new \
DateTime('09:00:00')); 
 166                                         $session->setLength(new \
DateTime('05:00:00')); 
 168                                 } elseif ($slot == 'Afternoon') { 
 170                                         $session->setBegin(new \
DateTime('14:00:00')); 
 173                                         $session->setLength(new \
DateTime('05:00:00')); 
 175                                 } elseif ($slot == 'Evening') { 
 177                                         $session->setBegin(new \
DateTime('19:00:00')); 
 179                                         //Check if next day is premium 
 182                                                 $session->setLength(new \
DateTime('07:00:00')); 
 187                                         $session->setBegin(new \
DateTime('01:00:00')); 
 190                                         $session->setLength(new \
DateTime('04:00:00')); 
 192                                         //Check if next day is premium 
 195                                                 $session->setBegin(new \
DateTime('02:00:00')); 
 198                                                 $session->setLength(new \
DateTime('03:00:00')); 
 201                         //Tino-Rossi garden => 14h -> 19h | 19h -> 01/02h 
 202                         } elseif (in_array($location, ['Tino-Rossi garden']) && in_array($slot, ['Afternoon', 'Evening', 'After'])) { 
 204                                 if ($slot == 'Afternoon') { 
 206                                         $session->setBegin(new \
DateTime('14:00:00')); 
 209                                         $session->setLength(new \
DateTime('05:00:00')); 
 211                                 } elseif ($slot == 'Evening') { 
 213                                         $session->setBegin(new \
DateTime('19:00:00')); 
 215                                         //Check if next day is premium 
 218                                                 $session->setLength(new \
DateTime('07:00:00')); 
 223                                         $session->setBegin(new \
DateTime('01:00:00')); 
 226                                         $session->setLength(new \
DateTime('04:00:00')); 
 228                                         //Check if next day is premium 
 231                                                 $session->setBegin(new \
DateTime('02:00:00')); 
 234                                                 $session->setLength(new \
DateTime('03:00:00')); 
 237                         //Garnier opera => 21h -> 01/02h 
 238                         } elseif ($location == 'Garnier opera' && in_array($slot, ['Evening', 'After'])) { 
 240                                 if ($slot == 'Evening') { 
 242                                         $session->setBegin(new \
DateTime('21:00:00')); 
 245                                         $session->setLength(new \
DateTime('05:00:00')); 
 247                                         //Check if next day is premium 
 250                                                 $session->setLength(new \
DateTime('06:00:00')); 
 255                                         $session->setBegin(new \
DateTime('01:00:00')); 
 258                                         $session->setLength(new \
DateTime('04:00:00')); 
 260                                         //Check if next day is premium 
 263                                                 $session->setBegin(new \
DateTime('02:00:00')); 
 266                                                 $session->setLength(new \
DateTime('03:00:00')); 
 269                         //Trocadero esplanade|Tokyo palace|Swan island|Saint-Honore market|Orsay museum => 19h -> 01/02h 
 270                         } elseif (in_array($location, ['Trocadero esplanade', 'Tokyo palace', 'Swan island', 'Saint-Honore market', 'Orsay museum']) && in_array($slot, ['Evening', 'After'])) { 
 272                                 if ($slot == 'Evening') { 
 274                                         $session->setBegin(new \
DateTime('19:00:00')); 
 276                                         //Check if next day is premium 
 279                                                 $session->setLength(new \
DateTime('07:00:00')); 
 284                                         $session->setBegin(new \
DateTime('01:00:00')); 
 287                                         $session->setLength(new \
DateTime('04:00:00')); 
 289                                         //Check if next day is premium 
 292                                                 $session->setBegin(new \
DateTime('02:00:00')); 
 295                                                 $session->setLength(new \
DateTime('03:00:00')); 
 298                         //Drawings' garden (Villette) => 14h -> 19h 
 299                         } elseif ($location == 'Drawings\' garden' && $slot == 'Afternoon') { 
 301                                 $session->setBegin(new \
DateTime('14:00:00')); 
 304                                 $session->setLength(new \
DateTime('05:00:00')); 
 305                         //Colette place => 14h -> 21h 
 306                         //TODO: add check here that it's a millegaux account ? 
 307                         } elseif ($location == 'Colette place' && $slot == 'Afternoon') { 
 309                                 $session->setBegin(new \
DateTime('14:00:00')); 
 312                                 $session->setLength(new \
DateTime('07:00:00')); 
 313                         //Orleans gallery => 14h -> 18h 
 314                         } elseif ($location == 'Orleans gallery' && $slot == 'Afternoon') { 
 316                                 $session->setBegin(new \
DateTime('14:00:00')); 
 319                                 $session->setLength(new \
DateTime('04:00:00')); 
 320                         //Monde garden => 14h -> 19h 
 321                         //TODO: add check here that it's a raphael account ? 
 322                         } elseif ($location == 'Monde garden' && $slot == 'Afternoon') { 
 324                                 $session->setBegin(new \
DateTime('14:00:00')); 
 327                                 $session->setLength(new \
DateTime('05:00:00')); 
 328                         //Combination not supported 
 329                         //TODO: add Madeleine place|Bastille place|Vendome place ? 
 331                                 //Add error in flash message 
 332                                 $this->addFlash('error', $this->translator
->trans('Session on %date% %location% %slot% not yet supported', ['%location%' => $this->translator
->trans('at '.$data['location']), '%slot%' => $this->translator
->trans('the '.strtolower(strval($data['slot']))), '%date%' => $data['date']->format('Y-m-d')])); 
 335                                 $title = $this->translator
->trans('Application add'); 
 338                                 return $this->render('@RapsysAir/application/add.html.twig', ['title' => $title, 'form' => $form->createView()]+
$this->context
); 
 342                         if (!$this->isGranted('ROLE_ADMIN') && $session->getStart() < new \
DateTime('00:00:00')) { 
 343                                 //Add error in flash message 
 344                                 $this->addFlash('error', $this->translator
->trans('Session in the past on %date% %location% %slot% not yet supported', ['%location%' => $this->translator
->trans('at '.$data['location']), '%slot%' => $this->translator
->trans('the '.strtolower(strval($data['slot']))), '%date%' => $data['date']->format('Y-m-d')])); 
 347                                 $title = $this->translator
->trans('Application add'); 
 350                                 return $this->render('@RapsysAir/application/add.html.twig', ['title' => $title, 'form' => $form->createView()]+
$this->context
); 
 354                         $manager->persist($session); 
 356                         //Flush to get the ids 
 359                         $this->addFlash('notice', $this->translator
->trans('Session on %date% %location% %slot% created', ['%location%' => $this->translator
->trans('at '.$data['location']), '%slot%' => $this->translator
->trans('the '.strtolower(strval($data['slot']))), '%date%' => $data['date']->format('Y-m-d')])); 
 363                 $user = $this->getUser(); 
 365                 //Replace with requested user for admin 
 366                 if ($this->isGranted('ROLE_ADMIN') && !empty($data['user'])) { 
 367                         $user = $this->getDoctrine()->getRepository(User
::class)->findOneById($data['user']); 
 370                 //Protect application fetching 
 372                         //Retrieve application 
 373                         $application = $doctrine->getRepository(Application
::class)->findOneBySessionUser($session, $user); 
 375                         //Add warning in flash message 
 376                         $this->addFlash('warning', $this->translator
->trans('Application on %date% %location% %slot% already exists', ['%location%' => $this->translator
->trans('at '.$data['location']), '%slot%' => $this->translator
->trans('the '.strtolower(strval($data['slot']))), '%date%' => $data['date']->format('Y-m-d')])); 
 377                 //Catch no application and session without identifier (not persisted&flushed) cases 
 378                 } catch (NoResultException
|ORMInvalidArgumentException 
$e) { 
 379                         //Create the application 
 380                         $application = new Application(); 
 381                         $application->setDance($data['dance']); 
 382                         $application->setSession($session); 
 383                         $application->setUser($user); 
 385                         //Refresh session updated field 
 386                         $session->setUpdated(new \
DateTime('now')); 
 389                         $manager->persist($session); 
 391                         //Queue application save 
 392                         $manager->persist($application); 
 394                         //Flush to get the ids 
 397                         //Add notice in flash message 
 398                         $this->addFlash('notice', $this->translator
->trans('Application on %date% %location% %slot% created', ['%location%' => $this->translator
->trans('at '.$data['location']), '%slot%' => $this->translator
->trans('the '.strtolower(strval($data['slot']))), '%date%' => $data['date']->format('Y-m-d')])); 
 401                 //Extract and process referer 
 402                 if ($referer = $request->headers
->get('referer')) { 
 403                         //Create referer request instance 
 404                         $req = Request
::create($referer); 
 407                         $path = $req->getPathInfo(); 
 409                         //Get referer query string 
 410                         $query = $req->getQueryString(); 
 413                         $path = str_replace($request->getScriptName(), '', $path); 
 415                         //Try with referer path 
 418                                 $oldContext = $this->router
->getContext(); 
 420                                 //Force clean context 
 421                                 //XXX: prevent MethodNotAllowedException because current context method is POST in onevendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php+42 
 422                                 $this->router
->setContext(new RequestContext()); 
 424                                 //Retrieve route matching path 
 425                                 $route = $this->router
->match($path); 
 428                                 $this->router
->setContext($oldContext); 
 434                                 $name = $route['_route']; 
 436                                 //Remove route and controller from route defaults 
 437                                 unset($route['_route'], $route['_controller']); 
 439                                 //Check if session view route 
 440                                 if ($name == 'rapsys_air_session_view' && !empty($route['id'])) { 
 442                                         $route['id'] = $session->getId(); 
 446                                         $route['session'] = $session->getId(); 
 450                                 return $this->redirectToRoute($name, $route); 
 452                         } catch (MethodNotAllowedException
|ResourceNotFoundException 
$e) { 
 453                                 //Unset referer to fallback to default route 
 458                 //Redirect to cleanup the form 
 459                 return $this->redirectToRoute('rapsys_air', ['session' => $session->getId()]);