alist/server/middlewares
千石 4b288a08ef
fix: session invalid issue (#9301)
* feat(auth): Enhanced device login session management

- Upon login, obtain and verify `Client-Id` to ensure unique device sessions.
- If there are too many device sessions, clean up old ones according to the configured policy or return an error.
- If a device session is invalid, deregister the old token and return a 401 error.
- Added `EnsureActiveOnLogin` function to handle the creation and refresh of device sessions during login.

* feat(session): Modified session deletion logic to mark sessions as inactive.

- Changed session deletion logic to mark sessions as inactive using the `MarkInactive` method.
- Adjusted error handling to ensure an error is returned if marking fails.

* feat(session): Added device limits and eviction policies

- Added a device limit, controlling the maximum number of devices using the `MaxDevices` configuration option.
- If the number of devices exceeds the limit, the configured eviction policy is used.
- If the policy is `evict_oldest`, the oldest device is evicted.
- Otherwise, an error message indicating too many devices is returned.

* refactor(session): Filter for the user's oldest active session

- Renamed `GetOldestSession` to `GetOldestActiveSession` to more accurately reflect its functionality
- Updated the SQL query to add the `status = SessionActive` condition to retrieve only active sessions
- Replaced all callpoints and unified the new function name to ensure logical consistency
2025-08-29 21:20:29 +08:00
..
auth.go fix: session invalid issue (#9301) 2025-08-29 21:20:29 +08:00
check.go feat: static files for embed viewers (#2739) 2022-12-19 13:34:06 +08:00
down.go fix(archive): use another sign for extraction (#7982) 2025-03-01 18:34:33 +08:00
fsup.go feat: enhance permission control and label management (#9215) 2025-07-26 09:51:59 +08:00
https.go feat!: support listen to the unix (close #4671) 2023-07-04 17:56:02 +08:00
limit.go feat(traffic): support limit task worker count & file stream rate (#7948) 2025-02-16 12:22:11 +08:00
search.go feat: multiple search indexes (#2514) 2022-11-28 13:45:25 +08:00
session_refresh.go feat: implement session management (#9286) 2025-08-25 19:46:38 +08:00