适配器

在Casbin中,策略存储作为adapter(Casbin的中间件) 实现。 Casbin用户可以使用adapter从存储中加载策略规则 (aka LoadPolicy()) 或者将策略规则保存到其中 (aka SavePolicy())。 为了保持代码轻量级,我们没有把adapter代码放在主库中。

目前支持的适配器列表

Casbin的适配器完整列表如下。 我们欢迎任何第三方对adapter进行新的贡献,如果有请通知我们,我们将把它放在这个列表中:)

Go

适配器 类型 作者 自动保存 描述
File Adapter (内置) File Casbin ForCSV (Comma-Separated Values) files
Filtered File Adapter (内置) File @faceless-saint 对于 CSV (逗号分隔的值) 个带策略子集加载支持的文件
SQL Adapter SQL @Blank-Xu MySQL,PostgreSQL,SQL Server和SQLite3在 master分支中受到database/sql的支持,Oacle在 oracle分支中也受到database/sql的支持
Xorm Adapter ORM Casbin 通过 Xorm实现,支持MySQL, PostgreSQL, Sqlite3, SQL Server等多种存储引擎的adapter
Gorm Adapter ORM Casbin 通过 Gorm实现,支持MySQL, PostgreSQL, Sqlite3, SQL Server等多种存储引擎的adapter
Ent Adapter ORM Casbin MySQL, MariaDB, PostgreSQL, SQLite, 基于Gremlin的图数据库由 [ent ORM](https://entgo. io/) 支持。
Beego ORM Adapter ORM Casbin MySQL, PostgreSQL, Sqlite3 由 Beego ORM 支持
SQLX Adapter ORM @memwey MySQL, PostgreSQL, SQLite, Oracle 由 SQLX 支持
Sqlx Adapter SQL @Blank-Xu MySQL, PostgreSQL, SQL Server, SQLite3 由 master 分支支持,Oracle由oracle 分支受到[sqlx](http://
GF ORM Adapter ORM @vance-liu MySQL, SQLite, PostgreSQL, Oracle, SQL Server 受到 GoFrame ORM 的支持
GoFrame ORM Adapter ORM @kotlin2018 MySQL, SQLite, PostgreSQL, Oracle, SQL Server由GoFrame ORM支持
Filtered PostgreSQL Adapter SQL Casbin 针对 PostgreSQL
PostgreSQL Adapter SQL @cychiuae 针对 PostgreSQL
RQLite Adapter SQL EDOMO Systems 用于RQLite
MongoDB Adapter NoSQL Casbin For MongoDB based on MongoDB Go Driver
RethinkDB Adapter NoSQL @adityapandey9 用于RethinkDB
Cassandra Adapter NoSQL Casbin 用于Apache Cassandra DB
DynamoDB Adapter NoSQL HOOQ 用于Amazon DynamoDB
Dynacasbin NoSQL NewbMiao 用于Amazon DynamoDB
ArangoDB Adapter NoSQL @adamwasila 用于ArangoDB
https://github.com/Soluto/casbin-minio-adapter Cloud Soluto 用于MinioAmazon S3
Azure Cosmos DB Adapter Cloud @spacycoder 用于Microsoft Azure Cosmos DB
GCP Firestore Adapter Cloud @reedom 用于Google Cloud Platform Firestore
GCP Cloud Storage Adapter Cloud qurami 用于Google Cloud Platform Cloud Storage
Consul Adapter KV store @ankitm123 用于HashiCorp Consul
Redis Adapter KV store Casbin 用于Redis
Etcd Adapter KV store @sebastianliu 用于etcd
BoltDB Adapter KV stor @speza 用于Bolt
Bolt Adapter KV store @wirepair 用于Bolt
BadgerDB Adapter KV store @inits 用于BadgerDB
Protobuf Adapter Stream Casbin 用于Google Protocol Buffers
JSON Adapter String Casbin 用于JSON
String Adapter String @qiangmzsx 用于字符串
HTTP File Adapter HTTP @h4ckedneko 用于http.FileSystem

NOTE

  1. 如果使用显式或隐式adapter调用casbin.NewEnforcer(),策略将自动加载。
  2. 可以调用e.LoadPolicy() 来从存储中重新加载策略规则。
  3. 如果adapter不支持Auto-Save特性,则在添加或删除策略时不能将策略规则自动保存回存储器。 你必须手动调用 SavePolicy() 来保存所有的策略规则

例子

这里我们提供几个例子:

文件适配器 (内置)

以下代码展示了如何通过内置文件适配器初始化一个enforcer:

Go

import "github.com/casbin/casbin"

e := casbin.NewEnforcer("examples/basic_model.conf", "examples/basic_policy.csv")

PHP

use Casbin\Enforcer;

$e = new Enforcer('examples/basic_model.conf', 'examples/basic_policy.csv');

Rust

use casbin::prelude::*;

let mut e = Enforcer::new("examples/basic_model.conf", "examples/basic_policy.csv").await?;

它等同于如下代码:

Go

import (
    "github.com/casbin/casbin"
    "github.com/casbin/casbin/file-adapter"
)

a := fileadapter.NewAdapter("examples/basic_policy.csv")
e := casbin.NewEnforcer("examples/basic_model.conf", a)

PHP

use Casbin\Enforcer;
use Casbin\Persist\Adapters\FileAdapter;

$a = new FileAdapter('examples/basic_policy.csv');
$e = new Enforcer('examples/basic_model.conf', $a);

Rust

use casbin::prelude::*;

let a = FileAdapter::new("examples/basic_policy.csv");
let e = Enforcer::new("examples/basic_model.conf", a).await?;

MySQL 适配器

下面展示了如何从MySQL数据库初始化一个enforcer。 此处样例中的MySQL数据库运行在127.0.0.1:3306上,用户为root,密码为空。

Go

import (
    "github.com/casbin/casbin"
    "github.com/casbin/mysql-adapter"
)

a := mysqladapter.NewAdapter("mysql", "root:@tcp(127.0.0.1:3306)/")
e := casbin.NewEnforcer("examples/basic_model.conf", a)

Rust

// https://github.com/casbin-rs/diesel-adapter
// 请确保您激活了 `mysql` 特性

use casbin::prelude::*;
use diesel_adapter::{ConnOptions, DieselAdapter};

let mut conn_opts = ConnOptions::default();
conn_opts
    .set_hostname("127.0.0.1")
    .set_port(3306)
    .set_host("127.0.0.1:3306") // overwrite hostname, port config
    .set_database("casbin")
    .set_auth("casbin_rs", "casbin_rs");

let a = DieselAdapter::new(conn_opts)?;
let mut e = Enforcer::new("examples/basic_model.conf", a).await?;

PHP

// https://github.com/php-casbin/dbal-adapter

use Casbin\Enforcer;
use CasbinAdapter\DBAL\Adapter as DatabaseAdapter;

$config = [
    // Either 'driver' with one of the following values:
    // pdo_mysql,pdo_sqlite,pdo_pgsql,pdo_oci (unstable),pdo_sqlsrv,pdo_sqlsrv,
    // mysqli,sqlanywhere,sqlsrv,ibm_db2 (unstable),drizzle_pdo_mysql
    'driver'     => 'pdo_mysql', 
    'host' => '127.0.0.1',
    'dbname' => 'test',
    'user' => 'root',
    'password' => '',
    'port' => '3306',
];

$a = DatabaseAdapter::newAdapter($config);
$e = new Enforcer('examples/basic_model.conf', $a);

使用自建的adapter

您可以按照如下所示的方式使用您自定义的适配器:

import (
    "github.com/casbin/casbin"
    "github.com/your-username/your-repo"
)

a := yourpackage.NewAdapter(params)
e := casbin.NewEnforcer("examples/basic_model.conf", a)

在运行时进行加载或保存配置信息

您可以在初始化后重新加载模型与策略,或保存新的策略:

// 从模型CONF文件重新加载模型。
e.LoadModel()

// 从文件或数据库中重新加载策略。
e.LoadPolicy()

// 保存当前策略 (通常使用 Casbin API更改后) 返回文件或数据库。
e.SavePolicy()

自动保存

自动保存机制 (Auto-Save) 是适配器的特性之一。 如果当前适配器支持自动保存特性,该适配器可以向存储中添加一个策略规则,或者从存储中移除一个策略规则。 这与SavePolicy()不同,因为后者将删除存储中的所有策略规则,并将所有策略规则从Casbin enforcer保存到存储中。 因此,当策略规则的数量较多时,使用SavePolicy()可能会出现性能问题。

当适配器支持自动保存机制时,您可以通过Enforcer.EnableAutoSave() 函数来开启或关闭该机制。 默认情况下启用该选项(如果适配器支持自动保存的话)。

NOTE

  1. Auto-Save 特性是可选的。 Adapter可以选择是否实现它。
  2. Auto-Save 只在Casbin enforcer使用的adapter支持它时才有效。
  3. 请参阅上面适配器列表中的自动保存 列,以查看自动保存是否有适配器支持。
    下面是一个关于如何使用Auto-Save的例子:
    `
    import (
    “github.com/casbin/casbin”
    “github.com/casbin/xorm-adapter”
    _ “github.com/go-sql-driver/mysql”
    )

// enforcer会默认开启AutoSave机制.
a := xormadapter.NewAdapter(“mysql”, “mysql_username:mysqlpassword@tcp(127.0.0.1:3306)/“)
e := casbin.NewEnforcer(“examples/basic
model.conf”, a)

// 禁用AutoSave机制
e.EnableAutoSave(false)

// 因为禁用了AutoSave,当前策略的改变只在内存中生效
// 这些策略在持久层中仍是不变的
e.AddPolicy(…)
e.RemovePolicy(…)

// 开启AutoSave机制
e.EnableAutoSave(true)

// 因为开启了AutoSave机制,现在内存中的改变会同步回写到持久层中
e.AddPolicy(…)
e.RemovePolicy(…)

有关更多示例,请参见: https://github.com/casbin/xorm-adapter/blob/master/adapter_test.go

### 如何编写 Adapter
Adapter应实现Adapter 中定义的接口,其中必须实现的为LoadPolicy(model model.Model) error和SavePolicy(model model.Model) error。

其他三个函数是可选的。 如果adapter支持Auto-Save特性,则应该实现它们。

|**方法**   |**类型**  |     **描述**  |
| ------------ | ------------ | ------------ |
| LoadPolicy()  | 强制的  | 从存储中加载所有策略规则  |
| SavePolicy()  |强制的   | 将所有策略规则保存到存储中  |
| AddPolicy()  | 可选择的  |向存储中添加策略规则   |
|RemovePolicy()|可选择的|从存储中删除策略规则|
|RemoveFilteredPolicy()    |可选择的|从存储中删除匹配筛选器的策略规则|

`
NOTE
如果一个适配器不支持Auto-Save,它应该为以下三个可选函数提供一个空实现。 以下是Golang中的一个样例:
`

/ AddPolicy 向存储器添加了一条策略规则。
func (a *Adapter) AddPolicy(sec string, ptype string, rule []string) error {
return errors.New(“not implemented”)
}

// RemovePolicy 从存储器中移除一条策略规则。
func (a *Adapter) RemovePolicy(sec string, ptype string, rule []string) error {
return errors.New(“not implemented”)
}

// RemoveFilteredPolicy 从存储器中移除可匹配过滤器的策略规则。
func (a *Adapter) RemoveFilteredPolicy(sec string, ptype string, fieldIndex int, fieldValues …string) error {
return errors.New(“not implemented”)
}
`
Casbin enforcer在调用这三个可选实现的接口时,会忽略返回的not implemented 错误。

谁负责创建数据库?

作为约定,adapter应该能够自动创建一个名为casbin的数据库(如果它不存在的话),并将其用于策略存储。 具体请参考Xorm adapter的实现:https://github.com/casbin/xorm-adapter

最后编辑: kuteng  文档更新时间: 2021-06-22 19:03   作者:kuteng