2021-05-05 23:45:10 +02:00
|
|
|
from configparser import SectionProxy
|
|
|
|
from typing import Callable, Dict
|
|
|
|
|
2021-05-13 18:57:20 +02:00
|
|
|
from ..authenticator import Authenticator
|
2021-05-05 23:45:10 +02:00
|
|
|
from ..config import Config
|
2021-05-10 23:50:16 +02:00
|
|
|
from ..crawler import Crawler
|
2021-05-16 13:28:06 +02:00
|
|
|
from .ilias import KitIliasCrawler, KitIliasCrawlerSection
|
2021-05-06 01:02:40 +02:00
|
|
|
from .local import LocalCrawler, LocalCrawlerSection
|
2021-04-29 13:44:29 +02:00
|
|
|
|
2021-05-10 23:50:16 +02:00
|
|
|
CrawlerConstructor = Callable[[
|
2021-05-13 18:57:20 +02:00
|
|
|
str, # Name (without the "crawl:" prefix)
|
|
|
|
SectionProxy, # Crawler's section of global config
|
|
|
|
Config, # Global config
|
|
|
|
Dict[str, Authenticator], # Loaded authenticators by name
|
2021-05-10 23:50:16 +02:00
|
|
|
], Crawler]
|
|
|
|
|
|
|
|
CRAWLERS: Dict[str, CrawlerConstructor] = {
|
2021-05-18 22:43:46 +02:00
|
|
|
"local": lambda n, s, c, a:
|
|
|
|
LocalCrawler(n, LocalCrawlerSection(s), c),
|
|
|
|
"kit-ilias": lambda n, s, c, a:
|
|
|
|
KitIliasCrawler(n, KitIliasCrawlerSection(s), c, a),
|
2021-04-29 13:44:29 +02:00
|
|
|
}
|