Fix double render in ApplicationController auth callbacks#66
Closed
Fix double render in ApplicationController auth callbacks#66
Conversation
JuanVqz
commented
Mar 6, 2026
| autoprefixer-rails (>= 5.2.1) | ||
| sassc (>= 2.0.0) | ||
| brakeman (8.0.2) | ||
| brakeman (8.0.4) |
Member
Author
There was a problem hiding this comment.
CI was failing because the brakeman version does not match
https://github.com/fastruby/ruby_or_rails/actions/runs/22741750663/job/65956852118
JuanVqz
added a commit
that referenced
this pull request
Mar 6, 2026
`valid_slack_request?` returned a boolean but never called `head` or `render`, so unauthenticated Slack requests were silently allowed through. Added `head :unauthorized and return` to halt the filter chain, consistent with the fix applied in #66.
JuanVqz
added a commit
that referenced
this pull request
Mar 6, 2026
`valid_slack_request?` returned a boolean but never called `head` or `render`, so unauthenticated Slack requests were silently allowed through. Added `head :unauthorized and return` to halt the filter chain, consistent with the fix applied in #66.
Both check_user_token and check_session_expiry rendered the login view without returning, causing the action to continue executing and Rails to raise AbstractController::DoubleRenderError on every unauthenticated or expired-session request. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
650ad9c to
c008034
Compare
JuanVqz
added a commit
that referenced
this pull request
Mar 6, 2026
Replaces #66, #67, #68, #70 with a single cohesive fix: - Merge check_session_expiry + check_user_token into one authenticate! callback, eliminating the double-render risk by design - SessionsController and Slack::ApplicationController now each skip a single authenticate! instead of managing multiple callbacks - Rename valid_slack_request? to verify_slack_request! and make it halt with head :unauthorized when signature verification fails - Replace head :unprocessable_entity in send_message with logging and Sentry.capture_exception so notification failures never affect the HTTP response back to Slack
Member
Author
|
Superseded by #71 which addresses this and three other related bugs with a more robust design. |
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.
Problem
Both
check_user_tokenandcheck_session_expiryinApplicationControllercalledrenderwithout returning, so thebefore_actioncallbacks would render the login view but still allow the action to continue executing. This causes Rails to raiseAbstractController::DoubleRenderErroron every unauthenticated or expired-session request.Fix
Added
and returnto halt the callback immediately after rendering:Tests
Added a test to
PuzzlesControllerTestasserting that unauthenticated requests render the login page with a 200 response instead of raising a double render error.