Как вернуться к рефереру после неудачного входа? - PullRequest
23 голосов
/ 30 января 2012

Для успешного входа в систему есть параметр use_referer: true. Для сбоя входа в систему есть только failure_path, что мне не нужно.

Второе: как это сделать и передать сообщение об ошибке?

Третье: как вернуться к рефереру после выхода из системы?

1 Ответ

54 голосов
/ 30 января 2012

Я решил это.

Есть решение: Как отключить перенаправление после login_check в Symfony 2

и вот код, который решает мою проблему:

<?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);
    }
}

для обработки событий добавьте в security.yml, например:

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 

и в config.yml:

services:
    authentication_handler:
        class: Acme\MainBundle\Handler\AuthenticationHandler
...