refactor: reduce cognitive complexity of userOrOrgHandler (40 → ~12) - #144
Open
devin-ai-integration[bot] wants to merge 1 commit into
Open
devin-ai-integration[bot] wants to merge 1 commit into
devin-ai-integration[bot] wants to merge 1 commit into
Conversation
Extract helper functions from userOrOrgHandler to reduce cognitive complexity from 40 to within the allowed threshold of 15. Extracted functions: - toMinimalUser: converts github.User to MinimalUser - convertUsersToMinimal: filters and converts user slice - buildMinimalSearchResult: constructs the search response Fixes SonarQube issue go:S3776 on search.go:171 Co-Authored-By: Vedant Khanna <vedantkhanna@gmail.com>
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
|
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.



Closes: SonarQube issue
go:S3776onpkg/github/search.go:171Summary
The
userOrOrgHandlerfunction had a cognitive complexity of 40 (allowed: 15) due to nested nil-check conditionals when converting GitHub user objects. This PR extracts focused helper functions.Extracted Functions
toMinimalUsergithub.UsertoMinimalUser, handling nil fieldsconvertUsersToMinimalbuildMinimalSearchResultMinimalSearchUsersResultresponseTradeoffs
user.GetLogin()(nil-safe getter) instead of raw pointer check for cleaner code.Alternatives
MinimalUserbut the conversion is a one-way transform, not behavior on the type.Link to Devin session: https://app.devin.ai/sessions/dc69091bf9e24bd2871c88e47fa1cb98
Requested by: @VedantKh
Devin Review