树形结构的RBAC访问控制
我正在树结构(组织)中实现基于角色的访问控制,该结构通常存储在 LDAP 中,但这次是在 MySQL 中。我的部分要求是让人们访问树的一部分。在 LDAP 中,我将使用 ACI 来过滤树的一部分。我只是不确定在 PHP/MySQL 中执行此操作的最佳方法。
在 LAMP 应用程序中创建将权限应用于对象集合以及层次结构中的各个实体的最佳方式是什么?
提前致谢,
I am implimenting role based access control in a tree structure (organization) that normally would be stored in LDAP but this time is in MySQL. Part of my requirement is to give people acccess to part of the tree. In LDAP I would use a ACI to filter part of the tree. I am just not sure on the best way to do this in PHP/MySQL.
What is the best way in a LAMP application to create a way for the permission to be applied to collections of objects as well as to individual entities within the hierarchy?
Thanks in advance,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RBAC 和 ACL 非常普遍
http://www.tonymarston。 net/php-mysql/role-based-access-control.html
...或者您可以使用已经内置的十几个自由开源框架之一。尽管没有更多上下文,我无法判断是否这对你来说可能或不可能。
RBAC and ACL are pretty ubiquitous
http://www.tonymarston.net/php-mysql/role-based-access-control.html
... or you can just use one of a dozen FOSS frameworks that already have that built in. Though without more context I can't tell if that is possible for you or not.