147 lines
4.4 KiB
Python
147 lines
4.4 KiB
Python
"""Support for Notion binary sensors."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
DEVICE_CLASS_BATTERY,
|
|
DEVICE_CLASS_CONNECTIVITY,
|
|
DEVICE_CLASS_DOOR,
|
|
DEVICE_CLASS_GARAGE_DOOR,
|
|
DEVICE_CLASS_MOISTURE,
|
|
DEVICE_CLASS_SMOKE,
|
|
DEVICE_CLASS_WINDOW,
|
|
BinarySensorEntity,
|
|
BinarySensorEntityDescription,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import NotionEntity
|
|
from .const import (
|
|
DATA_COORDINATOR,
|
|
DOMAIN,
|
|
LOGGER,
|
|
SENSOR_BATTERY,
|
|
SENSOR_DOOR,
|
|
SENSOR_GARAGE_DOOR,
|
|
SENSOR_LEAK,
|
|
SENSOR_MISSING,
|
|
SENSOR_SAFE,
|
|
SENSOR_SLIDING,
|
|
SENSOR_SMOKE_CO,
|
|
SENSOR_WINDOW_HINGED_HORIZONTAL,
|
|
SENSOR_WINDOW_HINGED_VERTICAL,
|
|
)
|
|
|
|
BINARY_SENSOR_DESCRIPTIONS = (
|
|
BinarySensorEntityDescription(
|
|
key=SENSOR_BATTERY,
|
|
name="Low Battery",
|
|
device_class=DEVICE_CLASS_BATTERY,
|
|
),
|
|
BinarySensorEntityDescription(
|
|
key=SENSOR_DOOR,
|
|
name="Door",
|
|
device_class=DEVICE_CLASS_DOOR,
|
|
),
|
|
BinarySensorEntityDescription(
|
|
key=SENSOR_GARAGE_DOOR,
|
|
name="Garage Door",
|
|
device_class=DEVICE_CLASS_GARAGE_DOOR,
|
|
),
|
|
BinarySensorEntityDescription(
|
|
key=SENSOR_LEAK,
|
|
name="Leak Detector",
|
|
device_class=DEVICE_CLASS_MOISTURE,
|
|
),
|
|
BinarySensorEntityDescription(
|
|
key=SENSOR_MISSING,
|
|
name="Missing",
|
|
device_class=DEVICE_CLASS_CONNECTIVITY,
|
|
),
|
|
BinarySensorEntityDescription(
|
|
key=SENSOR_SAFE,
|
|
name="Safe",
|
|
device_class=DEVICE_CLASS_DOOR,
|
|
),
|
|
BinarySensorEntityDescription(
|
|
key=SENSOR_SLIDING,
|
|
name="Sliding Door/Window",
|
|
device_class=DEVICE_CLASS_DOOR,
|
|
),
|
|
BinarySensorEntityDescription(
|
|
key=SENSOR_SMOKE_CO,
|
|
name="Smoke/Carbon Monoxide Detector",
|
|
device_class=DEVICE_CLASS_SMOKE,
|
|
),
|
|
BinarySensorEntityDescription(
|
|
key=SENSOR_WINDOW_HINGED_HORIZONTAL,
|
|
name="Hinged Window",
|
|
device_class=DEVICE_CLASS_WINDOW,
|
|
),
|
|
BinarySensorEntityDescription(
|
|
key=SENSOR_WINDOW_HINGED_VERTICAL,
|
|
name="Hinged Window",
|
|
device_class=DEVICE_CLASS_WINDOW,
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
|
|
) -> None:
|
|
"""Set up Notion sensors based on a config entry."""
|
|
coordinator = hass.data[DOMAIN][DATA_COORDINATOR][entry.entry_id]
|
|
|
|
async_add_entities(
|
|
[
|
|
NotionBinarySensor(
|
|
coordinator,
|
|
task_id,
|
|
sensor["id"],
|
|
sensor["bridge"]["id"],
|
|
sensor["system_id"],
|
|
description,
|
|
)
|
|
for task_id, task in coordinator.data["tasks"].items()
|
|
for description in BINARY_SENSOR_DESCRIPTIONS
|
|
if description.key == task["task_type"]
|
|
and (sensor := coordinator.data["sensors"][task["sensor_id"]])
|
|
]
|
|
)
|
|
|
|
|
|
class NotionBinarySensor(NotionEntity, BinarySensorEntity):
|
|
"""Define a Notion sensor."""
|
|
|
|
@callback
|
|
def _async_update_from_latest_data(self) -> None:
|
|
"""Fetch new state data for the sensor."""
|
|
task = self.coordinator.data["tasks"][self._task_id]
|
|
|
|
if "value" in task["status"]:
|
|
state = task["status"]["value"]
|
|
elif task["status"].get("insights", {}).get("primary"):
|
|
state = task["status"]["insights"]["primary"]["to_state"]
|
|
else:
|
|
LOGGER.warning("Unknown data payload: %s", task["status"])
|
|
state = None
|
|
|
|
if task["task_type"] == SENSOR_BATTERY:
|
|
self._attr_is_on = state == "critical"
|
|
elif task["task_type"] in (
|
|
SENSOR_DOOR,
|
|
SENSOR_GARAGE_DOOR,
|
|
SENSOR_SAFE,
|
|
SENSOR_SLIDING,
|
|
SENSOR_WINDOW_HINGED_HORIZONTAL,
|
|
SENSOR_WINDOW_HINGED_VERTICAL,
|
|
):
|
|
self._attr_is_on = state != "closed"
|
|
elif task["task_type"] == SENSOR_LEAK:
|
|
self._attr_is_on = state != "no_leak"
|
|
elif task["task_type"] == SENSOR_MISSING:
|
|
self._attr_is_on = state == "not_missing"
|
|
elif task["task_type"] == SENSOR_SMOKE_CO:
|
|
self._attr_is_on = state != "no_alarm"
|