User authentication¶
Authenticate user with multiple user providers¶
Symfony provides native support for multiple user providers. This makes it easier to integrate any kind of login handlers, including SSO and existing third party bundles (e.g. FR3DLdapBundle, HWIOauthBundle, FOSUserBundle, BeSimpleSsoAuthBundle, etc.).
However, to be able to use external user providers with Ibexa DXP, a valid Platform user needs to be injected into the Repository. This is mainly for the kernel to be able to manage content-related permissions (but not limited to this).
Depending on your context, you either want to create a Platform User, return an existing User, or even always use a generic User.
Whenever an external user is matched (i.e. one that does not come from Platform repository, like coming from LDAP), Ibexa DXP kernel initiates an MVCEvents::INTERACTIVE_LOGIN
event.
Every service listening to this event receives an Ibexa\Core\MVC\Symfony\Event\InteractiveLoginEvent
object which contains the original security token (that holds the matched user) and the request.
Then, it is up to the listener to retrieve a Platform User from the Repository and to assign it back to the event object. This user is injected into the repository and used for the rest of the request.
If no Ibexa DXP User is returned, the Anonymous User is used.
User exposed and security token¶
When an external user is matched, a different token is injected into the security context, the InteractiveLoginToken
.
This token holds a UserWrapped
instance which contains the originally matched User and the API user (the one from the Ibexa DXP Repository).
The API user is mainly used for permission checks against the repository and thus stays under the hood.
Customize the User class¶
It is possible to customize the user class used by extending Ibexa\Core\MVC\Symfony\Security\EventListener\SecurityListener
service, which defaults to Ibexa\Core\MVC\Symfony\Security\EventListener\SecurityListener
.
You can override getUser()
to return whatever User class you want, as long as it implements Ibexa\Core\MVC\Symfony\Security\UserInterface
.
The following is an example of using the in-memory user provider:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
Implement the listener¶
In the config/services.yaml
file:
1 2 3 4 5 |
|
Do not mix MVCEvents::INTERACTIVE_LOGIN
event (specific to Ibexa DXP) and SecurityEvents::INTERACTIVE_LOGIN
event (fired by Symfony security component).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|