PROCEED-Labs / proceed

Business Process Management System
MIT License
5 stars 8 forks source link

User Flow in PROCEED: smaller improvements #307

Open iaktern opened 2 months ago

iaktern commented 2 months ago

User Settings:

Image

Image

Login Screen:

Image

FelipeTrost commented 1 month ago

@iaktern about the questions of multiple accounts:

There is a difference between user and account. A user represents an actual person, whereas account represents an oauth sign in that a user can use. That being said, next-auth stores the email in user and not in an account, and creates a "fake" account when calling next-auth's callbacks.

When next-auth receives a sign-in, it proceeds differently according to whether a user was already signed in or not. If a user was signed in (valid next-auth cookies were set in the request), and the account he used to sign in isn't registered for another user, the account gets linked to the user, this is the only way this can happen (you can set flags to link accounts to users based on the email, but this is not recommended). Note that if the account already belonged to that user, then the user is just authenticated.

If there was no user signed in, then next-auth searches a user based on the email specified in the account that the request is using to sign in. If there is a user with that mail, next-auth doesn't link the account to the user as stated before and throws an error. If it finds no user, then a new user and an account associated to it, are created.

Additionally, we add our own logic in the signIn hook that next-auth provides, where if a user, that is already signed in and is a guest, is signing in with a valid account, we update the user's record, to show that he is no longer a guest.

How next-auth handles this is a bit confusing, and I haven't seen it well documented in the docs, if you want, I could make a diagram with this flow.