43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
"""iAlarm integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import asyncio
|
|
|
|
from pyialarm import IAlarm
|
|
|
|
from homeassistant.const import CONF_HOST, CONF_PORT, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
|
|
|
from .coordinator import IAlarmConfigEntry, IAlarmDataUpdateCoordinator
|
|
|
|
PLATFORMS = [Platform.ALARM_CONTROL_PANEL]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: IAlarmConfigEntry) -> 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, entry, ialarm, mac)
|
|
await coordinator.async_config_entry_first_refresh()
|
|
|
|
entry.runtime_data = coordinator
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: IAlarmConfigEntry) -> bool:
|
|
"""Unload iAlarm config."""
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|