Skip to content
Advertisement

How to immediately disable access to a user that is soft-deleted or no longer enabled?

In my application, users with the role ROLE_ADMIN are able to manually disable other user accounts, by setting enabled on the user account to false.

Using a user checker, the user will not be able to log in the next time they try:

JavaScript

My issue with this, it only works when a user tries to log in. If a user is currently logged in (could also be using the remember-me-functionality), nothing happens until they logout.

Is there any way to immediately disable the user from making requests to routes it no longer should have access to, even when this user is currently logged in?

What I could do is check if the account is enabled for every route that requires this user access, like so:

JavaScript

But this seems like a terrible solution because I would need this in many places.

Advertisement

Answer

If you implement the SymfonyComponentSecurityCoreUserEquatableInterface in your User class, the User will be logged out when isEqualTo() returns false.

JavaScript

Relevant documentation

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement