79 lines
2.2 KiB
Python
79 lines
2.2 KiB
Python
"""Binary Sensor platform for FireServiceRota integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.binary_sensor import BinarySensorEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
|
|
from .coordinator import (
|
|
FireServiceConfigEntry,
|
|
FireServiceRotaClient,
|
|
FireServiceUpdateCoordinator,
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: FireServiceConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Set up FireServiceRota binary sensor based on a config entry."""
|
|
|
|
coordinator = entry.runtime_data
|
|
client = coordinator.client
|
|
|
|
async_add_entities([ResponseBinarySensor(coordinator, client, entry)])
|
|
|
|
|
|
class ResponseBinarySensor(
|
|
CoordinatorEntity[FireServiceUpdateCoordinator], BinarySensorEntity
|
|
):
|
|
"""Representation of an FireServiceRota sensor."""
|
|
|
|
_attr_has_entity_name = True
|
|
_attr_translation_key = "duty"
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: FireServiceUpdateCoordinator,
|
|
client: FireServiceRotaClient,
|
|
entry: ConfigEntry,
|
|
) -> None:
|
|
"""Initialize."""
|
|
super().__init__(coordinator)
|
|
self._client = client
|
|
self._attr_unique_id = f"{entry.unique_id}_Duty"
|
|
|
|
@property
|
|
def is_on(self) -> bool | None:
|
|
"""Return the state of the binary sensor."""
|
|
return self._client.on_duty
|
|
|
|
@property
|
|
def extra_state_attributes(self) -> dict[str, Any]:
|
|
"""Return available attributes for binary sensor."""
|
|
attr: dict[str, Any] = {}
|
|
if not self.coordinator.data:
|
|
return attr
|
|
|
|
data = self.coordinator.data
|
|
return {
|
|
key: data[key]
|
|
for key in (
|
|
"start_time",
|
|
"end_time",
|
|
"available",
|
|
"active",
|
|
"assigned_function_ids",
|
|
"skill_ids",
|
|
"type",
|
|
"assigned_function",
|
|
)
|
|
if key in data
|
|
}
|