<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Core\Security;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
/**
* Controlador para el manejo la autenticación de usuario de HiMed Admin
*/
class SeguridadController extends AbstractController
{
/**
* Procesa acciones de autencitación de usuario de HiMed Admin
*
* @Route("/", name="app_login")
*/
public function login(AuthenticationUtils $authenticationUtils, Security $security): Response
{
// Si el usuario ya se ha ingresado, no mostrará la página de login nuevamenta
if($security->isGranted('ROLE_USER')) {
return $this->redirectToRoute('app_pagina_principal');
}
// Obtiene errores del login en caso de haber alguno
$error = $authenticationUtils->getLastAuthenticationError();
// Último nombre de usuario ingresado por el usuario
$lastUsername = $authenticationUtils->getLastUsername();
// Renderiza el template y define variables
return $this->render('seguridad/login.html.twig', [
'last_username' => $lastUsername,
'error' => $error
]);
}
/**
* Procesa el cierre de sesión de un usuario de HiMed Admin
*
* @Route("/logout", name="app_logout")
*/
public function logout()
{
throw new \LogicException('This method can be blank - it will be intercepted by the logout key on your firewall.');
}
}