Rozwiązałem go.
Jest rozwiązanie: How to disable redirection after login_check in Symfony 2
i tutaj jest kod, który rozwiązuje mój problem:
<?php
namespace Acme\MainBundle\Handler;
use Symfony\Component\Security\Http\Logout\LogoutSuccessHandlerInterface;
use Symfony\Component\Security\Http\Authentication\AuthenticationFailureHandlerInterface;
use Symfony\Component\Security\Core\Exception\AuthenticationException;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RedirectResponse;
class AuthenticationHandler implements AuthenticationFailureHandlerInterface, LogoutSuccessHandlerInterface
{
public function onAuthenticationFailure(Request $request, AuthenticationException $exception)
{
$referer = $request->headers->get('referer');
$request->getSession()->setFlash('error', $exception->getMessage());
return new RedirectResponse($referer);
}
public function onLogoutSuccess(Request $request)
{
$referer = $request->headers->get('referer');
return new RedirectResponse($referer);
}
}
do obsługi zdarzeń dodać do security.yml na przykład:
form_login:
check_path: /access/login_check
login_path:/
use_referer: true
failure_handler: authentication_handler
logout:
path: /access/logout
target:/
success_handler: authentication_handler
i config .yml:
services:
authentication_handler:
class: Acme\MainBundle\Handler\AuthenticationHandler
dlaczego ścieżka awarii nie byłaby po prostu znakiem zachęty logowania? – JamesHalsall
ponieważ mogę się zalogować z każdej podstrony. Nie mam jednego formularza logowania pod określonym adresem URL, więc nie chcę przekierowywać użytkownika na stronę główną, gdy jest on zalogowany, na przykład na innej stronie profilu użytkownika. –