Is there any sort of “pre login” event or similar?

后端 未结 1 1139
有刺的猬
有刺的猬 2020-11-30 09:31

I need to run some code prior to checking if a user\'s credentials are correct. Currently I\'m achieving this with a custom event listener that fires on the kernel.req

相关标签:
1条回答
  • 2020-11-30 09:47

    So, there's no 'official' pre-login event. But thankfully it's not hard to set one up since Symfony2 is so extendable. The trick is to use your own service to handle authentication.

    Symfony uses this class when using a login form:

    Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener

    If you override the security.authentication.listener.form.class parameter (originally defined in Symfony\Bundle\SecurityBundle\Resources\config\security_listeners.xml) you can use a custom listener that extends UsernamePasswordFormAuthenticationListener.

    All that's left to do is override the attemptAuthentication() method to dispatch the custom event.

    (Actually you also need to store the event dispatcher as a class property in __construct())

    This method should work with other authentication methods - all you'd need to do is modify the appropriate listener (ie BasicAuthenticationListener, X509AuthenticationListener, etc.)

    0 讨论(0)
提交回复
热议问题