Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having trouble getting before filters to work in a Rails app I have recently upgraded from 1.9(?) to 2.3.11. To try and debug it, I have put a before_filter in a controller:

before_filter :false_filter

and the following in application_controller.rb:

def false_filter
  puts "false filter running"
  false
end

I then call the method from either cucumber/webrat or a browser, and while the filter is getting called (I can see the puts outputting the message), the filter chain isn't getting terminated.

I'm wondering if there's some boilerplate code that hasn't been generated. Can anyone suggest where to look?

share|improve this question
2  
You are probably confused with active record before_xxx method which are not saving the record when returning false – Adrien Coquio Jun 15 '11 at 7:13

1 Answer

up vote 22 down vote accepted

Nothing pays any attention to a before-filter's return value. If you want to stop processing, you have to render something from your filter or redirect to somewhere else, from the fine guide:

If a before filter renders or redirects, the action will not run. If there are additional filters scheduled to run after that filter they are also cancelled.

The same text appears in the 2.3.8 guide.

This behavior does make sense, if the filter chain doesn't complete (i.e. stops filtering part way through) then you'd end up calling controller methods with things not set up the way they were expecting them to be and that would just cause pain, suffering, and confusion and that wouldn't be at all friendly or fun.

share|improve this answer
2  
The examples I was looking at do a redirect and then return false, and I latched on to the false part, which turned out to be exactly so. It all makes perfect sense - thanks. – Henry Collingridge Jun 15 '11 at 20:28
2  
@Henry: Don't feel bad, I find a lot of the Rails and Ruby documentation to be a little sparse on details like this. – mu is too short Jun 15 '11 at 20:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.