mirror of https://github.com/home-assistant/core
52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
"""iAlarm integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import asyncio
|
|
|
|
from pyialarm import IAlarm
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_HOST, CONF_PORT, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
|
|
|
from .const import DATA_COORDINATOR, DOMAIN
|
|
from .coordinator import IAlarmDataUpdateCoordinator
|
|
|
|
PLATFORMS = [Platform.ALARM_CONTROL_PANEL]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Set up iAlarm config."""
|
|
host: str = entry.data[CONF_HOST]
|
|
port: int = entry.data[CONF_PORT]
|
|
ialarm = IAlarm(host, port)
|
|
|
|
try:
|
|
async with asyncio.timeout(10):
|
|
mac = await hass.async_add_executor_job(ialarm.get_mac)
|
|
except (TimeoutError, ConnectionError) as ex:
|
|
raise ConfigEntryNotReady from ex
|
|
|
|
coordinator = IAlarmDataUpdateCoordinator(hass, ialarm, mac)
|
|
await coordinator.async_config_entry_first_refresh()
|
|
|
|
hass.data.setdefault(DOMAIN, {})
|
|
|
|
hass.data[DOMAIN][entry.entry_id] = {
|
|
DATA_COORDINATOR: coordinator,
|
|
}
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Unload iAlarm config."""
|
|
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
|
if unload_ok:
|
|
hass.data[DOMAIN].pop(entry.entry_id)
|
|
return unload_ok
|