I have few questions about authentication with ajax (My questions are in bold)
I have full frontend in JS, and I need to set up an authentication system for my app.
− security.yml provide firewall. All is secured excepted /, /login and /login_check
firewalls:
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
login:
pattern: ^/login$
security: false
secured_area:
pattern: ^/.+
form_login:
login_path: /login
check_path: /login_check
success_handler: authentication_handler
failure_handler: authentication_handler
logout:
path: /logout
target: /
− the / route does nothing, just call JS file.
/**
* @Route("/", name="home")
* @Template()
*/
public function homepageAction()
{
return array();
}
the JS launch the entire app if an user is connected, or the login form (always in JS). I think I have to call the server with ajax if an user is connected but how, which action ??
− Here the login action :
class SecuredController extends Controller
{
/**
* @Route("/login", name="login")
*
*/
public function loginAction()
{
if ($this->get('request')->attributes->has(SecurityContext::AUTHENTICATION_ERROR)) {
$error = $this->get('request')->attributes->get(SecurityContext::AUTHENTICATION_ERROR);
} else {
$error = $this->get('request')->getSession()->get(SecurityContext::AUTHENTICATION_ERROR);
}
$json = json_encode(array(
'username' => $this->get('request')->getSession()->get(SecurityContext::LAST_USERNAME),
'error' => $error,
));
$response = new Response($json);
$response->headers->set('Content-Type', 'application/json');
return $response;
}
/**
* @Route("/login_check", name="security_check")
*/
public function securityCheckAction()
{
// The security layer will intercept this request
}
/**
* @Route("/logout", name="logout")
*/
public function logoutAction()
{
// The security layer will intercept this request
}
}
− I set up handler for AuthenticationSuccess or Failed :
class AuthenticationHandler implements AuthenticationSuccessHandlerInterface, AuthenticationFailureHandlerInterface
{
public function onAuthenticationSuccess(Request $request, TokenInterface $token)
{
if ($request->isXmlHttpRequest()) {
$result = array('success' => true);
return new Response(json_encode($result));
}
else {
// Handle non XmlHttp request here
}
}
public function onAuthenticationFailure(Request $request, AuthenticationException $exception)
{
if ($request->isXmlHttpRequest()) {
$result = array('success' => false);
return new Response(json_encode($result));
}
else {
// Handle non XmlHttp request here
}
}
}
− I need to handle access denied actions, but how ??
thank you !