SSO token caching and retrieval in CachePool#4931
Merged
HenryHengZJ merged 4 commits intoFlowiseAI:mainfrom Jul 24, 2025
Merged
SSO token caching and retrieval in CachePool#4931HenryHengZJ merged 4 commits intoFlowiseAI:mainfrom
HenryHengZJ merged 4 commits intoFlowiseAI:mainfrom
Conversation
This implementation improves the authentication process by securely caching SSO tokens and managing user sessions.
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR implements SSO token caching and retrieval functionality to improve authentication security by replacing direct user data transmission via URL parameters with a secure token-based approach.
- Replaces direct user data URL parameters with secure temporary tokens during SSO redirect flow
- Adds server-side caching mechanism for SSO tokens with automatic expiration (120 seconds)
- Updates client-side authentication flow to retrieve user data via API call using the temporary token
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| packages/ui/src/views/auth/ssoSuccess.jsx | Updates SSO success handling to use token-based API call instead of parsing user data from URL |
| packages/ui/src/api/auth.js | Adds new API endpoint for SSO token validation and user data retrieval |
| packages/server/src/enterprise/routes/auth/index.ts | Registers new SSO success route endpoint |
| packages/server/src/enterprise/middleware/passport/index.ts | Generates UUID tokens and stores user data in cache during SSO redirect |
| packages/server/src/enterprise/controllers/auth/index.ts | Implements SSO token validation controller with cache lookup |
| packages/server/src/CachePool.ts | Adds SSO token caching methods with Redis support and 120-second expiration |
Contributor
chungyau97
approved these changes
Jul 24, 2025
HenryHengZJ
approved these changes
Jul 24, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




This implementation improves the authentication process by securely caching SSO tokens and managing user sessions.