我需要在登录检查后禁用重定向,因为我只需要获取登录成功与否。提交/ login_check后url给我正确的数据,但保持重定向到/ login(失败时)
之后/ login是空白的。
我正在尝试使用extjs 4设置登录表单,所以我需要通过ajax post请求来验证。
login_check应该进行身份验证,创建用户会话并返回它是成功还是失败,但不能在任何地方转发。
我的login.html.twig看起来像:
{% if is_granted("IS_AUTHENTICATED_REMEMBERED") %}
{ success:true }
{% else %}
{ success: false }
{% endif %}
并在security.yml中:
firewalls:
main:
form_login:
provider: fos_userbundle
failure_path: null
failure_forward: false
答案 0 :(得分:63)
创建身份验证处理程序:
namespace YourVendor\UserBundle\Handler;
// "use" statements here
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
}
}
}
将处理程序注册为服务:
services:
authentication_handler:
class: YourVendor\UserBundle\Handler\AuthenticationHandler
在防火墙中注册服务:
firewalls:
main:
form_login:
success_handler: authentication_handler
failure_handler: authentication_handler
这是一个粗略的例子,为您提供一般性的想法 - 您需要自己弄清楚细节。如果您遇到困难并需要进一步澄清,请将您的问题放在评论中,我将尝试详细说明该示例。
答案 1 :(得分:1)
正常的symfony流程是在您未登录时将您重定向到登录页面,这适用于人类。但您似乎在寻找程序化解决方案。
您是否尝试在表单中设置_target_path,以声明“下一页”应该是什么? Symfony总是会把你转发到某个地方,但你可以把它设置在任何你想要的地方。
我发现这两个页面对于描述登录表单的内部工作方式非常有用: