-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merging to release-5.3: TT-12347 fix management of custom keys in mdcb installations (#6353) #6359
Merging to release-5.3: TT-12347 fix management of custom keys in mdcb installations (#6353) #6359
Conversation
### **User description** <!-- Provide a general summary of your changes in the Title above --> ## Description <!-- Describe your changes in detail --> ## Related Issue https://tyktech.atlassian.net/browse/TT-12347 ## Motivation and Context <!-- Why is this change required? What problem does it solve? --> ## How This Has Been Tested <!-- Please describe in detail how you tested your changes --> <!-- Include details of your testing environment, and the tests --> <!-- you ran to see how your change affects other areas of the code, etc. --> <!-- This information is helpful for reviewers and QA. --> ## Screenshots (if appropriate) ## Types of changes <!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Refactoring or add test (improvements in base code or adds test coverage to functionality) ## Checklist <!-- Go over all the following points, and put an `x` in all the boxes that apply --> <!-- If there are no documentation updates required, mark the item as checked. --> <!-- Raise up any additional concerns not covered by the checklist. --> - [ ] I ensured that the documentation is up to date - [ ] I explained why this PR updates go.mod in detail with reasoning why it's required - [ ] I would like a code coverage CI quality gate exception and have explained why ___ ### **PR Type** Enhancement ___ ### **Description** - Changed the order of key search logic in the `SessionDetail` method of `DefaultSessionManager`. - Moved `keyName` to be appended after generating token with `orgID`. ___ ### **Changes walkthrough** 📝 <table><thead><tr><th></th><th align="left">Relevant files</th></tr></thead><tbody><tr><td><strong>Enhancement </strong></td><td><table> <tr> <td> <details> <summary><strong>auth_manager.go</strong><dd><code>Modify key search order in `SessionDetail` method</code> </dd></summary> <hr> gateway/auth_manager.go <li>Changed the order of key search logic in <code>SessionDetail</code> method.<br> <li> Moved <code>keyName</code> to be appended after generating token with <code>orgID</code>.<br> </details> </td> <td><a href="https://github.com/TykTechnologies/tyk/pull/6353/files#diff-311e18b071d244ed1615c0019215b633278679df373288b3451bcc5cf7c52c4e">+3/-1</a> </td> </tr> </table></td></tr></tr></tbody></table> ___ > 💡 **PR-Agent usage**: >Comment `/help` on the PR to get a list of all available PR-Agent tools and their descriptions (cherry picked from commit d3f52ab)
API Changes no api changes detected |
PR Reviewer Guide 🔍
|
PR Code Suggestions ✨
|
Quality Gate failedFailed conditions |
User description
TT-12347 fix management of custom keys in mdcb installations (#6353)
User description
Description
Related Issue
https://tyktech.atlassian.net/browse/TT-12347
Motivation and Context
How This Has Been Tested
Screenshots (if appropriate)
Types of changes
functionality to change)
coverage to functionality)
Checklist
why it's required
explained why
PR Type
Enhancement
Description
SessionDetail
method ofDefaultSessionManager
.keyName
to be appended after generating token withorgID
.Changes walkthrough 📝
auth_manager.go
Modify key search order in `SessionDetail` method
gateway/auth_manager.go
SessionDetail
method.keyName
to be appended after generating token withorgID
.PR Type
Enhancement, Tests
Description
SessionDetail
method to include the original key name after generating tokens.deleteUsingTokenID
inRPCStorageHandler
to handle key deletion using token ID.ProcessKeySpaceChanges
to use the newdeleteUsingTokenID
method for fallback deletion.deleteUsingTokenID
method to ensure proper key deletion by custom key ID and base64 key ID.Changes walkthrough 📝
auth_manager.go
Modify key search logic in SessionDetail method
gateway/auth_manager.go
SessionDetail
method.tokens.
rpc_storage_handler.go
Implement fallback deletion using token ID in RPC storage handler
gateway/rpc_storage_handler.go
deleteUsingTokenID
to handle key deletion usingtoken ID.
ProcessKeySpaceChanges
to use the new deletion method.auth_manager_test.go
Add tests for custom key processing in edge gateway
gateway/auth_manager_test.go
TestCustomKeysEdgeGw
to verify custom key processing.rpc_storage_handler_test.go
Add tests for deleteUsingTokenID method in RPC storage handler
gateway/rpc_storage_handler_test.go
deleteUsingTokenID
method.