Section 10.2.1 of the Rails Tutorial utilizes before_filter which is deprecated. What's the modern idiomatic way to write the code in UsersController so as to not use before_filter?

Here's a version of edit that I tried:

  def edit
    if ( signed_in? )
      @title = "Edit user"
    else
      deny_access
    end
  end

However, this triggers 2 failures in when I run rspec.

rspec ./spec/requests/friendly_forwardings_spec.rb:6 # FriendlyForwardings should forward to the requested page after signin
rspec ./spec/controllers/users_controller_spec.rb:266 # UsersController authentication of edit/update pages for non-signed-in users should deny access to 'edit'
link|improve this question

75% accept rate
feedback

2 Answers

up vote 6 down vote accepted

before_filter isn't deprecated. You may be confused because the definition was moved to AbstractController::Callbacks from ActionController::Filters::ClassMethods in Rails 3, but it's still very much alive and kicking.

Here it is defined, deprecation-free, in Rails 3.1:
https://github.com/rails/rails/blob/v3.1.0.rc6/actionpack/lib/abstract_controller/callbacks.rb#L80

link|improve this answer
Aha, you're right. Thanks! I'm still curious about the version of edit that I posted above. Any idea why that isn't equivalent to using the before_filter? – dharmatech Aug 20 '11 at 3:57
hard to say without seeing the tests – numbers1311407 Aug 20 '11 at 4:03
Just for completeness, I posted the non before_filter version below. Thanks again for the help! – dharmatech Aug 20 '11 at 6:17
feedback

Here's the version of edit which doesn't depend on before_filter and allows for the specs to pass:

  def edit
    if ( current_user )
      @user = User.find(params[:id])
      if ( current_user?(@user) )
        @title = "Edit user"
      else
        redirect_to(root_path)
      end
    else
      session[:return_to] = request.fullpath
      redirect_to("/signin" , :notice => "Please sign in to access this page.")
    end
  end

The original one I posted in the question didn't incorporate correct_user.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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