-
-
Save carlcraig/5942104 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Application\ProdrepHelperBundle\Component\Event; | |
use Symfony\Component\HttpFoundation\Response; | |
use Symfony\Component\Security\Core\Exception\AuthenticationException; | |
use Symfony\Component\Security\Core\Exception\AccessDeniedException; | |
use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent; | |
/** | |
*/ | |
class AjaxAuthenticationListener | |
{ | |
/** | |
* Handles security related exceptions. | |
* | |
* @param GetResponseForExceptionEvent $event An GetResponseForExceptionEvent instance | |
*/ | |
public function onCoreException(GetResponseForExceptionEvent $event) | |
{ | |
$exception = $event->getException(); | |
$request = $event->getRequest(); | |
if ($request->isXmlHttpRequest()) { | |
if ($exception instanceof AuthenticationException || $exception instanceof AccessDeniedException) { | |
$event->setResponse(new Response('', 403)); | |
} | |
} | |
} | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
$(document).ajaxError(function (event, jqXHR) { | |
if (403 === jqXHR.status) { | |
window.location.reload(); | |
} | |
}); | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment