Documentation
¶
Index ¶
- type Adapter
- func NewAdapter(config *Config) (*Adapter, error)
- func NewAdapterBasic(network string, address string) (*Adapter, error)
- func NewAdapterWithKey(network string, address string, key string) (*Adapter, error)
- func NewAdapterWithOption(options ...Option) (*Adapter, error)
- func NewAdapterWithPassword(network string, address string, password string) (*Adapter, error)
- func NewAdapterWithPool(pool *redis.Pool) (*Adapter, error)
- func NewAdapterWithPoolAndOptions(pool *redis.Pool, options ...Option) (*Adapter, error)
- func NewAdapterWithUser(network string, address string, username string, password string) (*Adapter, error)
- func (a *Adapter) AddPolicies(sec string, ptype string, rules [][]string) error
- func (a *Adapter) AddPolicy(sec string, ptype string, rule []string) error
- func (a *Adapter) IsFiltered() bool
- func (a *Adapter) LoadFilteredPolicy(model model.Model, filter interface{}) 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) RemovePolicies(sec string, ptype string, rules [][]string) error
- func (a *Adapter) RemovePolicy(sec string, ptype string, rule []string) error
- func (a *Adapter) SavePolicy(model model.Model) error
- func (a *Adapter) UpdateFilteredPolicies(sec string, ptype string, newPolicies [][]string, fieldIndex int, ...) ([][]string, error)
- func (a *Adapter) UpdatePolicies(sec string, ptype string, oldRules, newRules [][]string) error
- func (a *Adapter) UpdatePolicy(sec string, ptype string, oldRule, newPolicy []string) error
- type CasbinRule
- type Config
- type Filter
- type Option
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 creates a new Redis adapter with the provided configuration.
func NewAdapterBasic ¶ added in v3.6.0
NewAdapterBasic is the basic constructor for Adapter. Deprecated: Use NewAdapter with Config struct instead.
func NewAdapterWithKey ¶
NewAdapterWithKey creates adapter with custom key. Deprecated: Use NewAdapter with Config struct instead.
func NewAdapterWithOption ¶
NewAdapterWithOption creates adapter with options pattern. Deprecated: Use NewAdapter with Config struct instead.
func NewAdapterWithPassword ¶
NewAdapterWithPassword creates adapter with password authentication. Deprecated: Use NewAdapter with Config struct instead.
func NewAdapterWithPool ¶
NewAdapterWithPool creates adapter with connection pool. Deprecated: Use NewAdapter with Config struct instead.
func NewAdapterWithPoolAndOptions ¶ added in v3.4.0
NewAdapterWithPoolAndOptions creates adapter with pool and options. Deprecated: Use NewAdapter with Config struct instead.
func NewAdapterWithUser ¶
func NewAdapterWithUser(network string, address string, username string, password string) (*Adapter, error)
NewAdapterWithUser creates adapter with user credentials. Deprecated: Use NewAdapter with Config struct instead.
func (*Adapter) AddPolicies ¶
AddPolicies adds policy rules to the storage.
func (*Adapter) IsFiltered ¶
IsFiltered returns true if the loaded policy has been filtered.
func (*Adapter) LoadFilteredPolicy ¶
LoadFilteredPolicy loads only policy rules that match the filter.
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) RemovePolicies ¶
RemovePolicies removes policy rules from the storage.
func (*Adapter) RemovePolicy ¶
RemovePolicy removes a policy rule from the storage.
func (*Adapter) SavePolicy ¶
SavePolicy saves policy to database.
func (*Adapter) UpdateFilteredPolicies ¶
func (*Adapter) UpdatePolicies ¶
type CasbinRule ¶
CasbinRule is used to determine which policy line to load.
type Config ¶ added in v3.6.0
type Config struct {
// Network is the network type, e.g., "tcp", "unix"
Network string
// Address is the Redis server address, e.g., "127.0.0.1:6379"
Address string
// Key is the Redis key to store Casbin rules (default: "casbin_rules")
Key string
// Username for Redis authentication (optional)
Username string
// Password for Redis authentication (optional)
Password string
// TLSConfig for secure connections (optional)
TLSConfig *tls.Config
// Pool is an existing Redis connection pool (optional)
// If provided, Network, Address, Username, Password, and TLSConfig are ignored
Pool *redis.Pool
}
Config represents the configuration for the Redis adapter.
type Option ¶
type Option func(*Adapter)