1

パスワード コントローラーをリセットする FOSUserBundle をオーバーライドする場合、「authenticateUser」メソッドへの関数呼び出しがあります (104 行目)。

https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Controller/ResettingController.php#L104

....
$this->authenticateUser($user);
....

私の問題は、Symfony 認証ハンドラーを既にオーバーライドしており、ユーザーがログインするときに独自のロジックを持っていることです。

編集 ここに私の認証ハンドラがあります:

<?php

/* ... all includes ... */

class AuthenticationHandler implements AuthenticationSuccessHandlerInterface, LogoutSuccessHandlerInterface
{
    private $router;
    private $container;

    public function __construct(Router $router, ContainerInterface $container)
    {
        $this->router = $router;
        $this->container = $container;
    }

    public function onAuthenticationSuccess(Request $request, TokenInterface $token)
    {
        // retrieve user and session id
        $user = $token->getUser();

        /* ... here I do things in database when logging in, and dont want to write it again and again ... */

        // prepare redirection URL
        if($targetPath = $request->getSession()->get('_security.target_path')) {
            $url = $targetPath;
        }
        else {
            $url = $this->router->generate('my_route');
        }

        return new RedirectResponse($url);
    }

}

では、 ResettingController の認証ハンドラから「onAuthenticationSuccess」メソッドを呼び出すにはどうすればよいでしょうか? 同じコードを書き直すのを避けるために...

ご協力いただきありがとうございます !

オーレル

4

1 に答える 1

1

サービスとしてロードする onAuthenticationSuccess メソッドを呼び出す必要があります。config.yml で:

authentication_handler:
    class: Acme\Bundle\Service\AuthenticationHandler
    arguments:
        container: "@service_container"

次に、authenticateUser 関数で呼び出します。

protected function authenticateUser(UserInterface $user) {
      try {
        $this->container->get('fos_user.user_checker')->checkPostAuth($user);
      } catch (AccountStatusException $e) {
          // Don't authenticate locked, disabled or expired users
          return;
      }

      $providerKey = $this->container->getParameter('fos_user.firewall_name');
      $token = new UsernamePasswordToken($user, null, $providerKey, $user->getRoles());
      $this->container->get('security.context')->setToken($token);
      $request = $this->container->get('request');
      $this->container->get('authentication_handler')->onAuthenticationSuccess($request, $token);
}

これはトリックを行い、カスタム認証ハンドラーを通過します。詳細情報.

于 2012-05-28T11:06:20.570 に答える