Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

keycloak: handle change of email #584

Open
mdonadoni opened this issue Mar 20, 2023 · 0 comments
Open

keycloak: handle change of email #584

mdonadoni opened this issue Mar 20, 2023 · 0 comments

Comments

@mdonadoni
Copy link
Member

The email change of a user logged in with Keycloak is currently not correctly handled by REANA.

Let's consider an user with email [email protected]. When logging in for the first time, a new user is created both in Invenio's and in REANA's tables, with the correct email:

reana=# select email from __reana.user_;
        email         
----------------------
 [email protected]
 [email protected]
(2 rows)

reana=# select email from accounts_user;
        email         
----------------------
 [email protected]
 [email protected]
(2 rows)

If this user changes his email, for example to [email protected], then a new user is created in REANA's table, while Invenio keeps using the old user. Given that authentication in reana-ui is handled by Invenio, the user is still able to see his workflows and to use his access token.

reana=# select email from __reana.user_;
        email         
----------------------
 [email protected]
 [email protected]
 [email protected]
(3 rows)

reana=# select email from accounts_user;
        email         
----------------------
 [email protected]
 [email protected]
(2 rows)

However, REANA should not create a new user with the new email provided by Keycloak. We should also check whether it is necessary to update the email in REANA's user table.

@mdonadoni mdonadoni added this to Backlog in 0.9.1 Mar 20, 2023
@giuseppe-steduto giuseppe-steduto removed this from Backlog in 0.9.1 Oct 16, 2023
@giuseppe-steduto giuseppe-steduto added this to Backlog in 0.9.2 Oct 16, 2023
@mdonadoni mdonadoni removed this from Backlog in 0.9.2 Jan 11, 2024
@mdonadoni mdonadoni added this to Backlog in 0.9.3 Jan 11, 2024
@mdonadoni mdonadoni moved this from Backlog to Ready for work in 0.9.3 Mar 14, 2024
@mdonadoni mdonadoni moved this from Ready for work to Backlog in 0.9.3 Mar 14, 2024
@mdonadoni mdonadoni added this to Backlog in 0.95.0 Mar 14, 2024
@mdonadoni mdonadoni removed this from Backlog in 0.9.3 Mar 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
0.95.0
Backlog
Development

No branches or pull requests

1 participant