core/homeassistant/components/ibeacon/__init__.py

41 lines
1.4 KiB
Python

"""The iBeacon tracker integration."""
from __future__ import annotations
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.helpers import device_registry as dr
from homeassistant.helpers.device_registry import DeviceEntry
from .const import DOMAIN, PLATFORMS
from .coordinator import IBeaconCoordinator
type IBeaconConfigEntry = ConfigEntry[IBeaconCoordinator]
async def async_setup_entry(hass: HomeAssistant, entry: IBeaconConfigEntry) -> bool:
"""Set up Bluetooth LE Tracker from a config entry."""
entry.runtime_data = coordinator = IBeaconCoordinator(
hass, entry, dr.async_get(hass)
)
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
await coordinator.async_start()
return True
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Unload a config entry."""
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
async def async_remove_config_entry_device(
hass: HomeAssistant, config_entry: IBeaconConfigEntry, device_entry: DeviceEntry
) -> bool:
"""Remove iBeacon config entry from a device."""
coordinator = config_entry.runtime_data
return not any(
identifier
for identifier in device_entry.identifiers
if identifier[0] == DOMAIN and coordinator.async_device_id_seen(identifier[1])
)