我有两个包 userBundle 和 xxxBundle。我希望在对用户包中的用户进行身份验证后将其重定向到 xxxBundle。但是,根据角色(ROLE_ADMIN 和 ROLE_USER),我会将他重定向到两个不同的路由(route1、route2)。
我将此控制器添加到我的 userBundle
class SecurityController extends Controller
{
public function loginAction()
{
if ($this->get('security.context')->isGranted('ROLE_ADMIN')) {
return $this->redirect($this->generateUrl('route1'));
}
if ($this->get('security.context')->isGranted('ROLE_USER')) {
return $this->redirect($this->generateUrl('route2'));
}
$request = $this->getRequest();
$session = $request->getSession();
// On vérifie s'il y a des erreurs d'une précédent soumission du formulaire
if ($request->attributes->has(SecurityContext::AUTHENTICATION_ERROR)) {
$error = $request->attributes->get(SecurityContext::AUTHENTICATION_ERROR);
} else {
$error = $session->get(SecurityContext::AUTHENTICATION_ERROR);
$session->remove(SecurityContext::AUTHENTICATION_ERROR);
}
return $this->render('UserBundle:Security:login.html.twig', array(
// Valeur du précédent nom d'utilisateur rentré par l'internaute
'last_username' => $session->get(SecurityContext::LAST_USERNAME),
'error' => $error,
));
}
但是,这并没有给出适当的结果:对于正确的用户名和密码,用户被重定向到欢迎 symfony 页面。有人对此有解释吗?
我在 symfony 文档中发现,我可以使用隐藏字段控制登录表单的重定向,如下所示:
{# src/Acme/SecurityBundle/Resources/views/Security/login.html.twig #}
{% if error %}
<div>{{ error.message }}</div>
{% endif %}
<form action="{{ path('login_check') }}" method="post">
<label for="username">Username:</label>
<input type="text" id="username" name="_username" value="{{ last_username }}" />
<label for="password">Password:</label>
<input type="password" id="password" name="_password" />
<input type="hidden" name="_target_path" value="account" />
<input type="submit" name="login" />
</form>
问题:我如何参数化路线以负责用户和管理员。