Reputation: 485
I need to write a casbin config to implement user roles and nested resources (objects) in a node.js application.
For users RBAC works well, propagating allowed rules from roles down to users.
For resources (objects) I need a different policy:
If obj X in in group Y and Y is in group Z, user must have ALLOW access to X AND Y AND Z.
In other words, object and object groups apply additional restrictions on top of their parents.
At the same time, if a user has DENY access on X, no parent (Y or Z) ALLOW rules apply
. This is easily implemented with RBAC's
[policy_effect]
e = !some(where (p.eft == deny))
[matchers]
m = g(r.sub, p.sub) ...
Do I need custom matchers? Really need help to get started on this task.
Upvotes: 0
Views: 941