Improve auth. provider interface

The authentication provider can now provide multiple authorization
identities associated with credentials. Protocols that support that
(e.g. JMAP, SASL) can let the client select the wanted identity.
This commit is contained in:
fox.cpp 2020-02-27 01:22:47 +03:00
parent 8f1d57293c
commit a45c7090c4
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
11 changed files with 72 additions and 65 deletions

View file

@ -1,7 +1,16 @@
package module
// AuthProvider is the interface implemented by modules providing authentication using
import "errors"
var (
// ErrUnknownCredentials should be returned by auth. provider if supplied
// credentials are valid for it but are not recognized (e.g. not found in
// used DB).
ErrUnknownCredentials = errors.New("unknown credentials")
)
// PlainAuth is the interface implemented by modules providing authentication using
// username:password pairs.
type AuthProvider interface {
CheckPlain(username, password string) bool
type PlainAuth interface {
AuthPlain(username, password string) ([]string, error)
}