4

我正在使用 Active Admin 的 CanCan 授权适配器以及 Rolify 来管理管理站点上的授权。我有一个模型 , companythathas_many :manuals和另一个模型manuals, that has_many :parts

如果用户无权阅读admin/manuals/1并将其键入地址栏中,他们将被正确重定向并显示未经授权的消息。但是,如果用户键入,admin/manuals/1/parts他们不会被拒绝访问。他们被带到那个页面,除了所有部分都对他们隐藏。他们应该被重定向到带有未经授权的消息的仪表板。

这是我的配置。提前感谢您提供的任何建议。

配置/路由.rb

ActiveAdmin.routes(self)

模型/能力.rb

class Ability
  include CanCan::Ability

  def initialize(user)
    user ||= User.new

    can :read, ActiveAdmin::Page, :name => "Dashboard"

    if user.has_role? :admin
      can :manage, :all
    elsif user.has_role? :moderator
      can :manage, Part, :manual => { :company_id => user.company_id }
    else
      can :read, Part, :manual => { :company_id => user.company_id }
    end
  end
end

我还覆盖了controllers/application_controller.rb中的默认授权方法

rescue_from CanCan::AccessDenied do |exception|
  redirect_to root_url, :alert => exception.message
end

def authenticate_admin_user!
  authenticate_user!
  unless user_signed_in?
    flash[:alert] = "You are not authorized to view this page"
    redirect_to root_path
  end
end

def current_admin_user #use predefined method name
  return nil unless user_signed_in?
  current_user
end

def after_sign_in_path_for(user)
  if current_user.has_role? :admin
    admin_dashboard_path
  elsif current_user.has_role? :moderator
    admin_manuals_path
  else
    company_path(user.company)
  end
end
4

1 回答 1

1

您是否将该方法添加load_and_authorize_resource到您的控制器?

像这样:

class SomeController < ApplicationController
  load_and_authorize_resource
  ...
end

检查能力和授权

于 2013-09-23T15:43:32.897 回答