登録後のユーザー認証の自動化
多くのアプリケーションでは、登録が成功した後、ログイン フォームをバイパスして自動ユーザー ログインを必要とします。このガイドでは、Symfony のセキュリティ コンポーネントを使用してこれを実現する方法を説明します。
セキュリティ設定のカスタマイズ
自動ログインを有効にするには、security.yml 設定を調整してファイアウォールを定義します。あなたの登録プロセス。たとえば、以下に示すように登録ファイアウォールを作成します。
<code class="yaml">security: # ... (Your existing configuration) firewalls: # ... (Your existing firewalls) registration: pattern: ^/register$ anonymous: ~</code>
登録リクエストのインターセプト
登録プロセスを管理するアクションを変更して、HTTP POST リクエストをインターセプトし、必要な認証を実行します。
<code class="php">use Symfony\Component\EventDispatcher\EventDispatcher; use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken; use Symfony\Component\Security\Http\Event\InteractiveLoginEvent; public function registerAction() { // ... (Register the user) if ($this->get("request")->getMethod() == "POST") { // Set the user's password // ... $em->persist($user); $em->flush(); // Create the authentication token $token = new UsernamePasswordToken($user, $user->getPassword(), "registration", $user->getRoles()); // Store the token in the security context $this->get("security.token_storage")->setToken($token); // Fire the login event $event = new InteractiveLoginEvent($request, $token); $this->get("event_dispatcher")->dispatch("security.interactive_login", $event); } }</code>
説明
次の手順に従うことで、シームレスに実行できます。登録に成功した後、手動認証を必要とせずにユーザーをログインします。
以上がSymfony への登録後にユーザー認証を自動化するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。