api

package
v0.0.4 Latest Latest
Warning

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

Go to latest
Published: Apr 24, 2017 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Enforcer

type Enforcer struct {
	// contains filtered or unexported fields
}

Enforcer is the main interface for authorization enforcement and policy management.

func (*Enforcer) AddActionAttributeFunction added in v0.0.4

func (e *Enforcer) AddActionAttributeFunction(function func(args ...interface{}) (interface{}, error))

Add the function that gets attributes for a object in ABAC.

func (*Enforcer) AddGroupingPolicy

func (e *Enforcer) AddGroupingPolicy(policy []string)

Add a role inheritance rule to the current policy.

func (*Enforcer) AddObjectAttributeFunction

func (e *Enforcer) AddObjectAttributeFunction(function func(args ...interface{}) (interface{}, error))

Add the function that gets attributes for a object in ABAC.

func (*Enforcer) AddPermissionForUser added in v0.0.4

func (e *Enforcer) AddPermissionForUser(user string, permission string)

Add a permission for a user or role.

func (*Enforcer) AddPolicy

func (e *Enforcer) AddPolicy(policy []string)

Add an authorization rule to the current policy.

func (*Enforcer) AddRoleForUser added in v0.0.4

func (e *Enforcer) AddRoleForUser(user string, role string)

Add a role for a user.

func (*Enforcer) AddSubjectAttributeFunction

func (e *Enforcer) AddSubjectAttributeFunction(function func(args ...interface{}) (interface{}, error))

Add the function that gets attributes for a subject in ABAC.

func (*Enforcer) ClearPolicy

func (e *Enforcer) ClearPolicy()

Clear all policy.

func (*Enforcer) DeletePermission added in v0.0.4

func (e *Enforcer) DeletePermission(permission string)

Delete a permission.

func (*Enforcer) DeletePermissionsForUser added in v0.0.4

func (e *Enforcer) DeletePermissionsForUser(user string)

Delete permissions for a user or role.

func (*Enforcer) DeleteRole added in v0.0.4

func (e *Enforcer) DeleteRole(role string)

Delete a role.

func (*Enforcer) DeleteRolesForUser added in v0.0.4

func (e *Enforcer) DeleteRolesForUser(user string)

Delete all roles for a user.

func (*Enforcer) DeleteUser added in v0.0.4

func (e *Enforcer) DeleteUser(user string)

Delete a user.

func (*Enforcer) Enable

func (e *Enforcer) Enable(enable bool)

Change the enforcing state of casbin, when casbin is disabled, all access will be allowed by the Enforce() function.

func (*Enforcer) Enforce

func (e *Enforcer) Enforce(rvals ...string) bool

Decide whether a "subject" can access a "object" with the operation "action", input parameters are usually: (sub, obj, act).

func (*Enforcer) GetAllActions

func (e *Enforcer) GetAllActions() []string

Get the list of actions that show up in the current policy.

func (*Enforcer) GetAllObjects

func (e *Enforcer) GetAllObjects() []string

Get the list of objects that show up in the current policy.

func (*Enforcer) GetAllRoles

func (e *Enforcer) GetAllRoles() []string

Get the list of roles that show up in the current policy.

func (*Enforcer) GetAllSubjects

func (e *Enforcer) GetAllSubjects() []string

Get the list of subjects that show up in the current policy.

func (*Enforcer) GetFilteredPolicy

func (e *Enforcer) GetFilteredPolicy(fieldIndex int, fieldValue string) [][]string

Get all the authorization rules in the policy, a field filter can be specified.

func (*Enforcer) GetGroupingPolicy

func (e *Enforcer) GetGroupingPolicy() [][]string

Get all the role inheritance rules in the policy.

func (*Enforcer) GetModel added in v0.0.4

func (e *Enforcer) GetModel() casbin.Model

Get the current model.

func (*Enforcer) GetPermissionsForUser added in v0.0.4

func (e *Enforcer) GetPermissionsForUser(user string) []string

Get permissions for a user or role.

func (*Enforcer) GetPolicy

func (e *Enforcer) GetPolicy() [][]string

Get all the authorization rules in the policy.

func (*Enforcer) GetRolesForUser added in v0.0.4

func (e *Enforcer) GetRolesForUser(name string) []string

Get roles for a user.

func (*Enforcer) InitWithConfig added in v0.0.4

func (e *Enforcer) InitWithConfig(cfgPath string)

Initialize an enforcer with a configuration file, by default is casbin.conf.

func (*Enforcer) InitWithDB

func (e *Enforcer) InitWithDB(modelPath string, driverName string, dataSourceName string)

Initialize an enforcer with a model file and a policy from database.

func (*Enforcer) InitWithFile

func (e *Enforcer) InitWithFile(modelPath string, policyPath string)

Initialize an enforcer with a model file and a policy file.

func (*Enforcer) LoadModel

func (e *Enforcer) LoadModel()

Reload the model from the model CONF file. Because the policy is attached to a model, so the policy is invalidated and needs to be reloaded by calling LoadPolicy().

func (*Enforcer) LoadPolicy

func (e *Enforcer) LoadPolicy()

Reload the policy from file/database.

func (*Enforcer) RemoveFilteredGroupingPolicy added in v0.0.4

func (e *Enforcer) RemoveFilteredGroupingPolicy(fieldIndex int, fieldValue string)

Remove a role inheritance rule from the current policy, a field filter can be specified.

func (*Enforcer) RemoveFilteredPolicy added in v0.0.4

func (e *Enforcer) RemoveFilteredPolicy(fieldIndex int, fieldValue string)

Remove an authorization rule from the current policy, a field filter can be specified.

func (*Enforcer) RemoveGroupingPolicy

func (e *Enforcer) RemoveGroupingPolicy(policy []string)

Remove a role inheritance rule from the current policy.

func (*Enforcer) RemovePolicy

func (e *Enforcer) RemovePolicy(policy []string)

Remove an authorization rule from the current policy.

func (*Enforcer) SavePolicy

func (e *Enforcer) SavePolicy()

Save the current policy (usually after changed with casbin API) back to file/database.

Jump to

Keyboard shortcuts

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