有人可以解释一下这段代码吗,这是在 github 上解释的同一个博客应用程序,但我无法理解这部分的使用,特别是名称空间角色掩码的使用。
此应用程序管理员、版主和作者三个角色。基于 CRUD 功能,他们能够编辑评论或删除评论。
class User < ActiveRecord::Base
acts_as_authentic
has_many :articles
has_many :comments
named_scope :with_role, lambda { |role| {:conditions => "roles_mask & #{2**ROLES.index(role.to_s)} > 0"} }
ROLES = %w[admin moderator author]
def roles=(roles)
self.roles_mask = (roles & ROLES).map { |r| 2**ROLES.index(r) }.sum
end
def roles
ROLES.reject { |r| ((roles_mask || 0) & 2**ROLES.index(r)).zero? }
end
def role_symbols
roles.map(&:to_sym)
end
end