I believe that we redirect you to "the last app you used" if there are no one on login parameters. Maybe one day we can implement a "preferred app" or keep a track to every apps you used and list them to you?
Yes it is related to startinblox/solid-spec#12 because both issues ask how we know where the user needs to be redirected from the backend. It's two different issues, but probably they should share a common mechanism.
@calummackervoy The priority is not to have the Log in button redirecting @Marjolaine to the backend interface. If implementing the preferred app feature is fast, then do it.
I'm not so sure we're done with specifying it though.
Another candid question: Shouldn't we display a button saying : Access https://xyz.abc.com ?
My fear is that if we automatically redirect the user to a URL that isn't the one she expects, it might become confusing very quickly. We might want to ignore that fear for now though.
By Alexandre on 2020-01-21T13:14:58 (imported from GitLab project)
I've almost got this working, and then I stop and think "is this what we want to be doing?"
so the reason that it redirects to this page is because when you reset password there is no next parameter set in the URL.. so it defaults to settings.LOGIN_REDIRECT_URL (by default 'accounts/profile/')
okay, this is fine, so store the default_redirect_uri on the user, and set this to the last known value for next (the last app they accessed). If they don't have one, take them to the admin panel or present them a screen saying 'sorry, we don't know where you want to go'
but what if, in my app, I've set settings.LOGIN_REDIRECT_URL on purpose? Or if this is supposed to be 'accounts/profile/'.. I don't think DjangoLDP-Account should make assumptions about the server which is using the module? This is a concern for the specific instance surely?
possibly, it could offer this behaviour if the LOGIN_REDIRECT_URL is explicitly set to None on the instance running it? @alexandre @sylvain@jbpasquier@balessan@Marjolaine
Well, your last login location can be the one that's set on settings.LOGIN_REDIRECT_URL. If you reset your password, you may come from somewhere, maybe we can trace the user from this point.
my point is that another application that isn't Startin' Blox might want to redirect to "not-login-url.com" and will be very confused when our library breaks Django's LOGIN_REDIRECT_URL functionality?
But if they set it to None then they are communicating that they want it to find the user's preference?
Maybe more a new parameter to (de)activate such mechanism? I think that we must leave as much native as possible, some people may be experienced with the use of settings.LOGIN_REDIRECT_URL as is.
default_redirect_uri on the User model, which is updated on login, and can be set to an initial value in the admin panel
On login: if they have a next set then follow this, if not redirect them to the default_redirect_uri.. if they don't have this set, either, redirect admins to the admin panel, and other users to "sorry, we don't know where to send you!"