thunderbird_accounts.authentication.utils
Functions
|
Create a login code for login requests |
|
|
|
Delete the cache session associated with a user session |
|
|
|
|
|
Handles the return response for logins. |
|
Check if the user is already logged in, and if we're using fxa then ensure the token exists and is valid. |
|
|
|
Log out a user by: 1. Telling FXA to delete their access token 2. Removing the access token from the user object (and saving) 3. Looping through each user session associated with the user - Deleting the Django Session via saved UserSession.session_key (Django Auth) - Deleting the User Session (Our Auth / DB) - Deleting the User Session object in our cache (Our Auth / Redis) 4. Fin!. |
|
Create and save a cache session associated with a user session |
|
|
|
- thunderbird_accounts.authentication.utils.create_login_code(client_environment: ClientEnvironment, state: str | None = None)[source]
Create a login code for login requests
- thunderbird_accounts.authentication.utils.is_already_authenticated(request)[source]
Check if the user is already logged in, and if we’re using fxa then ensure the token exists and is valid.
- thunderbird_accounts.authentication.utils.handle_auth_callback_response(client_env: ClientEnvironment, redirect_to: str | None = None, state: str | None = None, user_session_id: str | None = None) HttpResponseRedirect [source]
Handles the return response for logins. Used in callback, and also if the user is authenticated already to skip the fxa oauth path.
- thunderbird_accounts.authentication.utils.delete_cache_session(user_session: UserSession)[source]
Delete the cache session associated with a user session
- thunderbird_accounts.authentication.utils.save_cache_session(user_session: UserSession)[source]
Create and save a cache session associated with a user session
- thunderbird_accounts.authentication.utils.logout_user(user: User, client: Client | None = None) bool [source]
Log out a user by: 1. Telling FXA to delete their access token 2. Removing the access token from the user object (and saving) 3. Looping through each user session associated with the user
Deleting the Django Session via saved UserSession.session_key (Django Auth)
Deleting the User Session (Our Auth / DB)
Deleting the User Session object in our cache (Our Auth / Redis)
Fin!