- Extract rate limiter DRY: consolidate 3 duplicated check/respond paths into _check_counter and _enforce_limit helpers, add proper type annotations - Replace bare Exception raises with FloorplanDownloadError and RightmoveApiError; narrow catch clauses to specific exception types; fix Step base class to inherit from ABC - Consolidate MAX_OCR_WORKERS into config/scraper_config.py; extract _find_tenure_value helper to deduplicate tenure parsing - Extract _build_poi_distances_lookup from stream endpoint to reduce nesting - Fix csv_exporter: optional decisions.json, NaN instead of -1 sentinels, guard against division by zero on missing square meters - Fix notifications.py broken list[Surface]() constructor, database.py stale comments and missing type annotation, auth.py type:ignore, ui_exporter.py stale TODO - Fix 3 pre-existing test failures: mock cache layer in streaming tests, bypass rate limiter for test isolation, fix cache invalidation test to account for two-pattern scan loop
29 lines
695 B
Python
29 lines
695 B
Python
from abc import abstractmethod
|
|
import apprise
|
|
from functools import lru_cache
|
|
import os
|
|
|
|
|
|
class Surface:
|
|
@abstractmethod
|
|
def connection_string(self) -> str | None: ...
|
|
|
|
|
|
class Slack(Surface):
|
|
def connection_string(self) -> str | None:
|
|
return os.environ.get("SLACK_WEBHOOK_URL")
|
|
|
|
|
|
@lru_cache(maxsize=None)
|
|
def get_notifier() -> apprise.Apprise:
|
|
surfaces = [Slack()]
|
|
obj = apprise.Apprise()
|
|
for surface in surfaces:
|
|
if conn := surface.connection_string():
|
|
obj.add(conn)
|
|
return obj
|
|
|
|
|
|
async def send_notification(body: str, title: str = "") -> bool:
|
|
notifier = get_notifier()
|
|
return await notifier.async_notify(body=body, title=title)
|