135 lines
4.0 KiB
Python
135 lines
4.0 KiB
Python
"""Component providing HA sensor support for Ring Door Bell/Chimes."""
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
from datetime import datetime
|
|
from typing import Any
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
BinarySensorDeviceClass,
|
|
BinarySensorEntity,
|
|
BinarySensorEntityDescription,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .const import DOMAIN, RING_API, RING_DEVICES, RING_NOTIFICATIONS_COORDINATOR
|
|
from .coordinator import RingNotificationsCoordinator
|
|
from .entity import RingEntity
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class RingRequiredKeysMixin:
|
|
"""Mixin for required keys."""
|
|
|
|
category: list[str]
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class RingBinarySensorEntityDescription(
|
|
BinarySensorEntityDescription, RingRequiredKeysMixin
|
|
):
|
|
"""Describes Ring binary sensor entity."""
|
|
|
|
|
|
BINARY_SENSOR_TYPES: tuple[RingBinarySensorEntityDescription, ...] = (
|
|
RingBinarySensorEntityDescription(
|
|
key="ding",
|
|
translation_key="ding",
|
|
category=["doorbots", "authorized_doorbots"],
|
|
device_class=BinarySensorDeviceClass.OCCUPANCY,
|
|
),
|
|
RingBinarySensorEntityDescription(
|
|
key="motion",
|
|
category=["doorbots", "authorized_doorbots", "stickup_cams"],
|
|
device_class=BinarySensorDeviceClass.MOTION,
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the Ring binary sensors from a config entry."""
|
|
ring = hass.data[DOMAIN][config_entry.entry_id][RING_API]
|
|
devices = hass.data[DOMAIN][config_entry.entry_id][RING_DEVICES]
|
|
notifications_coordinator: RingNotificationsCoordinator = hass.data[DOMAIN][
|
|
config_entry.entry_id
|
|
][RING_NOTIFICATIONS_COORDINATOR]
|
|
|
|
entities = [
|
|
RingBinarySensor(ring, device, notifications_coordinator, description)
|
|
for device_type in ("doorbots", "authorized_doorbots", "stickup_cams")
|
|
for description in BINARY_SENSOR_TYPES
|
|
if device_type in description.category
|
|
for device in devices[device_type]
|
|
]
|
|
|
|
async_add_entities(entities)
|
|
|
|
|
|
class RingBinarySensor(RingEntity, BinarySensorEntity):
|
|
"""A binary sensor implementation for Ring device."""
|
|
|
|
_active_alert: dict[str, Any] | None = None
|
|
entity_description: RingBinarySensorEntityDescription
|
|
|
|
def __init__(
|
|
self,
|
|
ring,
|
|
device,
|
|
coordinator,
|
|
description: RingBinarySensorEntityDescription,
|
|
) -> None:
|
|
"""Initialize a sensor for Ring device."""
|
|
super().__init__(
|
|
device,
|
|
coordinator,
|
|
)
|
|
self.entity_description = description
|
|
self._ring = ring
|
|
self._attr_unique_id = f"{device.id}-{description.key}"
|
|
self._update_alert()
|
|
|
|
@callback
|
|
def _handle_coordinator_update(self, _=None):
|
|
"""Call update method."""
|
|
self._update_alert()
|
|
super()._handle_coordinator_update()
|
|
|
|
@callback
|
|
def _update_alert(self):
|
|
"""Update active alert."""
|
|
self._active_alert = next(
|
|
(
|
|
alert
|
|
for alert in self._ring.active_alerts()
|
|
if alert["kind"] == self.entity_description.key
|
|
and alert["doorbot_id"] == self._device.id
|
|
),
|
|
None,
|
|
)
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return True if the binary sensor is on."""
|
|
return self._active_alert is not None
|
|
|
|
@property
|
|
def extra_state_attributes(self):
|
|
"""Return the state attributes."""
|
|
attrs = super().extra_state_attributes
|
|
|
|
if self._active_alert is None:
|
|
return attrs
|
|
|
|
attrs["state"] = self._active_alert["state"]
|
|
attrs["expires_at"] = datetime.fromtimestamp(
|
|
self._active_alert.get("now") + self._active_alert.get("expires_in")
|
|
).isoformat()
|
|
|
|
return attrs
|