-
-
Save jerronimo/9c1e5e0681833b3c2653d95bfbc997bf to your computer and use it in GitHub Desktop.
Functionality to override symfony 403 Error Access denied. Sets flash message and redirect (back to previous page, or homepage)
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 Atd\UserBundle\Listener; | |
use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent, | |
Symfony\Component\Security\Core\Exception\AccessDeniedException, | |
Symfony\Component\HttpFoundation\Request, | |
Symfony\Component\HttpFoundation\RedirectResponse, | |
Symfony\Component\HttpFoundation\Session\Session, | |
Symfony\Component\Routing\Router; | |
class AccessDeniedListener | |
{ | |
protected $_session; | |
protected $_router; | |
protected $_request; | |
public function __construct(Session $session, Router $router, Request $request) | |
{ | |
$this->_session = $session; | |
$this->_router = $router; | |
$this->_request = $request; | |
} | |
public function onAccessDeniedException(GetResponseForExceptionEvent $event) | |
{ | |
if ($event->getException()->getMessage() == 'Access Denied') | |
{ | |
$this->_session->setFlash('error', 'Access Denied. You do not have permission to access this page.'); | |
if ($this->_request->headers->get('referer')) | |
{ | |
$route = $this->_request->headers->get('referer'); | |
} else { | |
$route = $this->_router->generate('_home'); | |
} | |
$event->setResponse(new RedirectResponse($route)); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment