"God said, Let there be light, and there was light."
"God will decide if you have permission."
"God bless you!"
composer require lanlin/god
God is written after referring to the Casbin(golang) project, thanks for their hard work.
For more detail, please refer to the documentation of Casbin.
- ACL (Access Control List)
- ACL with superuser
- ACL without users: especially useful for systems that don't have authentication or user log-ins.
- ACL without resources: some scenarios may target for a type of resources instead of an individual resource by using permissions like
write-article
,read-log
. It doesn't control the access to a specific article or log. - RBAC (Role-Based Access Control)
- RBAC with resource roles: both users and resources can have roles (or groups) at the same time.
- RBAC with domains/tenants: users can have different role sets for different domains/tenants.
- ABAC (Attribute-Based Access Control): syntax sugar like
resource.Owner
can be used to get the attribute for a resource. - RESTful: supports paths like
/res/*
,/res/:id
and HTTP methods likeGET
,POST
,PUT
,DELETE
. - Deny-override: both allow and deny authorizations are supported, deny overrides the allow.
- Priority: the policy rules can be prioritized like firewall rules.
- file adapter
- MongoDB adapter
- PHP PDO adapters (now support: MySQL, PostgreSQL, SQLite, SqlServer.)
does "Who" as "Role" or "Group" from "Where" do "Operator" to "What" will got "How"?
Identifier | Description |
---|---|
r | Request (r = sub, obj, act) |
p | Policy (p = sub, obj, act, eft) |
g | Group or Role (g = _, _) |
e | Policy Efftect (e = some(where (p.eft == allow))) |
m | Matchers (m = r.obj == p.obj) |
sub | Subject (Who) |
dom | Domain (Where) |
obj | Object (What) |
act | Action (Operator) |
eft | Efftect (How) (allow, deny, indeterminate) |
An access control model is abstracted into a CONF file based on the PERM metamodel (Policy, Effect, Request, Matchers).
So switching or upgrading the authorization mechanism for a project is just as simple as modifying a configuration.
You can customize your own access control model by combining the available models.
For example, you can get RBAC roles and ABAC attributes together inside one model and share one set of policy rules.
The most basic and simplest model in God is ACL. ACL's model CONF is:
# Request definition
[request_definition]
r = sub, obj, act
# Policy definition
[policy_definition]
p = sub, obj, act
# Policy effect
[policy_effect]
e = some(where (p.eft == allow))
# Matchers
[matchers]
m = r.sub == p.sub && r.obj == p.obj && r.act == p.act
An example policy for ACL model is like:
p, alice, data1, read
p, bob, data2, write
It means:
- alice can read data1
- bob can write data2
use God\God;
$God = new God('path/to/model.conf', 'path/to/policy.csv');
$God->allows('you', 'evil book', 'read'); // Does God allows you to do this?
new God();
new God(string $modelPath);
new God(string $modelPath, string $policyFile);
new God(string $modelPath, Adapter $adapter);
new God(Model $model);
new God(Model $model, Adapter $adapter);
// demo for mysql
$dbHost = "127.0.0.1";
$dbPort = 3306;
$dbName = "your_database_name";
$username = "root";
$password = "your_password";
// php mysql pdo demo
$pdo = new \PDO("mysql:host={$dbHost};port={$dbPort};dbname={$dbName}", $username, $password);
// init god model with csv
$g = new God('tests/Examples/rbac_model.conf', 'tests/Examples/rbac_policy.csv');
$m = $g->getModel();
// save policy to database
$a = new Adapter($pdo);
$a->savePolicy($m);
For more usage demos, please view the unit tests or
This project is licensed under the MIT license.