60 lines
1.8 KiB
Python
60 lines
1.8 KiB
Python
"""Support for tracking the proximity of a device."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.event import (
|
|
async_track_entity_registry_updated_event,
|
|
async_track_state_change_event,
|
|
)
|
|
|
|
from .const import CONF_TRACKED_ENTITIES
|
|
from .coordinator import ProximityConfigEntry, ProximityDataUpdateCoordinator
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ProximityConfigEntry) -> bool:
|
|
"""Set up Proximity from a config entry."""
|
|
_LOGGER.debug("setup %s with config:%s", entry.title, entry.data)
|
|
|
|
coordinator = ProximityDataUpdateCoordinator(hass, entry)
|
|
|
|
entry.async_on_unload(
|
|
async_track_state_change_event(
|
|
hass,
|
|
entry.data[CONF_TRACKED_ENTITIES],
|
|
coordinator.async_check_proximity_state_change,
|
|
)
|
|
)
|
|
|
|
entry.async_on_unload(
|
|
async_track_entity_registry_updated_event(
|
|
hass,
|
|
entry.data[CONF_TRACKED_ENTITIES],
|
|
coordinator.async_check_tracked_entity_change,
|
|
)
|
|
)
|
|
|
|
await coordinator.async_config_entry_first_refresh()
|
|
entry.runtime_data = coordinator
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, [Platform.SENSOR])
|
|
entry.async_on_unload(entry.add_update_listener(_async_update_listener))
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ProximityConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
return await hass.config_entries.async_unload_platforms(entry, [Platform.SENSOR])
|
|
|
|
|
|
async def _async_update_listener(
|
|
hass: HomeAssistant, entry: ProximityConfigEntry
|
|
) -> None:
|
|
"""Handle options update."""
|
|
await hass.config_entries.async_reload(entry.entry_id)
|