mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-04-25 04:05:57 +03:00
[PR #480] [MERGED] Improve public instance session management #888
Labels
No labels
Fixed (Pending PR Merge)
Stale
bug
enhancement
enhancement
good first issue
help wanted
keep-open
needs more info
pull-request
question
theme
unfortunate
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/whoogle-search#888
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/benbusby/whoogle-search/pull/480
Author: @benbusby
Created: 10/23/2021
Status: ✅ Merged
Merged: 11/18/2021
Merged by: @benbusby
Base:
main← Head:feature/public-instance-sessions📝 Commits (10+)
30d929fRewrite session behavior for public instances1aee389Catch nonexistant session file, fix session type checka8f178aMerge remote-tracking branch 'origin/main' into feature/public-instance-sessions548dc41Merge remote-tracking branch 'origin/main' into feature/public-instance-sessions50d592bMerge remote-tracking branch 'origin/main' into feature/public-instance-sessionseddc981Merge remote-tracking branch 'origin/main' into feature/public-instance-sessionsb0733fdMerge remote-tracking branch 'origin/main' into feature/public-instance-sessionsba7409fRefactor app to use enum constants for endpoints74e9317Override str for endpoint f-stringseb51481Merge home() and index() endpoints📊 Changes
13 files changed (+173 additions, -91 deletions)
View changed files
📝
app/__init__.py(+1 -1)📝
app/filter.py(+4 -2)📝
app/models/config.py(+1 -1)➕
app/models/endpoint.py(+23 -0)📝
app/routes.py(+105 -52)📝
app/utils/results.py(+2 -1)📝
app/utils/search.py(+5 -6)📝
app/utils/session.py(+1 -4)📝
requirements.txt(+1 -1)📝
test/test_autocomplete.py(+6 -2)📝
test/test_misc.py(+3 -2)📝
test/test_results.py(+8 -7)📝
test/test_routes.py(+13 -12)📄 Description
This introduces a new approach to handling user sessions, which should
allow for users to set more reliable config settings on public instances.
Previously, when a user with cookies disabled would update their config,
this would modify the app's default config file, which would in turn
cause new users to inherit these settings when visiting the app for the
first time and cause users to inherit these settings when their current
session cookie expired (which was after 30 days by default I believe).
There was also some half-baked logic for determining on the backend
whether or not a user had cookies disabled, which lead to some issues
with out of control session file creation by Flask.
Now, when a user visits the site, their initial request is forwarded to
a
session/<session id>endpoint, and during that subsequent requesttheir current session id is matched against the one found in the url. If
the ids match, the user has cookies enabled. If not, their original
request is modified with a 'cookies_disabled' query param that tells
Flask not to bother trying to set up a new session for that user, and
instead just use the app's fallback Fernet key for encryption and the
default config.
Since attempting to create a session for a user with cookies disabled
creates a new session file, there is now also a clean-up routine included
in the new session decorator, which will remove all sessions that don't
include a
validkey in the dict. NOTE!!! This means that current usersessions on public instances will be cleared once this update is merged
in. In the long run that's a good thing though, since this will allow session
mgmt to be a lot more reliable overall for users regardless of their cookie
preference.
Individual user sessions still use a unique Fernet key for encrypting queries,
but users with cookies disabled will use the default app key for encryption
and decryption.
Sessions are also now (semi)permanent and have a lifetime of 1 year.
Bugs during testing:
POST /configredirects to?cookies-disabledincorrectly🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.