Giter Club home page Giter Club logo

Comments (4)

hsluoyz avatar hsluoyz commented on May 16, 2024 1

Casbin supports RBAC model with role hierarchy. You can view 1st level roles as role and 2nd level roles as authority.

The examples for a web service are here: https://github.com/casbin/casbin#others. Pay more attention to the Intel RMD example and their policy rules.

from casbin.

aisq2008 avatar aisq2008 commented on May 16, 2024

sorry,i still don't know how does casbin work with user role authority resource model,could you give an example?

from casbin.

hsluoyz avatar hsluoyz commented on May 16, 2024

The basic RBAC model works with your scenario. You can see the model file and policy file in the above link. The content of the model file is:

[request_definition]
r = sub, obj, act

[policy_definition]
p = sub, obj, act

[role_definition]
g = _, _

[policy_effect]
e = some(where (p.eft == allow))

[matchers]
m = g(r.sub, p.sub) && r.obj == p.obj && r.act == p.act

The policy file can be:

p, authority1, resource1, read
p, authority2, resource2, read
p, authority2, resource2, write

g, alice, role1
g, bob, role2

g, role1, authority1
g, role2, authority2

This policy means:

alice -> role1 -> authority1 -> resource1
bob-> role2 -> authority2 -> resource2

from casbin.

hsluoyz avatar hsluoyz commented on May 16, 2024

Suppose it has been solved.

from casbin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.