Documentation ¶
Index ¶
- type Adapter
- func (a *Adapter) AddPolicy(sec string, ptype string, rule []string) error
- func (a *Adapter) LoadPolicy(model model.Model) error
- func (a *Adapter) RemoveFilteredPolicy(sec string, ptype string, fieldIndex int, fieldValues ...string) error
- func (a *Adapter) RemovePolicy(sec string, ptype string, rule []string) error
- func (a *Adapter) SavePolicy(model model.Model) error
- type CasbinRule
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Adapter ¶
type Adapter struct {
// contains filtered or unexported fields
}
Adapter represents the Redis adapter for policy storage.
func NewAdapter ¶
NewAdapter is the constructor for Adapter.
func NewAdapterWithKey ¶
NewAdapterWithKey is the constructor for Adapter.
func NewAdapterWithPassword ¶
NewAdapterWithPassword is the constructor for Adapter.
func (*Adapter) LoadPolicy ¶
LoadPolicy loads policy from database.
func (*Adapter) RemoveFilteredPolicy ¶
func (a *Adapter) RemoveFilteredPolicy(sec string, ptype string, fieldIndex int, fieldValues ...string) error
RemoveFilteredPolicy removes policy rules that match the filter from the storage.
func (*Adapter) RemovePolicy ¶
RemovePolicy removes a policy rule from the storage.
type CasbinRule ¶
type CasbinRule struct { PType string `xorm:"varchar(100) index"` V0 string `xorm:"varchar(100) index"` V1 string `xorm:"varchar(100) index"` V2 string `xorm:"varchar(100) index"` V3 string `xorm:"varchar(100) index"` V4 string `xorm:"varchar(100) index"` V5 string `xorm:"varchar(100) index"` }
CasbinRule is used to determine which policy line to load.
Click to show internal directories.
Click to hide internal directories.