Tagged Questions

6
votes
2answers
636 views

Why is Rails before_filter called twice when the controller is subclassed?

I'm at Rails 2.3.5 and I have this problem: class BaseController < ApplicationController before_filter :foo, :only => [:index] end class ChildController < BaseController before_filter ...
4
votes
2answers
843 views

before_filter with parameters

i have a method that does something like this: before_filter :authenticate_rights, :only => [:show] def authenticate_rights project = Project.find(params[:id]) redirect_to ...
4
votes
1answer
418 views

before_filter with another controller

I am trying to create an action that will check for every page if the user is logged in. For that, in the controller Home I created this method: def check_session if !session[:user_id] ...
4
votes
4answers
6k views

Skip before_filter in Rails

Names and objects have been simplified for clarity's sake. The basic concept reamins the same. I have three controllers: dog, cat, and horse. These controllers all inherit from the controller animal. ...
3
votes
2answers
400 views

Rails set layout from within a before_filter method

Is it possible to reset a default layout from within a before_filter method in Rails 3? I have the following as my contacts_controller.rb: class ContactsController < ApplicationController ...
3
votes
1answer
357 views

How do I test that a before_filter will redirect for all Rails controller actions?

I have a fairly typical require_no_user as a before_filter in one of my controllers. I need to test that a logged in user is redirected by this filter if they try to access any of the controller's ...
3
votes
1answer
2k views

Ruby on Rails, before_filter and prepend_before_filter ordering is?

In the following example, before_filter :foo before_filter :bar before_filter :wah prepend_before_filter :heehee prepend_before_filter :haha so then the execution orders will be: haha, heehee, ...
2
votes
4answers
56 views

I want to create a method that will be available in all controllers, and views

i am making a ecommerce application in which the categories are visible in side bar on all pages. i wrote a method in application controller def categories @categories = Category.all end but how ...
2
votes
1answer
395 views

Skip before filter with Active Admin

I am using devise and recently added active admin, which created a separate table of admin_users to keep admins. All works fine with Active Admin when I try to log in and browse around. However, my ...
2
votes
4answers
462 views

How to “update_attributes” without executing “before_save”?

I have a before_save in my Message model defined like this: class Message < ActiveRecord::Base before_save lambda { foo(publisher); bar } end When I do: ...
2
votes
1answer
947 views

:except not working in before_filter in application controller. Routing problem?

I have a before_filter in my application controller to keep a user's session alive (and log them out if a time out has been reached). This should be called on every action except /sessions/new and ...
2
votes
2answers
447 views

ignore before_update when save

some case I don't want execute before_update. please help me. case A: in case I want used before_update obj = Object.find(id) obj.save but case B I don't want used before_update obj = ...
2
votes
1answer
340 views

FInding out which before_filters are already set in Rails 3

I have a DSL for controller configuration. The underlying functionality relies on before_filters. To prevent setting the before_filter more than once, I really need to find out whether a ...
2
votes
1answer
552 views

How to skip before filters for json/xml requests in rails

I found a way to skip before filters based on the format, as seen below, but I'm wondering if there is a better way since this clutters things and isn't very DRY. before_filter do |controller| ...
2
votes
2answers
1k views

Rails before_filter and action identification

I want to write a before_filter in my controller to identify the action which will execute next. This is for authorization purposes (this is somewhat like role_requirement plugin do..) Ex: if a user ...
2
votes
3answers
3k views

RSpec in Rails: How to skip a before_filter?

I am trying to test my controller and maintain separation of concerns. The first concern is "Who is able to execute which action?" I am using authlogic for authentication and be9's acl9 for ...
2
votes
4answers
999 views

How do you prevent database changes inside a Rails ActiveRecord before_create filter from getting rolled back when it returns false?

I've added a before_create filter to one of my Rails ActiveRecord models and inside that filter I'm doing some database updates. Sometimes I return false from the filter to prevent the creation of ...
2
votes
3answers
976 views

rails: put and interruption in before filter

I want a before filter like "must_have_permission_to_write" that when called if user hasn't permission to write renders a message saying "you can't do that!" and return. Problem is I'm getting "can ...
1
vote
1answer
50 views

Rails 3 : before_filter on an external link

I don't know if I'm thinking the right way or not. In my rails app, I use facebook authentication with Omniauth. I have 2 different links "Sign In" (both of them target to auth/facebook with ...
1
vote
3answers
55 views

How to exclude a single controller action from a filter in Rails 3.07?

class ApplicationController < ActionController::Base protect_from_forgery before_filter :check_session_expiry, :except => :login How do you exclude a single controller's (the users ...
1
vote
1answer
360 views

Rails 3 way of doing skip_before_filter, :only

In rails 2.8 we can write skip_before_filter like this skip_before_filter :require_login, :only => [:create,:new,:accept] which means, i wanted to apply the filter require_login only to these ...
1
vote
1answer
66 views

Rhodes before_filter for controllers

Does Rhodes has before_filter for controllers similar to Rails.
1
vote
4answers
518 views

How to skip a before_filter for Devise's SessionsController?

I have a before_filter in my ApplicationController; that is, for every controller in my project. How can I skip_before_filter for Devise's SessionsController create action ?
1
vote
1answer
253 views

Rails before_filter check multiple roles

In my before filter, I call a method containing the following code: authorized_for_roles :administrator In my application_controller def authorized_for_roles(*roles) roles.each{|role_name| return ...
1
vote
2answers
1k views

before_filter with devise

I'm using Devise's built in before_filter :authenticate_user!. I want to call my own custom method in my application helper if a user fails the before filter (tries to do an action when logged out). ...
1
vote
1answer
144 views

before_filter checking multiple roles

In application_controller I have the following method: def authorized_for_roles(*roles) roles.each{|role_name| return true if current_user.has_role?(role_name)} false end In one of my ...
1
vote
1answer
88 views

append_before_filter in production mode

I have a controller that runs in two different "contexts" based on the logged in user (basically, a user can perform CRUD operations on their own account, and an admin user can CRUD all user accounts; ...
1
vote
2answers
453 views

How can I specify the order that before_filters are executed?

Does rails make any guarantees about the order that before filters get executed with either of the following usages: before_filter [:fn1, :fn2] or before_filter :fn1 before_filter :fn2 I'd ...
1
vote
1answer
188 views

before_filter: is it possible to specify controller for action?

I'm having the following string in my application_controller: before_filter :login_required, :only => [ :edit, :update, :show, :index ] But in case with :show, I need to put {:controller => ...
1
vote
2answers
959 views

Testing before_filter gets called in action

How would one test that when an action in controller is being accessed, that controller's before_filter will be executed? The before_filter is tested in separate example group so that there's no need ...
1
vote
4answers
820 views

before_filter with dynamic information

Hi I am trying to add a filter to a controller that is based on a certain role (using role_requirement) and then on the company_id that each user has. So basically I need something like this: ...
1
vote
2answers
461 views

in Rails : Retreive user input from a form that isn't associated with a Model, use the result within the controller

Here's a simplified version of what I'm trying to do : Before any other actions are performed, present the user with a form to retrieve a string. Input the string, and then redirect to the default ...
0
votes
0answers
51 views

Using before_filter to call a controller in ApplicationController

Is it possible to use before_filter to call a controller in ApplicationController like this: before_filter :path/to/my/controller.rb and skip it in the some controllers like this: ...
0
votes
1answer
37 views

Can't get skip_before_filter to work with ActiveAdmin in Rails

I am using the devise gem for authentication and have the following before_filter in my ApplicationController: before_filter :require_login def require_login unless user_signed_in? || ...
0
votes
2answers
116 views

Devise - Authenticate user (after validations) on a create action

Using Devise, I know how to protect controller actions from non-signed-in users through: before_filter :authenticate_user! In order to illustrate what I am trying to achieve, please see an example: ...
0
votes
2answers
43 views

Rails metaprogrammin add before filter

is it possible to add some before filter using metaprogramming, so from some module which extends my controller ? the best would be to specify after which existing one it should apply, or just add it ...
0
votes
1answer
66 views

Use more than one before_filter

I want to use two filters in application_controller so, if the first filter fail: before_filter CASClient::Frameworks::Rails::Filter try it with the second: before_filter :hmac_filter The idea ...
0
votes
1answer
98 views

Rails before_filter with parameter from methods

I have a series of methods, with similar structure and sharing a common parameter: def deposit (amount) def transfer (amount, to) def refund (amount) I would like to check if the balance is ...
0
votes
0answers
103 views

Rails, cannot redirect page from a b4 filter during JQuery Autocomplete

I have a session timeout before_filter in my Rails project. For all ajax calls that occur after the session timeout, I'm able to successfully redirect with this: respond_to do |format| ...
0
votes
2answers
341 views

Specify which controllers to exclude from before_filter

I'm using devise for authentication and have some before_filters in my application controller. Issue I'm seeing is that when I try to logout the before_filter intercepts that and keeps me on the view ...
0
votes
1answer
424 views

rails error with tests after adding before_filter :login_required to the controllers

I added the before_filter to my controllers to require a login of the user. Here's an example of my Unit Controller with the added before_filter: class UnitsController < ApplicationController ...
0
votes
2answers
435 views

Rails controller testing: How to disable before_filter of controller while testing?

before_filter of controller expects user to be logged in. this is why test of controller fails(work fine if i remove user authentication call from before_filter). Is it possible if user authentication ...
0
votes
2answers
358 views

Rails 3 how to reset controller before_filters between specs?

I'm writing specs for a plugin which has different modules that the user can choose to load. Some of these modules dynamically add before_filters to ApplicationController. The problem is sometimes if ...
0
votes
1answer
205 views

Rails benchmark the filter chain?

I'm doing some optimisation on my Rails (2.3.5) app, and can't seem to find an elegant way of benchmarking the filter chain. I'm ab testing the site with something like: ab -n 200 -c 3 -i -k ...
0
votes
1answer
179 views

before_filter :except doesn't seem to be working

I must be doing something silly. Any ideas on why this wouldn't be working. I get prompted to authenticate when making a request to the controller with the below config: class ApplicationController ...
0
votes
1answer
271 views

before_filter in application_controller in rails application

HI , I am very new to rails application . I am trying to execute a method as long as the logged in user is alive. For that i have added a method on before_filter of application_controller ANd my ...
0
votes
1answer
266 views

Global before_filter in rails

I need to execute a method before certains actions in a rails app and apparently the right way to go is using a before_filter. The before_filter works fine when a put the filter method in the ...
0
votes
2answers
117 views

How can I refactor this complicated transaction into my model from my controller?

I have a complex save process (a cyclical reference that needs to be resolved by validating and saving and one model, validating and saving another and then updating the first with an id from the ...
0
votes
1answer
537 views

Rails 3 Override Destroy without Canceling callbacks, and triggering a ROLLBACK

My desired behavior is that when destroy is called on an instance, that instance will not actually be destroyed, but it will just be marked as having been destroyed. This needs to percolate up for ...
0
votes
2answers
97 views

Checking an attribute is true before executing a CRUD action

Before any of my article controller crud actions can run (excluding index), i want to make sure that the article's active field is true. I thought about doing this in a before_filter, but at that ...

1 2