2021-10-08 09:34:22 +00:00
|
|
|
"""This integration provides support for Stookalert Binary Sensor."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
2020-01-08 20:03:50 +00:00
|
|
|
from datetime import timedelta
|
|
|
|
|
|
|
|
import stookalert
|
|
|
|
import voluptuous as vol
|
|
|
|
|
2020-08-30 16:01:04 +00:00
|
|
|
from homeassistant.components.binary_sensor import (
|
|
|
|
DEVICE_CLASS_SAFETY,
|
|
|
|
PLATFORM_SCHEMA,
|
|
|
|
BinarySensorEntity,
|
|
|
|
)
|
2021-10-08 09:34:22 +00:00
|
|
|
from homeassistant.config_entries import SOURCE_IMPORT, ConfigEntry
|
|
|
|
from homeassistant.const import (
|
|
|
|
ATTR_ATTRIBUTION,
|
|
|
|
ATTR_IDENTIFIERS,
|
|
|
|
ATTR_MANUFACTURER,
|
|
|
|
ATTR_MODEL,
|
|
|
|
ATTR_NAME,
|
|
|
|
CONF_NAME,
|
|
|
|
)
|
|
|
|
from homeassistant.core import HomeAssistant
|
2020-01-08 20:03:50 +00:00
|
|
|
from homeassistant.helpers import config_validation as cv
|
2021-10-08 09:34:22 +00:00
|
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
|
|
|
|
|
|
|
from .const import (
|
|
|
|
ATTR_ENTRY_TYPE,
|
|
|
|
CONF_PROVINCE,
|
|
|
|
DOMAIN,
|
|
|
|
ENTRY_TYPE_SERVICE,
|
|
|
|
LOGGER,
|
|
|
|
PROVINCES,
|
|
|
|
)
|
2020-01-08 20:03:50 +00:00
|
|
|
|
|
|
|
DEFAULT_NAME = "Stookalert"
|
|
|
|
ATTRIBUTION = "Data provided by rivm.nl"
|
2021-10-08 09:34:22 +00:00
|
|
|
SCAN_INTERVAL = timedelta(minutes=60)
|
2020-01-08 20:03:50 +00:00
|
|
|
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
|
|
|
|
{
|
|
|
|
vol.Required(CONF_PROVINCE): vol.In(PROVINCES),
|
|
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-10-08 09:34:22 +00:00
|
|
|
async def async_setup_platform(
|
|
|
|
hass: HomeAssistant,
|
|
|
|
config: ConfigType,
|
|
|
|
async_add_entities: AddEntitiesCallback,
|
|
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
|
|
) -> None:
|
|
|
|
"""Import the Stookalert platform into a config entry."""
|
|
|
|
LOGGER.warning(
|
|
|
|
"Configuration of the Stookalert platform in YAML is deprecated and will be "
|
|
|
|
"removed in Home Assistant 2022.1; Your existing configuration "
|
|
|
|
"has been imported into the UI automatically and can be safely removed "
|
|
|
|
"from your configuration.yaml file"
|
|
|
|
)
|
|
|
|
hass.async_create_task(
|
|
|
|
hass.config_entries.flow.async_init(
|
|
|
|
DOMAIN,
|
|
|
|
context={"source": SOURCE_IMPORT},
|
|
|
|
data={
|
|
|
|
CONF_PROVINCE: config[CONF_PROVINCE],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(
|
|
|
|
hass: HomeAssistant,
|
|
|
|
entry: ConfigEntry,
|
|
|
|
async_add_entities: AddEntitiesCallback,
|
|
|
|
) -> None:
|
|
|
|
"""Set up Stookalert binary sensor from a config entry."""
|
|
|
|
client = hass.data[DOMAIN][entry.entry_id]
|
|
|
|
async_add_entities([StookalertBinarySensor(client, entry)], update_before_add=True)
|
2020-01-08 20:03:50 +00:00
|
|
|
|
|
|
|
|
2020-04-23 19:57:07 +00:00
|
|
|
class StookalertBinarySensor(BinarySensorEntity):
|
2021-10-08 09:34:22 +00:00
|
|
|
"""Defines a Stookalert binary sensor."""
|
2020-01-08 20:03:50 +00:00
|
|
|
|
2021-10-08 09:34:22 +00:00
|
|
|
_attr_device_class = DEVICE_CLASS_SAFETY
|
2020-01-08 20:03:50 +00:00
|
|
|
|
2021-10-08 09:34:22 +00:00
|
|
|
def __init__(self, client: stookalert.stookalert, entry: ConfigEntry) -> None:
|
|
|
|
"""Initialize a Stookalert device."""
|
|
|
|
self._client = client
|
|
|
|
self._attr_extra_state_attributes = {ATTR_ATTRIBUTION: ATTRIBUTION}
|
|
|
|
self._attr_name = f"Stookalert {entry.data[CONF_PROVINCE]}"
|
|
|
|
self._attr_unique_id = entry.unique_id
|
|
|
|
self._attr_device_info = {
|
|
|
|
ATTR_IDENTIFIERS: {(DOMAIN, f"{entry.entry_id}")},
|
|
|
|
ATTR_NAME: entry.data[CONF_PROVINCE],
|
|
|
|
ATTR_MANUFACTURER: "RIVM",
|
|
|
|
ATTR_MODEL: "Stookalert",
|
|
|
|
ATTR_ENTRY_TYPE: ENTRY_TYPE_SERVICE,
|
|
|
|
}
|
|
|
|
|
|
|
|
def update(self) -> None:
|
2020-01-08 20:03:50 +00:00
|
|
|
"""Update the data from the Stookalert handler."""
|
2021-10-08 09:34:22 +00:00
|
|
|
self._client.get_alerts()
|
|
|
|
self._attr_is_on = self._client.state == 1
|