mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
59 lines
2.1 KiB
Python
59 lines
2.1 KiB
Python
from typing import Dict
|
|
|
|
from rich.markup import escape
|
|
|
|
from .authenticator import Authenticator
|
|
from .authenticators import AUTHENTICATORS
|
|
from .config import Config, ConfigOptionError
|
|
from .crawler import Crawler, CrawlError
|
|
from .crawlers import CRAWLERS
|
|
from .logging import log
|
|
|
|
|
|
class Pferd:
|
|
def __init__(self, config: Config):
|
|
"""
|
|
May throw ConfigOptionError.
|
|
"""
|
|
|
|
self._config = config
|
|
self._authenticators: Dict[str, Authenticator] = {}
|
|
self._crawlers: Dict[str, Crawler] = {}
|
|
|
|
self._load_authenticators()
|
|
self._load_crawlers()
|
|
|
|
def _load_authenticators(self) -> None:
|
|
for name, section in self._config.authenticator_sections():
|
|
log.print(f"[bold bright_cyan]Loading[/] {escape(name)}")
|
|
auth_type = section.get("type")
|
|
authenticator_constructor = AUTHENTICATORS.get(auth_type)
|
|
if authenticator_constructor is None:
|
|
raise ConfigOptionError(name, "type", f"Unknown authenticator type: {auth_type!r}")
|
|
|
|
authenticator = authenticator_constructor(name, section, self._config)
|
|
self._authenticators[name] = authenticator
|
|
|
|
def _load_crawlers(self) -> None:
|
|
for name, section in self._config.crawler_sections():
|
|
log.print(f"[bold bright_cyan]Loading[/] {escape(name)}")
|
|
crawl_type = section.get("type")
|
|
crawler_constructor = CRAWLERS.get(crawl_type)
|
|
if crawler_constructor is None:
|
|
raise ConfigOptionError(name, "type", f"Unknown crawler type: {crawl_type!r}")
|
|
|
|
crawler = crawler_constructor(name, section, self._config, self._authenticators)
|
|
self._crawlers[name] = crawler
|
|
|
|
async def run(self) -> None:
|
|
for name, crawler in self._crawlers.items():
|
|
log.print("")
|
|
log.print(f"[bold bright_cyan]Running[/] {escape(name)}")
|
|
|
|
try:
|
|
await crawler.run()
|
|
except CrawlError as e:
|
|
log.error(str(e))
|
|
except Exception:
|
|
log.unexpected_exception()
|