UsernamePasswordFormAuthenticationListener
class UsernamePasswordFormAuthenticationListener extends AbstractAuthenticationListener
UsernamePasswordFormAuthenticationListener is the default implementation of an authentication via a simple form composed of a username and a password.
Properties
| protected | $options | from AbstractAuthenticationListener | |
| protected | $logger | from AbstractAuthenticationListener | |
| protected | $authenticationManager | from AbstractAuthenticationListener | |
| protected | $providerKey | from AbstractAuthenticationListener | |
| protected | $httpUtils | from AbstractAuthenticationListener |
Methods
| __construct(TokenStorageInterface $tokenStorage, AuthenticationManagerInterface $authenticationManager, SessionAuthenticationStrategyInterface $sessionStrategy, HttpUtils $httpUtils, string $providerKey, AuthenticationSuccessHandlerInterface $successHandler, AuthenticationFailureHandlerInterface $failureHandler, array $options = array(), LoggerInterface $logger = null, EventDispatcherInterface $dispatcher = null, CsrfTokenManagerInterface $csrfTokenManager = null) | ||
| setRememberMeServices(RememberMeServicesInterface $rememberMeServices) Sets the RememberMeServices implementation to use. | from AbstractAuthenticationListener | |
| handle(GetResponseEvent $event) Handles form based authentication. | from AbstractAuthenticationListener | |
| bool | requiresAuthentication(Request $request) Whether this request requires authentication. | |
| TokenInterface|Response|null | attemptAuthentication(Request $request) Performs authentication. |
Details
__construct(TokenStorageInterface $tokenStorage, AuthenticationManagerInterface $authenticationManager, SessionAuthenticationStrategyInterface $sessionStrategy, HttpUtils $httpUtils, string $providerKey, AuthenticationSuccessHandlerInterface $successHandler, AuthenticationFailureHandlerInterface $failureHandler, array $options = array(), LoggerInterface $logger = null, EventDispatcherInterface $dispatcher = null, CsrfTokenManagerInterface $csrfTokenManager = null)
Parameters
| TokenStorageInterface | $tokenStorage | |
| AuthenticationManagerInterface | $authenticationManager | |
| SessionAuthenticationStrategyInterface | $sessionStrategy | |
| HttpUtils | $httpUtils | |
| string | $providerKey | |
| AuthenticationSuccessHandlerInterface | $successHandler | |
| AuthenticationFailureHandlerInterface | $failureHandler | |
| array | $options | |
| LoggerInterface | $logger | |
| EventDispatcherInterface | $dispatcher | |
| CsrfTokenManagerInterface | $csrfTokenManager |
Exceptions
| InvalidArgumentException |
setRememberMeServices(RememberMeServicesInterface $rememberMeServices)
Sets the RememberMeServices implementation to use.
Parameters
| RememberMeServicesInterface | $rememberMeServices |
final handle(GetResponseEvent $event)
Handles form based authentication.
Parameters
| GetResponseEvent | $event |
Exceptions
| RuntimeException | |
| SessionUnavailableException |
protected bool requiresAuthentication(Request $request)
Whether this request requires authentication.
The default implementation only processes requests to a specific path, but a subclass could change this to only authenticate requests where a certain parameters is present.
Parameters
| Request | $request |
Return Value
| bool |
protected TokenInterface|Response|null attemptAuthentication(Request $request)
Performs authentication.
Parameters
| Request | $request |
Return Value
| TokenInterface|Response|null | The authenticated token, null if full authentication is not possible, or a Response |
Exceptions
| AuthenticationException | if the authentication fails |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/Security/Http/Firewall/UsernamePasswordFormAuthenticationListener.html