Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Gorm Adapter | 596 | 71 | 6 days ago | 53 | July 03, 2022 | apache-2.0 | Go | |||
GORM adapter for Casbin, see extended version of GORM Adapter Ex at: https://github.com/casbin/gorm-adapter-ex | ||||||||||
Xorm Adapter | 359 | 11 | 8 months ago | 11 | January 20, 2022 | apache-2.0 | Go | |||
Xorm adapter for Casbin | ||||||||||
Casbin Server | 260 | 2 | 4 | 4 months ago | 6 | December 21, 2022 | 3 | apache-2.0 | Go | |
Casbin as a Service (CaaS) | ||||||||||
Mongodb Adapter | 231 | 5 | 9 months ago | 12 | September 16, 2022 | apache-2.0 | Go | |||
MongoDB adapter for Casbin | ||||||||||
Protobuf Adapter | 186 | 6 years ago | May 24, 2021 | apache-2.0 | Go | |||||
Google Protocol Buffers adapter for Casbin | ||||||||||
Redis Adapter | 182 | 4 months ago | 2 | January 20, 2022 | apache-2.0 | Go | ||||
Redis adapter for Casbin | ||||||||||
Rethinkdb Adapter | 148 | a year ago | May 22, 2021 | 1 | mit | Go | ||||
RethinkDB adapter for Casbin https://github.com/casbin/casbin | ||||||||||
Dynacasbin | 143 | 2 years ago | Go | |||||||
DynamoDB adapter for Casbin | ||||||||||
Sqlalchemy Adapter | 63 | 17 days ago | 12 | September 09, 2021 | apache-2.0 | Python | ||||
SQLAlchemy Adapter for PyCasbin | ||||||||||
Typeorm Adapter | 60 | 2 | 5 | 5 days ago | 14 | August 04, 2022 | 1 | apache-2.0 | TypeScript | |
TypeORM adapter for Casbin |
Xorm Adapter is the Xorm adapter for Casbin. With this library, Casbin can load policy from Xorm supported database or save policy to it.
Based on Xorm Drivers Support, The current supported databases are:
go get github.com/casbin/xorm-adapter/v2
package main
import (
"github.com/casbin/casbin/v2"
_ "github.com/go-sql-driver/mysql"
"github.com/casbin/xorm-adapter/v2"
)
func main() {
// Initialize a Xorm adapter and use it in a Casbin enforcer:
// The adapter will use the MySQL database named "casbin".
// If it doesn't exist, the adapter will create it automatically.
a, _ := xormadapter.NewAdapter("mysql", "mysql_username:[email protected](127.0.0.1:3306)/") // Your driver and data source.
// Or you can use an existing DB "abc" like this:
// The adapter will use the table named "casbin_rule".
// If it doesn't exist, the adapter will create it automatically.
// a := xormadapter.NewAdapter("mysql", "mysql_username:[email protected](127.0.0.1:3306)/abc", true)
e, _ := casbin.NewEnforcer("examples/rbac_model.conf", a)
// Load the policy from DB.
e.LoadPolicy()
// Check the permission.
e.Enforce("alice", "data1", "read")
// Modify the policy.
// e.AddPolicy(...)
// e.RemovePolicy(...)
// Save the policy back to DB.
e.SavePolicy()
}
package main
import (
"github.com/casbin/casbin/v2"
_ "github.com/lib/pq"
"github.com/casbin/xorm-adapter/v2"
)
func main() {
// Initialize a Xorm adapter and use it in a Casbin enforcer:
// The adapter will use the Postgres database named "casbin".
// If it doesn't exist, the adapter will create it automatically.
a, _ := xormadapter.NewAdapter("postgres", "user=postgres_username password=postgres_password host=127.0.0.1 port=5432 sslmode=disable") // Your driver and data source.
// Or you can use an existing DB "abc" like this:
// The adapter will use the table named "casbin_rule".
// If it doesn't exist, the adapter will create it automatically.
// a := xormadapter.NewAdapter("postgres", "dbname=abc user=postgres_username password=postgres_password host=127.0.0.1 port=5432 sslmode=disable", true)
e, _ := casbin.NewEnforcer("../examples/rbac_model.conf", a)
// Load the policy from DB.
e.LoadPolicy()
// Check the permission.
e.Enforce("alice", "data1", "read")
// Modify the policy.
// e.AddPolicy(...)
// e.RemovePolicy(...)
// Save the policy back to DB.
e.SavePolicy()
}
This project is under Apache 2.0 License. See the LICENSE file for the full license text.