mongodbadapter

package module
v2.0.0-...-812d220 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 11, 2020 License: Apache-2.0 Imports: 9 Imported by: 0

README

Archived and no longer maintained. The original Casbin MongoDB Adapter is now using the official MongoDB Go Driver.

MongoDB Adapter Build Status Coverage Status Godoc

This fork uses the official MongoDB Go Driver instead of MGO.

MongoDB Adapter is the Mongo DB adapter for Casbin. With this library, Casbin can load policy from MongoDB or save policy to it.

Installation

go get github.com/ditchx/mongodb-adapter/v2

Simple Example

package main

import (
	"github.com/casbin/casbin/v2"
	"github.com/ditchx/mongodb-adapter/v2"
)

func main() {
	// Initialize a MongoDB adapter and use it in a Casbin enforcer:
	// The adapter will use the database named "casbin".
	// If it doesn't exist, the adapter will create it automatically.
	a := mongodbadapter.NewAdapter("mongodb://127.0.0.1:27017") // Your MongoDB URL.

	// 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 := mongodbadapter.NewAdapter("mongodb://127.0.0.1:27017", mongodbadapter.DBName("abc") )

	// You can also pass a connected *mongo.Client if you want to reuse one.
	// The adapter will not be responsible for automatically connecting/disconnecting the client, though.
	// client, _ := mongo.Connect(context.Background(), options.Client().ApplyURI("mongodb://127.0.0.1:27017"))
	// a := mongodbadapter.NewAdapterFromClient(client, mongodbadapter.DBName("abc") )

	e, err := casbin.NewEnforcer("examples/rbac_model.conf", a)
	if err != nil {
		panic(err)
	}


	// 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()
}

Filtered Policies

import "go.mongodb.org/mongo-driver/bson"

// This adapter also implements the FilteredAdapter interface. This allows for
// efficent, scalable enforcement of very large policies:
filter := &bson.M{"v0": "alice"}
e.LoadFilteredPolicy(filter)

// The loaded policy is now a subset of the policy in storage, containing only
// the policy lines that match the provided filter. This filter should be a
// valid MongoDB selector using BSON. A filtered policy cannot be saved.

Getting Help

License

This project is under Apache 2.0 License. See the LICENSE file for the full license text.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func DBName

func DBName(databaseName string) func(*adapter)

DBName sets the name of the database to be used by casbin

func Filtered

func Filtered(filtered bool) func(*adapter)

Filtered sets flags for filtered policy

func NewAdapter

func NewAdapter(url string, opts ...func(*adapter)) persist.Adapter

NewAdapter is the constructor for Adapter.

func NewAdapterFromClient

func NewAdapterFromClient(cl *mongo.Client, opts ...func(*adapter)) persist.Adapter

NewAdapterFromClient creates a new adapter from an existing connected mongodb client. Intended for reusing an already established client connection. Opening and Closing client connection will not be handled by the adapter.

func NewFilteredAdapter

func NewFilteredAdapter(url string, opts ...func(*adapter)) persist.FilteredAdapter

NewFilteredAdapter is the constructor for FilteredAdapter. Casbin will not automatically call LoadPolicy() for a filtered adapter.

Types

type CasbinRule

type CasbinRule struct {
	PType string
	V0    string
	V1    string
	V2    string
	V3    string
	V4    string
	V5    string
}

CasbinRule represents a rule in Casbin.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL