I successfully made login system with Devise and CanCan, and I have 3 types of users. Admin, internal and global users. I created Controllers and index actions: Admin, Cpanel, Report and State, and I want to restrict access to this controllers for some users.

Admin user should have privilegies to access: Reports(all), State (read), Admin (all)

Global user should have privilegies to access: Reports(only read), State(read), Cpanel(all)

Internal user should have privilegies to access: Reports(all), State (read)

And I tried to do this with following code in ability.rs:

class Ability
  include CanCan::Ability

  def initialize(user)
    user ||= User.new # guest user (not logged in)

    if user.role? :admin
      can :manage, [Report, Admin]
      can :read, State
    elsif user.role? :global_user
      can :read, [Report, State]
      can :manage, Cpanel
    elsif user.role? :internal_user
      can :manage, Report
      can :read, State     
    end
   end
end

At this time I have only index actions in this controllers, and when I login to app with internal user I CAN access to /admin for example, and that is not behavior that I want. I want to restrict access to all controllers instead of controllers listed in ability.rb class.

Source code is here

link|improve this question

71% accept rate
feedback

3 Answers

up vote 6 down vote accepted

If I were going to prevent access to an entire controller, I would make a before filter that redirects the user to an access denied page if he does not have the admin role. Might look something like:

def check_permissions
 raise CanCan::AccessDenied unless @current_user.role?(:admin)
end

If I just wanted to prevent access to update and create, for example, I would do:

def update
  raise CanCan::AccessDenied unless can?(:update,Thing)
  ...
end

def create
  raise CanCan::AccessDenied unless can?(:create,Thing)
  ...
end

You can handle the CanCan::AccessDenied exception in your application controller:

rescue_from CanCan::AccessDenied do |exception|
    flash[:error] = exception.message
    redirect_to no_access_path
  end

I have some pretty good posts about CanCan and Devise here and here

UPDATE I use this method in my application controller to set my current user variable:

# Make the current user object available to views
  #----------------------------------------------------------------------------
  def get_user
    @current_user = session[:current_user]
  end
link|improve this answer
Why do I get undefined method `role?' for nil:NilClass? – kondormit Mar 2 '11 at 12:41
And I have in User model method role? – kondormit Mar 2 '11 at 12:53
That means you are calling the role? method on nil. If you used my code above then your @current_user object is nil. You need to make sure that is being set. See my edit above for how I do it – Tony Mar 2 '11 at 16:30
feedback

You need to add checks for the cancan authorization to your controllers.

This might be just adding a line like

authorize! :read, @state

to your state controller index action, and similarly for all the other index actions.

EDIT: Sorry, in a state controller index action, you likely don't have @state, so the above wouldn't apply. Possibly something like

authorize! :read, State

There is also a load_and_authorize method that you can use to combine authorization for multiple actions in a controller and reduce your code. The load_and_authorize version is likely to look similar to

load_and_authorize_resource :state

and it should be before your actions.

You might want to look at this railscast on cancan authorization for a complete basic setup (in rails2).

I suspect to clear up other problems, we might need to see some more code. Try posting some of your controller code.

I haven't used this in rails3, but I assume most of it remains more or less similar.

link|improve this answer
And I can't access to /state nor with users that have permissions. – kondormit Mar 2 '11 at 1:11
@Mladjan Antic : See my edits. – Don Roby Mar 2 '11 at 1:29
I added "authorize! :index, Admin" in Admin controller, index action. Now, when I want to access to /admin loged as a global user, I get NameError in AdminController#index uninitialized constant AdminController::Admin Whole app is here: cl.ly/2E292R2m2B0X141q3C0S – kondormit Mar 2 '11 at 1:38
The :index should probably have still been :read - but I'll have a look at your whole controller and see if I spot anything. – Don Roby Mar 2 '11 at 1:40
Now I get: uninitialized constant AdminController::Admin – kondormit Mar 2 '11 at 1:41
show 1 more comment
feedback

I solved this problem with

def check_permissions
 raise CanCan::AccessDenied unless current_user.role?(:admin)
end

but, note that I must to change @current_user to current_user (without @)

Thanks Tony

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.