我的安全文件配置如下:
security:
...
pattern: ^/[members|admin]
form_login:
check_path: /members/auth
login_path: /public/login
failure_forward: false
failure_path: null
logout:
path: /public/logout
target: /
目前,如果我在未经过身份验证的情况下访问成员网址,则会将我重定向到/public/login
,但我不希望它重定向。我主要是在控制器上使用json进行响应,所以我只想在受限制的URL上显示警告,例如{"error": "Access denied"}
。如果我取出login_path: /public/login
代码,它会重定向到默认的网址/登录名。如何阻止它重定向?
答案 0 :(得分:9)
您需要创建一个监听器,然后触发您的响应。我的解决方案基于 - https://gist.github.com/xanf/1015146
听众代码 -
namespace Your\NameSpace\Bundle\Listener;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\Security\Core\Exception\AuthenticationCredentialsNotFoundException;
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 || $exception instanceof AuthenticationCredentialsNotFoundException) {
$responseData = array('status' => 401, 'msg' => 'User Not Authenticated');
$response = new JsonResponse();
$response->setData($responseData);
$response->setStatusCode($responseData['status']);
$event->setResponse($response);
}
}
}
}
您需要为侦听器创建服务 -
e_ent_int_baems.ajaxauthlistener:
class: Your\NameSpace\Bundle\Listener\AjaxAuthenticationListener
tags:
- { name: kernel.event_listener, event: kernel.exception, method: onCoreException, priority: 1000 }
答案 1 :(得分:6)
你可以像我一样做: 在security.yml
firewalls:
administrators:
pattern: ^/
form_login:
check_path: _security_check
login_path: _security_login
logout: true
security: true
anonymous: true
access_denied_url: access_denied
在routing.yml
中access_denied:
path: /error403
defaults :
_controller: FrameworkBundle:Template:template
template: 'DpUserBundle:Static:error403.html.twig'
只需添加到防火墙部分* access_denied_url * param
答案 2 :(得分:0)
有关完整的security.yml
配置参考,请参阅this page。另外,this is an even better reference解释了每个键。
我建议创建自己的侦听器类,以便在用户需要登录时处理返回的JSON。示例:https://gist.github.com/1015146