urlGenerator = $urlGenerator; } public function authenticate(Request $request): PassportInterface { $username = $request->request->get('username', ''); $request->getSession()->set(Security::LAST_USERNAME, $username); return new Passport( new UserBadge($username), new PasswordCredentials($request->request->get('password', '')), [ new CsrfTokenBadge('authenticate', $request->get('_csrf_token')), ] ); } public function checkCredentials($credentials, UserInterface $user) { // Check the user's password or other credentials and return true or false // If there are no credentials to check, you can just return true return $this->passwordEncoder->isPasswordValid($user, $credentials['password']); } public function onAuthenticationSuccess(Request $request, TokenInterface $token, string $firewallName): ?Response { if ($targetPath = $this->getTargetPath($request->getSession(), $firewallName)) { return new RedirectResponse($targetPath); } // For example: return new RedirectResponse($this->urlGenerator->generate('videotheque_liste')); } protected function getLoginUrl(Request $request): string { return $this->urlGenerator->generate(self::LOGIN_ROUTE); } }