2022-09-11 13:45:28 +00:00
|
|
|
package auth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"git.sr.ht/~emersion/soju/database"
|
|
|
|
)
|
|
|
|
|
2022-10-14 08:44:32 +00:00
|
|
|
type Authenticator interface{}
|
|
|
|
|
2022-09-11 13:45:28 +00:00
|
|
|
type PlainAuthenticator interface {
|
|
|
|
AuthPlain(ctx context.Context, db database.Database, username, password string) error
|
|
|
|
}
|
|
|
|
|
2022-10-14 08:44:32 +00:00
|
|
|
type OAuthBearerAuthenticator interface {
|
|
|
|
AuthOAuthBearer(ctx context.Context, db database.Database, token string) (username string, err error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func New(driver, source string) (Authenticator, error) {
|
2022-09-11 13:45:28 +00:00
|
|
|
switch driver {
|
|
|
|
case "internal":
|
|
|
|
return NewInternal(), nil
|
2022-09-11 13:46:27 +00:00
|
|
|
case "oauth2":
|
|
|
|
return newOAuth2(source)
|
2023-01-27 10:44:11 +00:00
|
|
|
case "pam":
|
|
|
|
return newPAM()
|
2022-09-11 13:45:28 +00:00
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("unknown auth driver %q", driver)
|
|
|
|
}
|
|
|
|
}
|