From c0d40c8f051dab40a59578956da7f46c345f2b66 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Mon, 28 Dec 2020 08:07:40 +0100 Subject: [PATCH] Add index function Trigger not found exception when organizer is not found Rename title schema Add form to add or edit snippet on user view --- Controller/OrganizerController.php | 232 +++++++++++++++++++++++++++++ 1 file changed, 232 insertions(+) create mode 100644 Controller/OrganizerController.php diff --git a/Controller/OrganizerController.php b/Controller/OrganizerController.php new file mode 100644 index 0000000..7bb7e98 --- /dev/null +++ b/Controller/OrganizerController.php @@ -0,0 +1,232 @@ +getDoctrine(); + + //Set section + $section = $this->translator->trans('Argentine Tango organizers'); + + //Set description + $this->context['description'] = $this->translator->trans('Outdoor Argentine Tango organizer list'); + + //Set keywords + $this->context['keywords'] = [ + $this->translator->trans('Argentine Tango'), + $this->translator->trans('outdoor'), + $this->translator->trans('organizer'), + $this->translator->trans('Libre Air') + ]; + + //Set title + $title = $this->translator->trans($this->config['site']['title']).' - '.$section; + + //Init context + $context = []; + + //Create application form for role_guest + if ($this->isGranted('ROLE_GUEST')) { + //Create ApplicationType form + $application = $this->createForm('Rapsys\AirBundle\Form\ApplicationType', null, [ + //Set the action + 'action' => $this->generateUrl('rapsys_air_application_add'), + //Set the form attribute + 'attr' => [ 'class' => 'col' ], + //Set admin + 'admin' => $this->isGranted('ROLE_ADMIN'), + //Set default user to current + 'user' => $this->getUser()->getId(), + //Set default slot to evening + //XXX: default to Evening (3) + 'slot' => $doctrine->getRepository(Slot::class)->findOneById(3) + ]); + + //Add form to context + $context['application'] = $application->createView(); + //Create login form for anonymous + } elseif (!$this->isGranted('IS_AUTHENTICATED_REMEMBERED')) { + //Create ApplicationType form + $login = $this->createForm('Rapsys\UserBundle\Form\LoginType', null, [ + //Set the action + 'action' => $this->generateUrl('rapsys_user_login'), + //Set the form attribute + 'attr' => [ 'class' => 'col' ] + ]); + + //Add form to context + $context['login'] = $login->createView(); + } + + //Fetch organizers + $organizers = $doctrine->getRepository(User::class)->findOrganizerGroupedByGroup($this->translator); + + //Compute period + $period = new \DatePeriod( + //Start from first monday of week + new \DateTime('Monday this week'), + //Iterate on each day + new \DateInterval('P1D'), + //End with next sunday and 4 weeks + new \DateTime('Monday this week + 5 week') + ); + + //Fetch locations + //XXX: we want to display all active locations anyway + $locations = $doctrine->getRepository(Location::class)->findTranslatedSortedByPeriod($this->translator, $period); + + //Render the view + return $this->render('@RapsysAir/organizer/index.html.twig', ['title' => $title, 'section' => $section, 'organizers' => $organizers, 'locations' => $locations]+$context+$this->context); + } + + /** + * List all sessions for the organizer + * + * @desc Display all sessions for the user with an application or login form + * + * @param Request $request The request instance + * @param int $id The user id + * + * @return Response The rendered view + */ + public function view(Request $request, $id) { + //Fetch doctrine + $doctrine = $this->getDoctrine(); + + //Fetch user + if (empty($user = $doctrine->getRepository(User::class)->findOneById($id))) { + throw $this->createNotFoundException($this->translator->trans('Unable to find organizer: %id%', ['%id%' => $id])); + } + + //Set section + $section = $user->getPseudonym(); + + //Set title + $title = $this->translator->trans($this->config['site']['title']).' - '.$section; + + //Init context + $context = []; + + //Create application form for role_guest + if ($this->isGranted('ROLE_GUEST')) { + //Create ApplicationType form + $application = $this->createForm('Rapsys\AirBundle\Form\ApplicationType', null, [ + //Set the action + 'action' => $this->generateUrl('rapsys_air_application_add'), + //Set the form attribute + 'attr' => [ 'class' => 'col' ], + //Set admin + 'admin' => $this->isGranted('ROLE_ADMIN'), + //Set default user to current + 'user' => $this->getUser()->getId(), + //Set default slot to evening + //XXX: default to Evening (3) + 'slot' => $doctrine->getRepository(Slot::class)->findOneById(3) + ]); + + //Add form to context + $context['application'] = $application->createView(); + //Create login form for anonymous + } elseif (!$this->isGranted('IS_AUTHENTICATED_REMEMBERED')) { + //Create ApplicationType form + $login = $this->createForm('Rapsys\UserBundle\Form\LoginType', null, [ + //Set the action + 'action' => $this->generateUrl('rapsys_user_login'), + //Set the form attribute + 'attr' => [ 'class' => 'col' ] + ]); + + //Add form to context + $context['login'] = $login->createView(); + } + + //Compute period + $period = new \DatePeriod( + //Start from first monday of week + new \DateTime('Monday this week'), + //Iterate on each day + new \DateInterval('P1D'), + //End with next sunday and 4 weeks + new \DateTime('Monday this week + 5 week') + ); + + //Fetch calendar + //TODO: highlight with current session route parameter + $calendar = $doctrine->getRepository(Session::class)->fetchUserCalendarByDatePeriod($this->translator, $period, $id, $request->get('session')); + + //Fetch locations + //XXX: we want to display all active locations anyway + $locations = $doctrine->getRepository(Location::class)->findTranslatedSortedByPeriod($this->translator, $period, $id); + + //Create snippet forms for role_guest + if ($this->isGranted('ROLE_GUEST')) { + //Fetch all user snippet + $snippets = $doctrine->getRepository(Snippet::class)->findByLocaleUserId($request->getLocale(), $id); + + //Rekey by location id + $snippets = array_reduce($snippets, function($carry, $item){$carry[$item->getLocation()->getId()] = $item; return $carry;}, []); + + //Init snippets to context + $context['snippets'] = []; + + //Iterate on locations + foreach($locations as $locationId => $location) { + //Init snippet + $snippet = new Snippet(); + + //Set default locale + $snippet->setLocale($request->getLocale()); + + //Set default user + $snippet->setUser($user); + + //Set default location + $snippet->setLocation($doctrine->getRepository(Location::class)->findOneById($locationId)); + + //Get snippet + if (!empty($snippets[$locationId])) { + $snippet = $snippets[$locationId]; + } + + //Create SnippetType form + $form = $this->createForm('Rapsys\AirBundle\Form\SnippetType', $snippet, [ + //Set the action + //TODO: voir si on peut pas faire sauter ça ici + 'action' => !empty($snippet->getId())?$this->generateUrl('rapsys_air_snippet_edit', ['id' => $snippet->getId()]):$this->generateUrl('rapsys_air_snippet_add'), + #'action' => $this->generateUrl('rapsys_air_snippet_add'), + //Set the form attribute + 'attr' => [], + //Set csrf_token_id + //TODO: would maybe need a signature field + //'csrf_token_id' => $request->getLocale().'_'.$id.'_'.$locationId + ]); + + //Add form to context + $context['snippets'][$locationId] = $form->createView(); + } + } + + //Render the view + return $this->render('@RapsysAir/organizer/view.html.twig', ['id' => $id, 'title' => $title, 'section' => $section, 'calendar' => $calendar, 'locations' => $locations]+$context+$this->context); + } +} -- 2.41.0