X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/a2fc5190735d03dfe95fe7bdbc023b2df268e2fb..ba88e4188e34c6dc8938185bcc1c52c8556f14d7:/Controller/SessionController.php

diff --git a/Controller/SessionController.php b/Controller/SessionController.php
index c184f4d..8db10c6 100644
--- a/Controller/SessionController.php
+++ b/Controller/SessionController.php
@@ -8,6 +8,82 @@ use Rapsys\AirBundle\Entity\Session;
 use Rapsys\AirBundle\Entity\Location;
 
 class SessionController extends DefaultController {
+	/**
+	 * List all sessions
+	 *
+	 * @desc Display all sessions with an application or login form
+	 *
+	 * @param Request $request The request instance
+	 *
+	 * @return Response The rendered view
+	 */
+	public function index(Request $request = null) {
+		//Fetch doctrine
+		$doctrine = $this->getDoctrine();
+
+		//Set section
+		$section = $this->translator->trans('Sessions');
+
+		//Set title
+		$title = $section.' - '.$this->translator->trans($this->config['site']['title']);
+
+		//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)->fetchCalendarByDatePeriod($this->translator, $period, null, $request->get('session'));
+
+		//Fetch locations
+		$locations = $doctrine->getRepository(Location::class)->fetchTranslatedLocationByDatePeriod($this->translator, $period);
+
+		//Render the view
+		return $this->render('@RapsysAir/session/index.html.twig', ['title' => $title, 'section' => $section, 'calendar' => $calendar, 'locations' => $locations]+$context+$this->context);
+	}
+
 	/**
 	 * Display session
 	 *