| Crates.io | rebacdb |
| lib.rs | rebacdb |
| version | 0.1.1 |
| created_at | 2023-12-08 15:15:47.321473+00 |
| updated_at | 2023-12-14 14:42:00.528143+00 |
| description | A relationship-based access control database inspired by google zanzibar. |
| homepage | |
| repository | https://github.com/pfz4/rebacs |
| max_upload_size | |
| id | 1062129 |
| size | 24,416 |
This library implements a in-memory relationship-based access control dababase, that was inspired by Google's Zanzibar.
ObjectA Object is a tuple of the values (namespace, id).
It represents a object like a user.
Example: (users, alice).
SetA Set is a tuple of the values (namespace, id, permission).
It represents a permission for a Object.
Example: (files, foo.pdf, read).
The RelationGraph-struct contains a graph of all relationships.
Relationships can be created between:
Object and Set => user alice can read the file foo.pdf.Set and Set => everyone who can read the file foo.pdf can read the file bar.pdf.The *-id is used as a wildcard id to create a virtual relation from this id to every other id in the namespace.
Example: (user, alice) -> (file, *, read) => user alice can read every file
A basic gRPC based server for interacting with the database can be found in the git repository.
I'm happy about any contribution in any form. Feel free to submit feature requests and bug reports using a GitHub Issue. PR's are also appreciated.
This Library is licensed under LGPLv3.