0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Symfony4.4でログイン後にロールによって表示するページを変更する

Last updated at Posted at 2019-12-25

課題

Symfonyでログインフォームを作りました。
ユーザは一般と管理者の2つのロールがあり、ログイン後のページを変えたいです。

前提

ログイン処理は、公式ドキュメントのHow to Build a Login Formで実装

ログイン後のリダイレクト先の変更を調査

キーワード「symfony login redirect role」でググると、symfony2のドキュメントばかりでてきます。

image.png

検索結果から以下のようなドキュメントを拾い読みをしてみて、何やらログイン後のイベントで処理するような感じと当たりをつけます。Symfony2だからアテにしてはダメなのに、これが間違いの元でした。

いろいろ試行錯誤してみて、リダイレクトのレスポンスを書き換えるということは、フックでするような処理じゃないなっと結論。

How to Build a Login Formのステップ3に記載のonAuthenticationSuccessメソッドに手を入れることで終了。

こんな感じで解決ができました。

src/Security/LoginFormAuthenticator.php
  public function __construct(UrlGeneratorInterface $urlGenerator, Security $security)
    {
        $this->urlGenerator = $urlGenerator;
        $this->security = $security;
    }

    public function onAuthenticationSuccess(Request $request, TokenInterface $token, $providerKey)
    {
        if ($targetPath = $this->getTargetPath($request->getSession(), $providerKey)) {
            return new RedirectResponse($targetPath);
        }

        if ($this->security->isGranted('ROLE_ADMIN')) {
            return new RedirectResponse($this->urlGenerator->generate('admin_main'));
        }
        return new RedirectResponse($this->urlGenerator->generate('user_main'));    }

その他にはまったこと

セッションにログイン前にアクセスに来たURLを保存しているので、ログイン後に目的のページを表示するようになっています。

正しい手続きでログアウトをすれば、このセッション情報は使われないと考えていたのですが、一般ページが記録されていたようです。

何度、管理者でログインをしても、常に一般ページが表示されて、実装方法に問題があるのかと、さらに時間がかかりました。

クッキーを削除することで、セッション情報をリセットしたら、想定どおりの動作をしました。

まとめ

古いドキュメントやリソースは無視しないと、あらぬ方向に連れて行かれる場合がある。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?