Documentation ¶
Index ¶
- Variables
- type Action
- type ActionRoleMapping
- type Credential
- type CredentialRoleMapping
- type Domain
- type Entity
- type EntityDomainMapping
- type EntityRoleMapping
- type Group
- type GroupRoleMapping
- type ObjectGroupMapping
- type Role
- type Storage
- type StorageImpl
- func (self *StorageImpl) AddActionToRole(ctx context.Context, role_id, action_id string) error
- func (self *StorageImpl) AddEntityToDomain(ctx context.Context, domain_id, entity_id string) error
- func (self *StorageImpl) AddObjectToGroup(ctx context.Context, group_id, object_id string) error
- func (self *StorageImpl) AddRoleToEntity(ctx context.Context, entity_id, role_id string) error
- func (self *StorageImpl) AddRoleToGroup(ctx context.Context, group_id, role_id string) error
- func (self *StorageImpl) AddSubjectToGroup(ctx context.Context, group_id, subject_id string) error
- func (self *StorageImpl) CreateAction(ctx context.Context, act *Action) (*Action, error)
- func (self *StorageImpl) CreateCredential(ctx context.Context, cred *Credential) (*Credential, error)
- func (self *StorageImpl) CreateDomain(ctx context.Context, dom *Domain) (*Domain, error)
- func (self *StorageImpl) CreateEntity(ctx context.Context, ent *Entity) (*Entity, error)
- func (self *StorageImpl) CreateGroup(ctx context.Context, grp *Group) (*Group, error)
- func (self *StorageImpl) CreateRole(ctx context.Context, role *Role) (*Role, error)
- func (self *StorageImpl) CreateToken(ctx context.Context, tkn *Token) (*Token, error)
- func (self *StorageImpl) DeleteAction(ctx context.Context, id string) error
- func (self *StorageImpl) DeleteCredential(ctx context.Context, id string) error
- func (self *StorageImpl) DeleteDomain(ctx context.Context, id string) error
- func (self *StorageImpl) DeleteEntity(ctx context.Context, id string) error
- func (self *StorageImpl) DeleteGroup(ctx context.Context, id string) error
- func (self *StorageImpl) DeleteRole(ctx context.Context, id string) error
- func (self *StorageImpl) DeleteToken(ctx context.Context, id string) error
- func (self *StorageImpl) ExistGroup(ctx context.Context, id string) (bool, error)
- func (self *StorageImpl) GetAction(ctx context.Context, id string) (*Action, error)
- func (self *StorageImpl) GetCredential(ctx context.Context, id string) (*Credential, error)
- func (self *StorageImpl) GetDBConn(ctx context.Context) *gorm.DB
- func (self *StorageImpl) GetDomain(ctx context.Context, id string) (*Domain, error)
- func (self *StorageImpl) GetEntity(ctx context.Context, id string) (*Entity, error)
- func (self *StorageImpl) GetEntityByName(ctx context.Context, name string) (*Entity, error)
- func (self *StorageImpl) GetGroup(ctx context.Context, id string) (*Group, error)
- func (self *StorageImpl) GetRole(ctx context.Context, id string) (*Role, error)
- func (self *StorageImpl) GetRoleWithFullActions(ctx context.Context, id string) (*Role, error)
- func (self *StorageImpl) GetRootDBConn() *gorm.DB
- func (self *StorageImpl) GetToken(ctx context.Context, id string) (*Token, error)
- func (self *StorageImpl) GetTokenByText(ctx context.Context, text string) (*Token, error)
- func (self *StorageImpl) GetViewTokenByText(ctx context.Context, text string) (*Token, error)
- func (self *StorageImpl) Initialize(ctx context.Context) error
- func (self *StorageImpl) IsInitialized(ctx context.Context) (bool, error)
- func (self *StorageImpl) ListActions(ctx context.Context, act *Action) ([]*Action, error)
- func (self *StorageImpl) ListCredentials(ctx context.Context, cred *Credential) ([]*Credential, error)
- func (self *StorageImpl) ListDomains(ctx context.Context, dom *Domain) ([]*Domain, error)
- func (self *StorageImpl) ListEntities(ctx context.Context, ent *Entity) ([]*Entity, error)
- func (self *StorageImpl) ListEntitiesByDomainId(ctx context.Context, id string) ([]*Entity, error)
- func (self *StorageImpl) ListGroups(ctx context.Context, grp *Group) ([]*Group, error)
- func (self *StorageImpl) ListGroupsForObject(ctx context.Context, object_id string) ([]*Group, error)
- func (self *StorageImpl) ListGroupsForSubject(ctx context.Context, subject_id string) ([]*Group, error)
- func (self *StorageImpl) ListRoles(ctx context.Context, role *Role) ([]*Role, error)
- func (self *StorageImpl) ListTokens(ctx context.Context, tkn *Token) ([]*Token, error)
- func (self *StorageImpl) ObjectExistsInGroup(ctx context.Context, object_id, group_id string) (bool, error)
- func (self *StorageImpl) PatchAction(ctx context.Context, id string, action *Action) (*Action, error)
- func (self *StorageImpl) PatchCredential(ctx context.Context, id string, credential *Credential) (*Credential, error)
- func (self *StorageImpl) PatchDomain(ctx context.Context, id string, domain *Domain) (*Domain, error)
- func (self *StorageImpl) PatchEntity(ctx context.Context, id string, entity *Entity) (*Entity, error)
- func (self *StorageImpl) PatchGroup(ctx context.Context, id string, group *Group) (*Group, error)
- func (self *StorageImpl) PatchRole(ctx context.Context, id string, role *Role) (*Role, error)
- func (self *StorageImpl) RefreshToken(ctx context.Context, id string, expires_at time.Time) error
- func (self *StorageImpl) RemoveActionFromRole(ctx context.Context, role_id, action_id string) error
- func (self *StorageImpl) RemoveEntityFromDomain(ctx context.Context, domain_id, entity_id string) error
- func (self *StorageImpl) RemoveObjectFromGroup(ctx context.Context, group_id, object_id string) error
- func (self *StorageImpl) RemoveRoleFromEntity(ctx context.Context, entity_id, role_id string) error
- func (self *StorageImpl) RemoveRoleFromGroup(ctx context.Context, group_id, role_id string) error
- func (self *StorageImpl) RemoveSubjectFromGroup(ctx context.Context, group_id, subject_id string) error
- func (self *StorageImpl) SubjectExistsInGroup(ctx context.Context, subject_id, group_id string) (bool, error)
- type StorageImplOption
- type SubjectGroupMapping
- type SystemConfig
- type Token
- type TracedStorage
- func (s *TracedStorage) AddActionToRole(ctx context.Context, role_id, action_id string) error
- func (s *TracedStorage) AddEntityToDomain(ctx context.Context, domain_id, entity_id string) error
- func (s *TracedStorage) AddObjectToGroup(ctx context.Context, group_id, object_id string) error
- func (s *TracedStorage) AddRoleToEntity(ctx context.Context, entity_id, role_id string) error
- func (s *TracedStorage) AddRoleToGroup(ctx context.Context, group_id, role_id string) error
- func (s *TracedStorage) AddSubjectToGroup(ctx context.Context, group_id, subject_id string) error
- func (s *TracedStorage) CreateAction(ctx context.Context, act *Action) (*Action, error)
- func (s *TracedStorage) CreateCredential(ctx context.Context, cred *Credential) (*Credential, error)
- func (s *TracedStorage) CreateDomain(ctx context.Context, dom *Domain) (*Domain, error)
- func (s *TracedStorage) CreateEntity(ctx context.Context, ent *Entity) (*Entity, error)
- func (s *TracedStorage) CreateGroup(ctx context.Context, grp *Group) (*Group, error)
- func (s *TracedStorage) CreateRole(ctx context.Context, rol *Role) (*Role, error)
- func (s *TracedStorage) CreateToken(ctx context.Context, tkn *Token) (*Token, error)
- func (s *TracedStorage) DeleteAction(ctx context.Context, id string) error
- func (s *TracedStorage) DeleteCredential(ctx context.Context, id string) error
- func (s *TracedStorage) DeleteDomain(ctx context.Context, id string) error
- func (s *TracedStorage) DeleteEntity(ctx context.Context, id string) error
- func (s *TracedStorage) DeleteGroup(ctx context.Context, id string) error
- func (s *TracedStorage) DeleteRole(ctx context.Context, id string) error
- func (s *TracedStorage) DeleteToken(ctx context.Context, id string) error
- func (s *TracedStorage) ExistGroup(ctx context.Context, id string) (bool, error)
- func (s *TracedStorage) GetAction(ctx context.Context, id string) (*Action, error)
- func (s *TracedStorage) GetCredential(ctx context.Context, id string) (*Credential, error)
- func (s *TracedStorage) GetDomain(ctx context.Context, id string) (*Domain, error)
- func (s *TracedStorage) GetEntity(ctx context.Context, id string) (*Entity, error)
- func (s *TracedStorage) GetEntityByName(ctx context.Context, name string) (*Entity, error)
- func (s *TracedStorage) GetGroup(ctx context.Context, id string) (*Group, error)
- func (s *TracedStorage) GetRole(ctx context.Context, id string) (*Role, error)
- func (s *TracedStorage) GetRoleWithFullActions(ctx context.Context, id string) (*Role, error)
- func (s *TracedStorage) GetToken(ctx context.Context, id string) (*Token, error)
- func (s *TracedStorage) GetTokenByText(ctx context.Context, text string) (*Token, error)
- func (s *TracedStorage) GetViewTokenByText(ctx context.Context, text string) (*Token, error)
- func (s *TracedStorage) Initialize(ctx context.Context) error
- func (s *TracedStorage) IsInitialized(ctx context.Context) (bool, error)
- func (s *TracedStorage) ListActions(ctx context.Context, act *Action) ([]*Action, error)
- func (s *TracedStorage) ListCredentials(ctx context.Context, cred *Credential) ([]*Credential, error)
- func (s *TracedStorage) ListDomains(ctx context.Context, dom *Domain) ([]*Domain, error)
- func (s *TracedStorage) ListEntities(ctx context.Context, ent *Entity) ([]*Entity, error)
- func (s *TracedStorage) ListEntitiesByDomainId(ctx context.Context, dom_id string) ([]*Entity, error)
- func (s *TracedStorage) ListGroups(ctx context.Context, grp *Group) ([]*Group, error)
- func (s *TracedStorage) ListGroupsForObject(ctx context.Context, object_id string) ([]*Group, error)
- func (s *TracedStorage) ListGroupsForSubject(ctx context.Context, subject_id string) ([]*Group, error)
- func (s *TracedStorage) ListRoles(ctx context.Context, rol *Role) ([]*Role, error)
- func (s *TracedStorage) ListTokens(ctx context.Context, tkn *Token) ([]*Token, error)
- func (s *TracedStorage) ObjectExistsInGroup(ctx context.Context, object_id, group_id string) (bool, error)
- func (s *TracedStorage) PatchAction(ctx context.Context, id string, action *Action) (*Action, error)
- func (s *TracedStorage) PatchCredential(ctx context.Context, id string, cred *Credential) (*Credential, error)
- func (s *TracedStorage) PatchDomain(ctx context.Context, id string, domain *Domain) (*Domain, error)
- func (s *TracedStorage) PatchEntity(ctx context.Context, id string, entity *Entity) (*Entity, error)
- func (s *TracedStorage) PatchGroup(ctx context.Context, id string, group *Group) (*Group, error)
- func (s *TracedStorage) PatchRole(ctx context.Context, id string, role *Role) (*Role, error)
- func (s *TracedStorage) RefreshToken(ctx context.Context, id string, expires_at time.Time) error
- func (s *TracedStorage) RemoveActionFromRole(ctx context.Context, role_id, action_id string) error
- func (s *TracedStorage) RemoveEntityFromDomain(ctx context.Context, domain_id, entity_id string) error
- func (s *TracedStorage) RemoveObjectFromGroup(ctx context.Context, group_id, object_id string) error
- func (s *TracedStorage) RemoveRoleFromEntity(ctx context.Context, entity_id, role_id string) error
- func (s *TracedStorage) RemoveRoleFromGroup(ctx context.Context, group_id, role_id string) error
- func (s *TracedStorage) RemoveSubjectFromGroup(ctx context.Context, group_id, subject_id string) error
- func (s *TracedStorage) SubjectExistsInGroup(ctx context.Context, subject_id, group_id string) (bool, error)
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrInitialized = errors.New("system initialized") InvalidArgument = errors.New("invalid argument") )
View Source
var (
SYSTEM_CONFIG_INITIALIZE = "init"
)
Functions ¶
This section is empty.
Types ¶
type ActionRoleMapping ¶
type Credential ¶
type Credential struct { Id *string CreatedAt time.Time UpdatedAt time.Time DomainId *string `gorm:"column:domain_id"` EntityId *string `gorm:"column:entity_id"` Name *string `gorm:"column:name"` Alias *string `gorm:"column:alias"` Secret *string `gorm:"column:secret"` Description *string `gorm:"column:description"` ExpiresAt *time.Time `gorm:"column:expires_at"` Domain *Domain `gorm:"-"` Entity *Entity `gorm:"-"` Roles []*Role `gorm:"-"` }
type CredentialRoleMapping ¶
type Domain ¶
type Domain struct { Id *string CreatedAt time.Time UpdatedAt time.Time Name *string `gorm:"column:name"` Alias *string `gorm:"column:alias"` ParentId *string `gorm:"column:parent_id"` Extra *string `gorm:"extra"` Parent *Domain `gorm:"-"` Children []*Domain `gorm:"-"` ExtraHelper map[string]string `gorm:"-"` }
type Entity ¶
type Entity struct { Id *string CreatedAt time.Time UpdatedAt time.Time Name *string `gorm:"column:name"` Alias *string `gorm:"column:alias"` Password *string `gorm:"column:password"` Extra *string `gorm:"column:extra"` Domains []*Domain `gorm:"-"` Groups []*Group `gorm:"-"` Roles []*Role `gorm:"-"` ExtraHelper map[string]string `gorm:"-"` }
type EntityDomainMapping ¶
type EntityRoleMapping ¶
type Group ¶
type Group struct { Id *string CreatedAt time.Time UpdatedAt time.Time DomainId *string `gorm:"column:domain_id"` Name *string `gorm:"column:name"` Alias *string `gorm:"column:alias"` Description *string `gorm:"column:description"` Extra *string `gorm:"column:extra"` Domain *Domain `gorm:"-"` Subjects []*Entity `gorm:"-"` Objects []*Entity `gorm:"-"` Roles []*Role `gorm:"-"` ExtraHelper map[string]string `gorm:"-"` }
type GroupRoleMapping ¶
type ObjectGroupMapping ¶
type Storage ¶
type Storage interface { IsInitialized(context.Context) (bool, error) Initialize(context.Context) error CreateDomain(context.Context, *Domain) (*Domain, error) DeleteDomain(ctx context.Context, id string) error PatchDomain(ctx context.Context, id string, domain *Domain) (*Domain, error) GetDomain(ctx context.Context, id string) (*Domain, error) ListDomains(context.Context, *Domain) ([]*Domain, error) AddEntityToDomain(ctx context.Context, domain_id, entity_id string) error RemoveEntityFromDomain(ctx context.Context, domain_id, entity_id string) error CreateAction(context.Context, *Action) (*Action, error) DeleteAction(ctx context.Context, id string) error PatchAction(ctx context.Context, id string, action *Action) (*Action, error) GetAction(ctx context.Context, id string) (*Action, error) ListActions(context.Context, *Action) ([]*Action, error) CreateRole(context.Context, *Role) (*Role, error) DeleteRole(ctx context.Context, id string) error PatchRole(ctx context.Context, id string, role *Role) (*Role, error) GetRole(ctx context.Context, id string) (*Role, error) GetRoleWithFullActions(ctx context.Context, id string) (*Role, error) ListRoles(context.Context, *Role) ([]*Role, error) AddActionToRole(ctx context.Context, role_id, action_id string) error RemoveActionFromRole(ctx context.Context, role_id, action_id string) error CreateEntity(context.Context, *Entity) (*Entity, error) DeleteEntity(ctx context.Context, id string) error PatchEntity(ctx context.Context, id string, entity *Entity) (*Entity, error) GetEntity(ctx context.Context, id string) (*Entity, error) GetEntityByName(ctx context.Context, name string) (*Entity, error) ListEntities(context.Context, *Entity) ([]*Entity, error) ListEntitiesByDomainId(ctx context.Context, dom_id string) ([]*Entity, error) AddRoleToEntity(ctx context.Context, entity_id, role_id string) error RemoveRoleFromEntity(ctx context.Context, entity_id, role_id string) error CreateGroup(context.Context, *Group) (*Group, error) DeleteGroup(ctx context.Context, id string) error PatchGroup(ctx context.Context, id string, group *Group) (*Group, error) GetGroup(ctx context.Context, id string) (*Group, error) ExistGroup(ctx context.Context, id string) (bool, error) ListGroups(context.Context, *Group) ([]*Group, error) AddRoleToGroup(ctx context.Context, group_id, role_id string) error RemoveRoleFromGroup(ctx context.Context, group_id, role_id string) error AddSubjectToGroup(ctx context.Context, group_id, subject_id string) error RemoveSubjectFromGroup(ctx context.Context, group_id, subject_id string) error SubjectExistsInGroup(ctx context.Context, subject_id, group_id string) (bool, error) AddObjectToGroup(ctx context.Context, group_id, object_id string) error RemoveObjectFromGroup(ctx context.Context, group_id, object_id string) error ObjectExistsInGroup(ctx context.Context, object_id, group_id string) (bool, error) ListGroupsForSubject(ctx context.Context, subject_id string) ([]*Group, error) ListGroupsForObject(ctx context.Context, object_id string) ([]*Group, error) CreateCredential(context.Context, *Credential) (*Credential, error) DeleteCredential(ctx context.Context, id string) error PatchCredential(ctx context.Context, id string, credential *Credential) (*Credential, error) GetCredential(ctx context.Context, id string) (*Credential, error) ListCredentials(context.Context, *Credential) ([]*Credential, error) CreateToken(context.Context, *Token) (*Token, error) DeleteToken(ctx context.Context, id string) error RefreshToken(ctx context.Context, id string, expires_at time.Time) error GetTokenByText(ctx context.Context, text string) (*Token, error) GetViewTokenByText(ctx context.Context, text string) (*Token, error) GetToken(ctx context.Context, id string) (*Token, error) ListTokens(context.Context, *Token) ([]*Token, error) }
func NewStorage ¶
func NewStorageImpl ¶
func NewTracedStorage ¶ added in v1.1.18
func NewTracedStorage(s *StorageImpl) (Storage, error)
type StorageImpl ¶
type StorageImpl struct {
// contains filtered or unexported fields
}
func (*StorageImpl) AddActionToRole ¶
func (self *StorageImpl) AddActionToRole(ctx context.Context, role_id, action_id string) error
func (*StorageImpl) AddEntityToDomain ¶
func (self *StorageImpl) AddEntityToDomain(ctx context.Context, domain_id, entity_id string) error
func (*StorageImpl) AddObjectToGroup ¶
func (self *StorageImpl) AddObjectToGroup(ctx context.Context, group_id, object_id string) error
func (*StorageImpl) AddRoleToEntity ¶
func (self *StorageImpl) AddRoleToEntity(ctx context.Context, entity_id, role_id string) error
func (*StorageImpl) AddRoleToGroup ¶
func (self *StorageImpl) AddRoleToGroup(ctx context.Context, group_id, role_id string) error
func (*StorageImpl) AddSubjectToGroup ¶
func (self *StorageImpl) AddSubjectToGroup(ctx context.Context, group_id, subject_id string) error
func (*StorageImpl) CreateAction ¶
func (*StorageImpl) CreateCredential ¶
func (self *StorageImpl) CreateCredential(ctx context.Context, cred *Credential) (*Credential, error)
func (*StorageImpl) CreateDomain ¶
func (*StorageImpl) CreateEntity ¶
func (*StorageImpl) CreateGroup ¶
func (*StorageImpl) CreateRole ¶
func (*StorageImpl) CreateToken ¶
func (*StorageImpl) DeleteAction ¶
func (self *StorageImpl) DeleteAction(ctx context.Context, id string) error
func (*StorageImpl) DeleteCredential ¶
func (self *StorageImpl) DeleteCredential(ctx context.Context, id string) error
func (*StorageImpl) DeleteDomain ¶
func (self *StorageImpl) DeleteDomain(ctx context.Context, id string) error
func (*StorageImpl) DeleteEntity ¶
func (self *StorageImpl) DeleteEntity(ctx context.Context, id string) error
func (*StorageImpl) DeleteGroup ¶
func (self *StorageImpl) DeleteGroup(ctx context.Context, id string) error
func (*StorageImpl) DeleteRole ¶
func (self *StorageImpl) DeleteRole(ctx context.Context, id string) error
func (*StorageImpl) DeleteToken ¶
func (self *StorageImpl) DeleteToken(ctx context.Context, id string) error
func (*StorageImpl) ExistGroup ¶
func (*StorageImpl) GetCredential ¶
func (self *StorageImpl) GetCredential(ctx context.Context, id string) (*Credential, error)
func (*StorageImpl) GetDBConn ¶ added in v1.1.18
func (self *StorageImpl) GetDBConn(ctx context.Context) *gorm.DB
func (*StorageImpl) GetEntityByName ¶
func (*StorageImpl) GetRoleWithFullActions ¶
func (*StorageImpl) GetRootDBConn ¶ added in v1.1.18
func (self *StorageImpl) GetRootDBConn() *gorm.DB
func (*StorageImpl) GetTokenByText ¶
func (*StorageImpl) GetViewTokenByText ¶ added in v1.2.6
func (*StorageImpl) Initialize ¶
func (self *StorageImpl) Initialize(ctx context.Context) error
func (*StorageImpl) IsInitialized ¶
func (self *StorageImpl) IsInitialized(ctx context.Context) (bool, error)
func (*StorageImpl) ListActions ¶
func (*StorageImpl) ListCredentials ¶
func (self *StorageImpl) ListCredentials(ctx context.Context, cred *Credential) ([]*Credential, error)
func (*StorageImpl) ListDomains ¶
func (*StorageImpl) ListEntities ¶
func (*StorageImpl) ListEntitiesByDomainId ¶
func (*StorageImpl) ListGroups ¶
func (*StorageImpl) ListGroupsForObject ¶
func (*StorageImpl) ListGroupsForSubject ¶
func (*StorageImpl) ListTokens ¶
func (*StorageImpl) ObjectExistsInGroup ¶
func (*StorageImpl) PatchAction ¶
func (*StorageImpl) PatchCredential ¶
func (self *StorageImpl) PatchCredential(ctx context.Context, id string, credential *Credential) (*Credential, error)
func (*StorageImpl) PatchDomain ¶
func (*StorageImpl) PatchEntity ¶
func (*StorageImpl) PatchGroup ¶
func (*StorageImpl) RefreshToken ¶
func (*StorageImpl) RemoveActionFromRole ¶
func (self *StorageImpl) RemoveActionFromRole(ctx context.Context, role_id, action_id string) error
func (*StorageImpl) RemoveEntityFromDomain ¶
func (self *StorageImpl) RemoveEntityFromDomain(ctx context.Context, domain_id, entity_id string) error
func (*StorageImpl) RemoveObjectFromGroup ¶
func (self *StorageImpl) RemoveObjectFromGroup(ctx context.Context, group_id, object_id string) error
func (*StorageImpl) RemoveRoleFromEntity ¶
func (self *StorageImpl) RemoveRoleFromEntity(ctx context.Context, entity_id, role_id string) error
func (*StorageImpl) RemoveRoleFromGroup ¶
func (self *StorageImpl) RemoveRoleFromGroup(ctx context.Context, group_id, role_id string) error
func (*StorageImpl) RemoveSubjectFromGroup ¶
func (self *StorageImpl) RemoveSubjectFromGroup(ctx context.Context, group_id, subject_id string) error
func (*StorageImpl) SubjectExistsInGroup ¶
type StorageImplOption ¶ added in v1.1.18
type StorageImplOption struct {
IsTraced bool
}
type SubjectGroupMapping ¶
type SystemConfig ¶
type Token ¶
type Token struct { Id *string CreatedAt time.Time UpdatedAt time.Time DomainId *string `gorm:"column:domain_id"` EntityId *string `gorm:"column:entity_id"` CredentialId *string `gorm:"column:credential_id"` IssuedAt *time.Time `gorm:"column:issued_at"` ExpiresAt *time.Time `gorm:"column:expires_at"` ExpiresPeriod *int64 `gorm:"column:expires_period;default:0"` Text *string `gorm:"column:text"` Domain *Domain `gorm:"-"` Entity *Entity `gorm:"-"` Credential *Credential `gorm:"-"` Roles []*Role `gorm:"-"` Groups []*Group `gorm:"-"` }
type TracedStorage ¶ added in v1.1.18
type TracedStorage struct { *opentracing_storage_helper.BaseTracedStorage *StorageImpl }
func (*TracedStorage) AddActionToRole ¶ added in v1.1.18
func (s *TracedStorage) AddActionToRole(ctx context.Context, role_id, action_id string) error
func (*TracedStorage) AddEntityToDomain ¶ added in v1.1.18
func (s *TracedStorage) AddEntityToDomain(ctx context.Context, domain_id, entity_id string) error
func (*TracedStorage) AddObjectToGroup ¶ added in v1.1.18
func (s *TracedStorage) AddObjectToGroup(ctx context.Context, group_id, object_id string) error
func (*TracedStorage) AddRoleToEntity ¶ added in v1.1.18
func (s *TracedStorage) AddRoleToEntity(ctx context.Context, entity_id, role_id string) error
func (*TracedStorage) AddRoleToGroup ¶ added in v1.1.18
func (s *TracedStorage) AddRoleToGroup(ctx context.Context, group_id, role_id string) error
func (*TracedStorage) AddSubjectToGroup ¶ added in v1.1.18
func (s *TracedStorage) AddSubjectToGroup(ctx context.Context, group_id, subject_id string) error
func (*TracedStorage) CreateAction ¶ added in v1.1.18
func (*TracedStorage) CreateCredential ¶ added in v1.1.18
func (s *TracedStorage) CreateCredential(ctx context.Context, cred *Credential) (*Credential, error)
func (*TracedStorage) CreateDomain ¶ added in v1.1.18
func (*TracedStorage) CreateEntity ¶ added in v1.1.18
func (*TracedStorage) CreateGroup ¶ added in v1.1.18
func (*TracedStorage) CreateRole ¶ added in v1.1.18
func (*TracedStorage) CreateToken ¶ added in v1.1.18
func (*TracedStorage) DeleteAction ¶ added in v1.1.18
func (s *TracedStorage) DeleteAction(ctx context.Context, id string) error
func (*TracedStorage) DeleteCredential ¶ added in v1.1.18
func (s *TracedStorage) DeleteCredential(ctx context.Context, id string) error
func (*TracedStorage) DeleteDomain ¶ added in v1.1.18
func (s *TracedStorage) DeleteDomain(ctx context.Context, id string) error
func (*TracedStorage) DeleteEntity ¶ added in v1.1.18
func (s *TracedStorage) DeleteEntity(ctx context.Context, id string) error
func (*TracedStorage) DeleteGroup ¶ added in v1.1.18
func (s *TracedStorage) DeleteGroup(ctx context.Context, id string) error
func (*TracedStorage) DeleteRole ¶ added in v1.1.18
func (s *TracedStorage) DeleteRole(ctx context.Context, id string) error
func (*TracedStorage) DeleteToken ¶ added in v1.1.18
func (s *TracedStorage) DeleteToken(ctx context.Context, id string) error
func (*TracedStorage) ExistGroup ¶ added in v1.1.18
func (*TracedStorage) GetCredential ¶ added in v1.1.18
func (s *TracedStorage) GetCredential(ctx context.Context, id string) (*Credential, error)
func (*TracedStorage) GetEntityByName ¶ added in v1.1.18
func (*TracedStorage) GetRoleWithFullActions ¶ added in v1.1.18
func (*TracedStorage) GetTokenByText ¶ added in v1.1.18
func (*TracedStorage) GetViewTokenByText ¶ added in v1.2.6
func (*TracedStorage) Initialize ¶ added in v1.1.18
func (s *TracedStorage) Initialize(ctx context.Context) error
func (*TracedStorage) IsInitialized ¶ added in v1.1.18
func (s *TracedStorage) IsInitialized(ctx context.Context) (bool, error)
func (*TracedStorage) ListActions ¶ added in v1.1.18
func (*TracedStorage) ListCredentials ¶ added in v1.1.18
func (s *TracedStorage) ListCredentials(ctx context.Context, cred *Credential) ([]*Credential, error)
func (*TracedStorage) ListDomains ¶ added in v1.1.18
func (*TracedStorage) ListEntities ¶ added in v1.1.18
func (*TracedStorage) ListEntitiesByDomainId ¶ added in v1.1.18
func (*TracedStorage) ListGroups ¶ added in v1.1.18
func (*TracedStorage) ListGroupsForObject ¶ added in v1.1.18
func (*TracedStorage) ListGroupsForSubject ¶ added in v1.1.18
func (*TracedStorage) ListTokens ¶ added in v1.1.18
func (*TracedStorage) ObjectExistsInGroup ¶ added in v1.1.18
func (*TracedStorage) PatchAction ¶ added in v1.1.18
func (*TracedStorage) PatchCredential ¶ added in v1.1.18
func (s *TracedStorage) PatchCredential(ctx context.Context, id string, cred *Credential) (*Credential, error)
func (*TracedStorage) PatchDomain ¶ added in v1.1.18
func (*TracedStorage) PatchEntity ¶ added in v1.1.18
func (*TracedStorage) PatchGroup ¶ added in v1.1.18
func (*TracedStorage) RefreshToken ¶ added in v1.1.18
func (*TracedStorage) RemoveActionFromRole ¶ added in v1.1.18
func (s *TracedStorage) RemoveActionFromRole(ctx context.Context, role_id, action_id string) error
func (*TracedStorage) RemoveEntityFromDomain ¶ added in v1.1.18
func (s *TracedStorage) RemoveEntityFromDomain(ctx context.Context, domain_id, entity_id string) error
func (*TracedStorage) RemoveObjectFromGroup ¶ added in v1.1.18
func (s *TracedStorage) RemoveObjectFromGroup(ctx context.Context, group_id, object_id string) error
func (*TracedStorage) RemoveRoleFromEntity ¶ added in v1.1.18
func (s *TracedStorage) RemoveRoleFromEntity(ctx context.Context, entity_id, role_id string) error
func (*TracedStorage) RemoveRoleFromGroup ¶ added in v1.1.18
func (s *TracedStorage) RemoveRoleFromGroup(ctx context.Context, group_id, role_id string) error
func (*TracedStorage) RemoveSubjectFromGroup ¶ added in v1.1.18
func (s *TracedStorage) RemoveSubjectFromGroup(ctx context.Context, group_id, subject_id string) error
func (*TracedStorage) SubjectExistsInGroup ¶ added in v1.1.18
Click to show internal directories.
Click to hide internal directories.