2021-05-11 00:27:43 +02:00
|
|
|
from configparser import SectionProxy
|
|
|
|
from typing import Callable, Dict
|
|
|
|
|
|
|
|
from ..config import Config
|
2021-05-25 14:21:12 +02:00
|
|
|
from .authenticator import Authenticator, AuthError, AuthSection # noqa: F401
|
2021-05-25 13:32:00 +02:00
|
|
|
from .keyring import KeyringAuthenticator, KeyringAuthSection
|
2021-05-11 00:27:43 +02:00
|
|
|
from .simple import SimpleAuthenticator, SimpleAuthSection
|
2021-05-15 18:27:16 +02:00
|
|
|
from .tfa import TfaAuthenticator
|
2021-05-11 00:27:43 +02:00
|
|
|
|
|
|
|
AuthConstructor = Callable[[
|
|
|
|
str, # Name (without the "auth:" prefix)
|
|
|
|
SectionProxy, # Authenticator's section of global config
|
|
|
|
Config, # Global config
|
|
|
|
], Authenticator]
|
|
|
|
|
|
|
|
AUTHENTICATORS: Dict[str, AuthConstructor] = {
|
2021-05-18 22:43:46 +02:00
|
|
|
"simple": lambda n, s, c:
|
|
|
|
SimpleAuthenticator(n, SimpleAuthSection(s), c),
|
|
|
|
"tfa": lambda n, s, c:
|
|
|
|
TfaAuthenticator(n, AuthSection(s), c),
|
2021-05-23 19:44:12 +02:00
|
|
|
"keyring": lambda n, s, c:
|
|
|
|
KeyringAuthenticator(n, KeyringAuthSection(s), c)
|
2021-05-11 00:27:43 +02:00
|
|
|
}
|