Rails 3 和 Devise 的角色授权

发布于 2024-10-10 12:14:42 字数 166 浏览 3 评论 0 原文

自从我使用 Rails 3 以来,我就一直在使用 devise,那是在第一个或第二个测试版期间,现在我还需要一些角色。在网上搜索后,看起来 CanCan 应该是最好的解决方案。但我不确定 CanCan 是否可以管理我的需求,就像我想要一个可以编辑/销毁主题的论坛版主,但创建主题的用户也应该能够编辑,那么我该怎么做呢?

I have used devise ever since i got over to Rails 3, that was around the first or second beta, and now i also needs some Roles. After searching the web it looked like CanCan should be the best solution. But i'm unsure if CanCan can manage my needs, like i want a forum moderator who can edit/destroy the topic, but the user who created the topic should also be able to edit, so how can i do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满天都是小星星 2024-10-17 12:14:42

根据您上面的简短描述,我想 CanCan 应该能够满足您的需求。

CanCan 主要是简化语法来集中授权规则。它不提供开箱即用的角色。然而,CanCan wiki 有很多非常有用的链接,包括 简单更复杂的方法来实现角色。

我发现直接建立所有权模型比尝试扮演“所有者”角色更有帮助。因此(假设您使用上面更简单的角色方案)您上面描述的用例将在您的能力定义中建模:

def initialize(user)
  ...
  can :manage, Topic if user.is? :moderator
  can :manage, Topic { |topic| if (topic.user_id == user.id) }
  ...
end

希望这会有所帮助。

Based on your brief description above, I'd imagine CanCan should be able to handle your needs.

CanCan is primarily simplified syntax to centralize authorization rules. It doesn't provide roles out of the box. However, the CanCan wiki has a bunch of very useful links, including a simple and a more complex approach to implementing roles.

I have found it helpful to model ownership directly rather than trying to have an "owner" role. So (assuming you use the simpler role scheme above) the use case you describe above would be modelled in your Ability definition thus:

def initialize(user)
  ...
  can :manage, Topic if user.is? :moderator
  can :manage, Topic { |topic| if (topic.user_id == user.id) }
  ...
end

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文