mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
27 lines
1.0 KiB
Python
27 lines
1.0 KiB
Python
from configparser import SectionProxy
|
|
from typing import Callable, Dict
|
|
|
|
from ..config import Config
|
|
from .authenticator import Authenticator, AuthError, AuthLoadError, AuthSection # noqa: F401
|
|
from .credential_file import CredentialFileAuthenticator, CredentialFileAuthSection
|
|
from .keyring import KeyringAuthenticator, KeyringAuthSection
|
|
from .simple import SimpleAuthenticator, SimpleAuthSection
|
|
from .tfa import TfaAuthenticator
|
|
|
|
AuthConstructor = Callable[[
|
|
str, # Name (without the "auth:" prefix)
|
|
SectionProxy, # Authenticator's section of global config
|
|
Config, # Global config
|
|
], Authenticator]
|
|
|
|
AUTHENTICATORS: Dict[str, AuthConstructor] = {
|
|
"credential-file": lambda n, s, c:
|
|
CredentialFileAuthenticator(n, CredentialFileAuthSection(s)),
|
|
"keyring": lambda n, s, c:
|
|
KeyringAuthenticator(n, KeyringAuthSection(s)),
|
|
"simple": lambda n, s, c:
|
|
SimpleAuthenticator(n, SimpleAuthSection(s)),
|
|
"tfa": lambda n, s, c:
|
|
TfaAuthenticator(n),
|
|
}
|