2023-01-13 14:18:15 +01:00
|
|
|
"""Handle communication between Frigate and other applications."""
|
2022-11-24 03:03:20 +01:00
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
from typing import Any, Callable
|
|
|
|
|
|
|
|
from abc import ABC, abstractmethod
|
|
|
|
|
|
|
|
from frigate.config import FrigateConfig
|
|
|
|
from frigate.types import CameraMetricsTypes
|
|
|
|
from frigate.util import restart_frigate
|
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class Communicator(ABC):
|
|
|
|
"""pub/sub model via specific protocol."""
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def publish(self, topic: str, payload: Any, retain: bool = False) -> None:
|
|
|
|
"""Send data via specific protocol."""
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def subscribe(self, receiver: Callable) -> None:
|
|
|
|
"""Pass receiver so communicators can pass commands."""
|
|
|
|
pass
|
|
|
|
|
2023-02-04 03:15:47 +01:00
|
|
|
@abstractmethod
|
|
|
|
def stop(self) -> None:
|
|
|
|
"""Stop the communicator."""
|
|
|
|
pass
|
|
|
|
|
2022-11-24 03:03:20 +01:00
|
|
|
|
|
|
|
class Dispatcher:
|
2023-01-13 14:18:15 +01:00
|
|
|
"""Handle communication between Frigate and communicators."""
|
2022-11-24 03:03:20 +01:00
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
config: FrigateConfig,
|
|
|
|
camera_metrics: dict[str, CameraMetricsTypes],
|
|
|
|
communicators: list[Communicator],
|
|
|
|
) -> None:
|
|
|
|
self.config = config
|
|
|
|
self.camera_metrics = camera_metrics
|
|
|
|
self.comms = communicators
|
|
|
|
|
|
|
|
for comm in self.comms:
|
|
|
|
comm.subscribe(self._receive)
|
|
|
|
|
|
|
|
self._camera_settings_handlers: dict[str, Callable] = {
|
|
|
|
"detect": self._on_detect_command,
|
|
|
|
"improve_contrast": self._on_motion_improve_contrast_command,
|
|
|
|
"motion": self._on_motion_command,
|
|
|
|
"motion_contour_area": self._on_motion_contour_area_command,
|
|
|
|
"motion_threshold": self._on_motion_threshold_command,
|
2022-11-29 01:58:41 +01:00
|
|
|
"recordings": self._on_recordings_command,
|
2022-11-24 03:03:20 +01:00
|
|
|
"snapshots": self._on_snapshots_command,
|
|
|
|
}
|
|
|
|
|
|
|
|
def _receive(self, topic: str, payload: str) -> None:
|
|
|
|
"""Handle receiving of payload from communicators."""
|
|
|
|
if topic.endswith("set"):
|
|
|
|
try:
|
|
|
|
camera_name = topic.split("/")[-3]
|
|
|
|
command = topic.split("/")[-2]
|
|
|
|
self._camera_settings_handlers[command](camera_name, payload)
|
|
|
|
except Exception as e:
|
|
|
|
logger.error(f"Received invalid set command: {topic}")
|
|
|
|
return
|
|
|
|
elif topic == "restart":
|
|
|
|
restart_frigate()
|
|
|
|
|
|
|
|
def publish(self, topic: str, payload: Any, retain: bool = False) -> None:
|
|
|
|
"""Handle publishing to communicators."""
|
|
|
|
for comm in self.comms:
|
|
|
|
comm.publish(topic, payload, retain)
|
|
|
|
|
2023-02-04 03:15:47 +01:00
|
|
|
def stop(self) -> None:
|
|
|
|
for comm in self.comms:
|
|
|
|
comm.stop()
|
|
|
|
|
2022-11-24 03:03:20 +01:00
|
|
|
def _on_detect_command(self, camera_name: str, payload: str) -> None:
|
|
|
|
"""Callback for detect topic."""
|
|
|
|
detect_settings = self.config.cameras[camera_name].detect
|
|
|
|
|
|
|
|
if payload == "ON":
|
|
|
|
if not self.camera_metrics[camera_name]["detection_enabled"].value:
|
|
|
|
logger.info(f"Turning on detection for {camera_name}")
|
|
|
|
self.camera_metrics[camera_name]["detection_enabled"].value = True
|
|
|
|
detect_settings.enabled = True
|
|
|
|
|
|
|
|
if not self.camera_metrics[camera_name]["motion_enabled"].value:
|
|
|
|
logger.info(
|
|
|
|
f"Turning on motion for {camera_name} due to detection being enabled."
|
|
|
|
)
|
|
|
|
self.camera_metrics[camera_name]["motion_enabled"].value = True
|
|
|
|
self.publish(f"{camera_name}/motion/state", payload, retain=True)
|
|
|
|
elif payload == "OFF":
|
|
|
|
if self.camera_metrics[camera_name]["detection_enabled"].value:
|
|
|
|
logger.info(f"Turning off detection for {camera_name}")
|
|
|
|
self.camera_metrics[camera_name]["detection_enabled"].value = False
|
|
|
|
detect_settings.enabled = False
|
|
|
|
|
|
|
|
self.publish(f"{camera_name}/detect/state", payload, retain=True)
|
|
|
|
|
|
|
|
def _on_motion_command(self, camera_name: str, payload: str) -> None:
|
|
|
|
"""Callback for motion topic."""
|
|
|
|
if payload == "ON":
|
|
|
|
if not self.camera_metrics[camera_name]["motion_enabled"].value:
|
|
|
|
logger.info(f"Turning on motion for {camera_name}")
|
|
|
|
self.camera_metrics[camera_name]["motion_enabled"].value = True
|
|
|
|
elif payload == "OFF":
|
|
|
|
if self.camera_metrics[camera_name]["detection_enabled"].value:
|
|
|
|
logger.error(
|
|
|
|
f"Turning off motion is not allowed when detection is enabled."
|
|
|
|
)
|
|
|
|
return
|
|
|
|
|
|
|
|
if self.camera_metrics[camera_name]["motion_enabled"].value:
|
|
|
|
logger.info(f"Turning off motion for {camera_name}")
|
|
|
|
self.camera_metrics[camera_name]["motion_enabled"].value = False
|
|
|
|
|
|
|
|
self.publish(f"{camera_name}/motion/state", payload, retain=True)
|
|
|
|
|
|
|
|
def _on_motion_improve_contrast_command(
|
|
|
|
self, camera_name: str, payload: str
|
|
|
|
) -> None:
|
|
|
|
"""Callback for improve_contrast topic."""
|
|
|
|
motion_settings = self.config.cameras[camera_name].motion
|
|
|
|
|
|
|
|
if payload == "ON":
|
|
|
|
if not self.camera_metrics[camera_name]["improve_contrast_enabled"].value:
|
|
|
|
logger.info(f"Turning on improve contrast for {camera_name}")
|
|
|
|
self.camera_metrics[camera_name][
|
|
|
|
"improve_contrast_enabled"
|
|
|
|
].value = True
|
|
|
|
motion_settings.improve_contrast = True # type: ignore[union-attr]
|
|
|
|
elif payload == "OFF":
|
|
|
|
if self.camera_metrics[camera_name]["improve_contrast_enabled"].value:
|
|
|
|
logger.info(f"Turning off improve contrast for {camera_name}")
|
|
|
|
self.camera_metrics[camera_name][
|
|
|
|
"improve_contrast_enabled"
|
|
|
|
].value = False
|
|
|
|
motion_settings.improve_contrast = False # type: ignore[union-attr]
|
|
|
|
|
|
|
|
self.publish(f"{camera_name}/improve_contrast/state", payload, retain=True)
|
|
|
|
|
|
|
|
def _on_motion_contour_area_command(self, camera_name: str, payload: int) -> None:
|
|
|
|
"""Callback for motion contour topic."""
|
|
|
|
try:
|
|
|
|
payload = int(payload)
|
|
|
|
except ValueError:
|
|
|
|
f"Received unsupported value for motion contour area: {payload}"
|
|
|
|
return
|
|
|
|
|
|
|
|
motion_settings = self.config.cameras[camera_name].motion
|
|
|
|
logger.info(f"Setting motion contour area for {camera_name}: {payload}")
|
|
|
|
self.camera_metrics[camera_name]["motion_contour_area"].value = payload
|
|
|
|
motion_settings.contour_area = payload # type: ignore[union-attr]
|
|
|
|
self.publish(f"{camera_name}/motion_contour_area/state", payload, retain=True)
|
|
|
|
|
|
|
|
def _on_motion_threshold_command(self, camera_name: str, payload: int) -> None:
|
|
|
|
"""Callback for motion threshold topic."""
|
|
|
|
try:
|
|
|
|
payload = int(payload)
|
|
|
|
except ValueError:
|
|
|
|
f"Received unsupported value for motion threshold: {payload}"
|
|
|
|
return
|
|
|
|
|
|
|
|
motion_settings = self.config.cameras[camera_name].motion
|
|
|
|
logger.info(f"Setting motion threshold for {camera_name}: {payload}")
|
|
|
|
self.camera_metrics[camera_name]["motion_threshold"].value = payload
|
|
|
|
motion_settings.threshold = payload # type: ignore[union-attr]
|
|
|
|
self.publish(f"{camera_name}/motion_threshold/state", payload, retain=True)
|
|
|
|
|
|
|
|
def _on_recordings_command(self, camera_name: str, payload: str) -> None:
|
|
|
|
"""Callback for recordings topic."""
|
|
|
|
record_settings = self.config.cameras[camera_name].record
|
|
|
|
|
|
|
|
if payload == "ON":
|
|
|
|
if not record_settings.enabled:
|
|
|
|
logger.info(f"Turning on recordings for {camera_name}")
|
|
|
|
record_settings.enabled = True
|
|
|
|
elif payload == "OFF":
|
|
|
|
if record_settings.enabled:
|
|
|
|
logger.info(f"Turning off recordings for {camera_name}")
|
|
|
|
record_settings.enabled = False
|
|
|
|
|
|
|
|
self.publish(f"{camera_name}/recordings/state", payload, retain=True)
|
|
|
|
|
|
|
|
def _on_snapshots_command(self, camera_name: str, payload: str) -> None:
|
|
|
|
"""Callback for snapshots topic."""
|
|
|
|
snapshots_settings = self.config.cameras[camera_name].snapshots
|
|
|
|
|
|
|
|
if payload == "ON":
|
|
|
|
if not snapshots_settings.enabled:
|
|
|
|
logger.info(f"Turning on snapshots for {camera_name}")
|
|
|
|
snapshots_settings.enabled = True
|
|
|
|
elif payload == "OFF":
|
|
|
|
if snapshots_settings.enabled:
|
|
|
|
logger.info(f"Turning off snapshots for {camera_name}")
|
|
|
|
snapshots_settings.enabled = False
|
|
|
|
|
|
|
|
self.publish(f"{camera_name}/snapshots/state", payload, retain=True)
|