Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var NoMatch = errors.New("did not match any rule")
View Source
var WrongPass = errors.New("wrong password for user")
Functions ¶
This section is empty.
Types ¶
type AuthRequestInfo ¶
type AuthRequestInfo struct { Account string Type string Name string Service string IP net.IP Actions []string Labels Labels }
func (AuthRequestInfo) String ¶
func (ai AuthRequestInfo) String() string
type Authenticator ¶
type Authenticator interface { // Given a user name and a password (plain text), responds with the result or an error. // Error should only be reported if request could not be serviced, not if it should be denied. // A special NoMatch error is returned if the authorizer could not reach a decision, // e.g. none of the rules matched. // Another special WrongPass error is returned if the authorizer failed to authenticate. // Implementations must be goroutine-safe. Authenticate(user string, password PasswordString) (bool, Labels, error) // Finalize resources in preparation for shutdown. // When this call is made there are guaranteed to be no Authenticate requests in flight // and there will be no more calls made to this instance. Stop() // Human-readable name of the authenticator. Name() string }
Authentication plugin interface.
type Authorizer ¶
type Authorizer interface { // Authorize performs authorization given the request information. // It returns a set of authorized actions (of the set requested), which can be empty/nil. // Error should only be reported if request could not be serviced, not if it should be denied. // A special NoMatch error is returned if the authorizer could not reach a decision, // e.g. none of the rules matched. // Implementations must be goroutine-safe. Authorize(ai *AuthRequestInfo) ([]string, error) // Finalize resources in preparation for shutdown. // When this call is made there are guaranteed to be no Authenticate requests in flight // and there will be no more calls made to this instance. Stop() // Human-readable name of the authenticator. Name() string }
Authorizer interface performs authorization of the request. It is invoked after authentication so it can be assumed that the requestor has presented satisfactory credentials for Account. Principally, it answers the question: is this Account allowed to perform these Actions on this Type.Name subject in the give Service?
type PasswordString ¶
type PasswordString string
func (PasswordString) String ¶
func (ps PasswordString) String() string
Click to show internal directories.
Click to hide internal directories.