2021-05-11 00:27:43 +02:00
|
|
|
from configparser import SectionProxy
|
|
|
|
from typing import Callable, Dict
|
|
|
|
|
2021-05-15 18:27:16 +02:00
|
|
|
from ..authenticator import Authenticator, AuthSection
|
2021-05-11 00:27:43 +02:00
|
|
|
from ..config import Config
|
|
|
|
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-11 00:27:43 +02:00
|
|
|
}
|