2021-05-04 11:49:16 +00:00
|
|
|
"""The buienradar integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
2021-07-15 06:31:17 +00:00
|
|
|
from homeassistant.config_entries import ConfigEntry
|
2021-12-03 16:51:30 +00:00
|
|
|
from homeassistant.const import Platform
|
2021-05-04 11:49:16 +00:00
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
|
2021-07-15 06:31:17 +00:00
|
|
|
from .const import DOMAIN
|
2021-05-04 11:49:16 +00:00
|
|
|
|
2021-12-03 16:51:30 +00:00
|
|
|
PLATFORMS = [Platform.CAMERA, Platform.SENSOR, Platform.WEATHER]
|
2021-05-04 11:49:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
|
|
"""Set up buienradar from a config entry."""
|
2021-07-15 06:31:17 +00:00
|
|
|
hass.data.setdefault(DOMAIN, {})
|
2021-05-04 11:49:16 +00:00
|
|
|
hass.config_entries.async_setup_platforms(entry, PLATFORMS)
|
|
|
|
entry.async_on_unload(entry.add_update_listener(async_update_options))
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
|
|
"""Unload a config entry."""
|
|
|
|
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
|
|
|
|
|
|
|
return unload_ok
|
|
|
|
|
|
|
|
|
|
|
|
async def async_update_options(hass: HomeAssistant, config_entry: ConfigEntry) -> None:
|
|
|
|
"""Update options."""
|
|
|
|
await hass.config_entries.async_reload(config_entry.entry_id)
|