namespace Rapsys\AirBundle\Controller;
use Symfony\Component\HttpFoundation\Request;
+use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\RequestContext;
use Symfony\Component\Routing\Exception\MethodNotAllowedException;
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
*
* @throws \RuntimeException When user has not at least guest role
*/
- public function edit(Request $request, $id) {
+ public function edit(Request $request, $id): Response {
//Prevent non-guest to access here
$this->denyAccessUnlessGranted('ROLE_GUEST', null, $this->translator->trans('Unable to access this page without role %role%!', ['%role%' => $this->translator->trans('Guest')]));
//Set now
$now = new \DateTime('now');
- //Create SessionEditType form
- $form = $this->createForm('Rapsys\AirBundle\Form\SessionEditType', null, [
+ //Create SessionType form
+ $form = $this->createForm('Rapsys\AirBundle\Form\SessionType', null, [
//Set the action
'action' => $this->generateUrl('rapsys_air_session_edit', [ 'id' => $id ]),
//Set the form attribute
*
* @return Response The rendered view
*/
- public function index(Request $request) {
+ public function index(Request $request): Response {
//Fetch doctrine
$doctrine = $this->getDoctrine();
//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 \DateInterval('P1D'),
//End with next sunday and 4 weeks
new \DateTime(
- $this->isGranted('IS_AUTHENTICATED_REMEMBERED')?'Monday this week + 4 week':'Monday this week + 2 week'
+ $this->isGranted('IS_AUTHENTICATED_REMEMBERED')?'Monday this week + 3 week':'Monday this week + 2 week'
)
);
$locations = $doctrine->getRepository(Location::class)->findTranslatedSortedByPeriod($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);
+ return $this->render('@RapsysAir/session/index.html.twig', ['title' => $title, 'section' => $section, 'calendar' => $calendar, 'locations' => $locations]+$this->context);
}
/**
*
* @return Response The rendered view
*/
- public function view(Request $request, $id) {
+ public function view(Request $request, $id): Response {
//Fetch doctrine
$doctrine = $this->getDoctrine();
//Set title
$title = $this->translator->trans($this->config['site']['title']).' - '.$section.' - '.$this->translator->trans(!empty($session['au_id'])?'Session %id% by %pseudonym%':'Session %id%', ['%id%' => $id, '%pseudonym%' => $session['au_pseudonym']]);
- //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, [
+ $applicationForm = $this->createForm('Rapsys\AirBundle\Form\ApplicationType', null, [
//Set the action
'action' => $this->generateUrl('rapsys_air_application_add'),
//Set the form attribute
]);
//Add form to context
- $context['application'] = $application->createView();
+ $this->context['forms']['application'] = $applicationForm->createView();
//Set now
$now = new \DateTime('now');
- //Create SessionEditType form
- $session_edit = $this->createForm('Rapsys\AirBundle\Form\SessionEditType', null, [
+ //Create SessionType form
+ $sessionForm = $this->createForm('Rapsys\AirBundle\Form\SessionType', null, [
//Set the action
'action' => $this->generateUrl('rapsys_air_session_edit', [ 'id' => $id ]),
//Set the form attribute
]);
//Add form to context
- $context['session_edit'] = $session_edit->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();
+ $this->context['forms']['session'] = $sessionForm->createView();
}
//Add session in context
'contact' => $session['p_contact'],
'donate' => $session['p_donate'],
'link' => $session['p_link'],
- 'social' => $session['p_social']
+ 'profile' => $session['p_profile']
],
'applications' => null
];
'title' => $session['au_pseudonym']
],
'id' => $session['a_id'],
+ 'canceled' => $session['a_canceled'],
'title' => $this->translator->trans('Application %id%', [ '%id%' => $session['a_id'] ]),
];
}
new \DateInterval('P1D'),
//End with next sunday and 4 weeks
new \DateTime(
- $this->isGranted('IS_AUTHENTICATED_REMEMBERED')?'Monday this week + 4 week':'Monday this week + 2 week'
+ $this->isGranted('IS_AUTHENTICATED_REMEMBERED')?'Monday this week + 3 week':'Monday this week + 2 week'
)
);