使用角色掩码查找具有特定角色的所有用户
我一直在当前项目中使用位掩码来跟踪用户角色,但现在遇到的情况是我需要能够查找属于特定角色的所有用户。
我的角色设置如下:
ROLES = %w[admin editor moderator contributor]
def roles
ROLES.reject do |r|
((roles_mask || 0) & 2**ROLES.index(r)).zero?
end
end
def roles=(roles)
self.roles_mask = (roles & ROLES).map { |r| 2**ROLES.index(r) }.sum
end
def role_symbols
roles.map(&:to_sym)
end
我可以找到具有完全相同位图的所有用户,但不确定如何提取一个特定角色,在本例中为具有“编辑者”角色的所有用户。
I've been using a bitmask in a current project for keeping track of user roles, but now have a situation where I need to be able to do a find for all users who are a certain role.
I have my roles set-up like so:
ROLES = %w[admin editor moderator contributor]
def roles
ROLES.reject do |r|
((roles_mask || 0) & 2**ROLES.index(r)).zero?
end
end
def roles=(roles)
self.roles_mask = (roles & ROLES).map { |r| 2**ROLES.index(r) }.sum
end
def role_symbols
roles.map(&:to_sym)
end
I can find all users with exactly the same bit map, but not sure how to extract one particular role, in this case all users which have the roles "editor".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 http://railscasts.com/episodes/189-embedded-association 上,Ryan Bates 提供了搜索范围:
您会在那里找到示例。
On http://railscasts.com/episodes/189-embedded-association, Ryan Bates provides a scope to search:
You'll find examples there.