我正在使用Rails 4,设计,角色模型和CanCanCan。
是否可以在ability.rb中定义一个对许多角色都有共同的能力?
例如,每个登录的用户都可以CRUD自己的个人资料页面?然后角色在这种共同能力之上具有特定的能力吗?
这是如何工作的?我是否需要在角色模型中为常用技能创建角色,然后允许每个用户拥有多个角色,以便他们获得共同的能力以及角色特定的能力?
例如,在我的能力.rb中,我有:
class Ability
include CanCan::Ability
def initialize(user)
alias_action :create, :read, :update, :destroy, :to => :crud
# Define abilities for the passed in user here. For example:
#
user ||= User.new # guest user (not logged in)
#users who are not signed in can create registration or login
# can read publicly available projects, programs and proposals
can :read, Project, {:active => true, :closed => false, :sweep => { :disclosure => { :allusers => true } } }
# {:active => true, :closed => false && :Project.sweep.disclosure.allusers => true}
# if user role is student
if user_signed_in?
can :crud, Profile, :user_id => user.id #[for themselves]
elsif user.try(:profile).present? && user.profile.has_role?(:student)
所以,我希望学生能够阅读客人可以阅读的相同内容。有没有办法说学生可以做一些新用户和登录用户可以做的事情(以及学生特定的能力)?
答案 0 :(得分:0)
我正在使用此https://github.com/ryanb/cancan/wiki/Role-Based-Authorization#alternative-role-inheritance对我来说工作正常
答案 1 :(得分:0)
我在这里添加了一个示例能力类供您理解。您可以轻松理解代码并阅读注释。您的代码似乎不太好,我可以指出一件事,您不应该通过profile
来管理角色,您应该使用user
来分配或管理roles
。
如果您想为一组用户提供相同的功能,那么您可以使用此类||
条件user.has_role?(:role_one) || user.has_role?(:role_two)
并将能力块传递为can :manage, [SomeClassName, SomeClassName]
。
class Ability
include CanCan::Ability
def initialize(user)
user ||= User.new
#Only same user can mange his Profile
can :manage, [Profile], :user_id => user.id
#Give rule wise permission
if user.admin?
can :manage, :all
elsif user.has_role?(:some_role_name)
can :manage, [SomeClassName]
elsif user.has_role?(:role_one) || user.has_role?(:role_two)
can :manage, [SomeClassName, SomeClassName]
else
can :read, :all
end
end
end
希望这可以帮助您完成任务。