Documentation ¶
Index ¶
- type SecurityContext
- func (s *SecurityContext) GetMyProjects() ([]*models.Project, error)
- func (s *SecurityContext) GetProjectRoles(projectIDOrName interface{}) []int
- func (s *SecurityContext) GetUsername() string
- func (s *SecurityContext) HasAllPerm(projectIDOrName interface{}) bool
- func (s *SecurityContext) HasReadPerm(projectIDOrName interface{}) bool
- func (s *SecurityContext) HasWritePerm(projectIDOrName interface{}) bool
- func (s *SecurityContext) IsAuthenticated() bool
- func (s *SecurityContext) IsSolutionUser() bool
- func (s *SecurityContext) IsSysAdmin() bool
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SecurityContext ¶
type SecurityContext struct {
// contains filtered or unexported fields
}
SecurityContext implements security.Context interface based on secret store
func NewSecurityContext ¶
func NewSecurityContext(secret string, store *secret.Store) *SecurityContext
NewSecurityContext ...
func (*SecurityContext) GetMyProjects ¶
func (s *SecurityContext) GetMyProjects() ([]*models.Project, error)
GetMyProjects ...
func (*SecurityContext) GetProjectRoles ¶
func (s *SecurityContext) GetProjectRoles(projectIDOrName interface{}) []int
GetProjectRoles return guest role if has read permission, otherwise return nil
func (*SecurityContext) GetUsername ¶
func (s *SecurityContext) GetUsername() string
GetUsername returns the corresponding username of the secret or null if the secret is invalid
func (*SecurityContext) HasAllPerm ¶
func (s *SecurityContext) HasAllPerm(projectIDOrName interface{}) bool
HasAllPerm always returns false
func (*SecurityContext) HasReadPerm ¶
func (s *SecurityContext) HasReadPerm(projectIDOrName interface{}) bool
HasReadPerm returns true if the corresponding user of the secret is jobservice, otherwise returns false
func (*SecurityContext) HasWritePerm ¶
func (s *SecurityContext) HasWritePerm(projectIDOrName interface{}) bool
HasWritePerm always returns false
func (*SecurityContext) IsAuthenticated ¶
func (s *SecurityContext) IsAuthenticated() bool
IsAuthenticated returns true if the secret is valid
func (*SecurityContext) IsSolutionUser ¶
func (s *SecurityContext) IsSolutionUser() bool
IsSolutionUser ...
func (*SecurityContext) IsSysAdmin ¶
func (s *SecurityContext) IsSysAdmin() bool
IsSysAdmin always returns false
Click to show internal directories.
Click to hide internal directories.