mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
Extract several packages to form a public API
This commit is contained in:
parent
7d497f88f0
commit
bcceec4fe4
170 changed files with 385 additions and 392 deletions
26
framework/module/auth.go
Normal file
26
framework/module/auth.go
Normal file
|
@ -0,0 +1,26 @@
|
|||
package module
|
||||
|
||||
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 PlainAuth interface {
|
||||
AuthPlain(username, password string) error
|
||||
}
|
||||
|
||||
// PlainUserDB is a local credentials store that can be managed using maddyctl
|
||||
// utility.
|
||||
type PlainUserDB interface {
|
||||
PlainAuth
|
||||
ListUsers() ([]string, error)
|
||||
CreateUser(username, password string) error
|
||||
SetUserPassword(username, password string) error
|
||||
DeleteUser(username string) error
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue