Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
639 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
854 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
420 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
3answers
1k views

In Sinatra, best way to serve iPhone layout vs. normal layout?

I'm writing a Sinatra app which needs to render different layouts based on whether the user is using an iPhone or a regular browser. I can detect the browser type using Rack-Mobile-Detect but I'm not ...
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
415 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
57 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
398 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
1answer
261 views

cakePHP Auth - with allow/deny, what isAuthorized is actualley needed for?

Check this: function beforeFilter() { $this->Auth->authorize = 'controller'; $this->Auth->allow('delete'); } function isAuthorized() { if ($this->Auth->user('role') != ...
2
votes
4answers
477 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
961 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
449 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
341 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
554 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
1k 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
978 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
28 views

ActionController sessions and subclasses

By default all rails controllers inherit the application controller. In my application I want users to be able to authenticate from any page using http-basic auth, and also authenticate by posting, ...
1
vote
1answer
49 views

Confusing about a function :before_filter

I have following controller: class CarsController < ApplicationController autocomplete :user, :name before_filter :require_user, :except => [:my_action] def index end ... def ...
1
vote
1answer
52 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
2answers
56 views

Using Spring MVC is it possible to define filtering methods within controllers themselves

I know that using Spring MVC it is possible to annotate an entire controller class with a RequestMapping annotation. It is also possible to annotate separate methods with Requestmapping, so that each ...
1
vote
1answer
44 views

Before_filter help

I'm trying to figure out before_filters and I was hoping for a little help. I have a simple blog app, with entries that can be (draft or published) and (public or private). I was wondering how I can ...
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
371 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
1answer
308 views

Before_filter authentication function

I am developing an API using Rails 3. I have done my own authentication logic and I use an before_filter called authenticate_user! to check if a user is logged in. In this function I check if there ...
1
vote
2answers
292 views

Rails 3 before_filter setting and checking boolean values | paperchase / treasure hunt game

I am working on a paperchase / treasure hunt mobile web app. I have basic authentication, if the user scans any of the following codes he will be directed to the sign_up page. So far everything works ...
1
vote
4answers
528 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
257 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
89 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
466 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
479 views

Understanding before and after_filter

I have the following code right after my controller class declaration before_filter :load_form, :except => [:create, :update, :delete] after_filter :load_form, :only => [:create, :update, ...
1
vote
2answers
408 views

In a node.js application, how can I asynchronously achieve the effect of a rails controller before_filter?

I have a node.js Express application with a basic user authentication system where the session is stored in redis. I'd like to write and re-use a current_user() function that populates a JSON ...
1
vote
1answer
193 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
966 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
822 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
55 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
40 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
120 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
1answer
140 views

Rails3 - How To Render 403 in before_filter w/o DoubleRender Error

I have a before_filter that checks the validity of an API key. If the key is invalid, I'd like to render a header-only 403 response. In my controller: before_filter :validate_api ... def ...
0
votes
3answers
95 views

Rails 3.1 - before filter and database error

I'm having some trouble with lazy loading, i'm pretty sure of it ... maybe you could point out to me where I've failed. def setup_guild if params[:guild] @guild = Guild.where(:short_name => ...
0
votes
1answer
88 views

make a before_filter with current_user

I would like to make a before_filter on a controller with the method :current_user And it works... But I have an admin boolean in the user's attributes and I would like that only the users who have ...
0
votes
1answer
136 views

Rails 3 - authenticate and :before_filter

I am a newbie in Rails. I try to build a simple authenticate system, to application_controller I put following lines: def check_session if session[:user] if session[:expiry_time] < ...
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 ...

1 2