95 lines
2.9 KiB
Python
95 lines
2.9 KiB
Python
"""Support for ONVIF binary sensors."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.sensor import SensorEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .base import ONVIFBaseEntity
|
|
from .const import DOMAIN
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up a ONVIF binary sensor."""
|
|
device = hass.data[DOMAIN][config_entry.unique_id]
|
|
|
|
entities = {
|
|
event.uid: ONVIFSensor(event.uid, device)
|
|
for event in device.events.get_platform("sensor")
|
|
}
|
|
|
|
async_add_entities(entities.values())
|
|
|
|
@callback
|
|
def async_check_entities():
|
|
"""Check if we have added an entity for the event."""
|
|
new_entities = []
|
|
for event in device.events.get_platform("sensor"):
|
|
if event.uid not in entities:
|
|
entities[event.uid] = ONVIFSensor(event.uid, device)
|
|
new_entities.append(entities[event.uid])
|
|
async_add_entities(new_entities)
|
|
|
|
device.events.async_add_listener(async_check_entities)
|
|
|
|
return True
|
|
|
|
|
|
class ONVIFSensor(ONVIFBaseEntity, SensorEntity):
|
|
"""Representation of a ONVIF sensor event."""
|
|
|
|
def __init__(self, uid, device):
|
|
"""Initialize the ONVIF binary sensor."""
|
|
self.uid = uid
|
|
|
|
super().__init__(device)
|
|
|
|
@property
|
|
def native_value(self) -> None | str | int | float:
|
|
"""Return the state of the entity."""
|
|
return self.device.events.get_uid(self.uid).value
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the event."""
|
|
return self.device.events.get_uid(self.uid).name
|
|
|
|
@property
|
|
def device_class(self) -> str | None:
|
|
"""Return the class of this device, from component DEVICE_CLASSES."""
|
|
return self.device.events.get_uid(self.uid).device_class
|
|
|
|
@property
|
|
def native_unit_of_measurement(self) -> str | None:
|
|
"""Return the unit of measurement of this entity, if any."""
|
|
return self.device.events.get_uid(self.uid).unit_of_measurement
|
|
|
|
@property
|
|
def unique_id(self) -> str:
|
|
"""Return a unique ID."""
|
|
return self.uid
|
|
|
|
@property
|
|
def entity_registry_enabled_default(self) -> bool:
|
|
"""Return if the entity should be enabled when first added to the entity registry."""
|
|
return self.device.events.get_uid(self.uid).entity_enabled
|
|
|
|
@property
|
|
def should_poll(self) -> bool:
|
|
"""Return True if entity has to be polled for state.
|
|
|
|
False if entity pushes its state to HA.
|
|
"""
|
|
return False
|
|
|
|
async def async_added_to_hass(self):
|
|
"""Connect to dispatcher listening for entity data notifications."""
|
|
self.async_on_remove(
|
|
self.device.events.async_add_listener(self.async_write_ha_state)
|
|
)
|