mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
20 lines
654 B
Python
20 lines
654 B
Python
|
from configparser import SectionProxy
|
||
|
from typing import Callable, Dict
|
||
|
|
||
|
from ..authenticator import Authenticator
|
||
|
from ..conductor import TerminalConductor
|
||
|
from ..config import Config
|
||
|
from .simple import SimpleAuthenticator, SimpleAuthSection
|
||
|
|
||
|
AuthConstructor = Callable[[
|
||
|
str, # Name (without the "auth:" prefix)
|
||
|
SectionProxy, # Authenticator's section of global config
|
||
|
Config, # Global config
|
||
|
TerminalConductor, # Global conductor instance
|
||
|
], Authenticator]
|
||
|
|
||
|
AUTHENTICATORS: Dict[str, AuthConstructor] = {
|
||
|
"simple": lambda n, s, c, t:
|
||
|
SimpleAuthenticator(n, SimpleAuthSection(s), c, t),
|
||
|
}
|