mirror of https://github.com/home-assistant/core
68 lines
2.0 KiB
Python
68 lines
2.0 KiB
Python
"""The loqed integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
import re
|
|
|
|
import aiohttp
|
|
from loqedAPI import loqed
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import LoqedDataCoordinator
|
|
|
|
PLATFORMS: list[str] = [Platform.LOCK, Platform.SENSOR]
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Set up loqed from a config entry."""
|
|
websession = async_get_clientsession(hass)
|
|
host = entry.data["bridge_ip"]
|
|
apiclient = loqed.APIClient(websession, f"http://{host}")
|
|
api = loqed.LoqedAPI(apiclient)
|
|
|
|
try:
|
|
lock = await api.async_get_lock(
|
|
entry.data["lock_key_key"],
|
|
entry.data["bridge_key"],
|
|
int(entry.data["lock_key_local_id"]),
|
|
re.sub(
|
|
r"LOQED-([a-f0-9]+)\.local", r"\1", entry.data["bridge_mdns_hostname"]
|
|
),
|
|
)
|
|
except (
|
|
TimeoutError,
|
|
aiohttp.ClientError,
|
|
) as ex:
|
|
raise ConfigEntryNotReady(f"Unable to connect to bridge at {host}") from ex
|
|
coordinator = LoqedDataCoordinator(hass, api, lock, entry)
|
|
await coordinator.ensure_webhooks()
|
|
|
|
await coordinator.async_config_entry_first_refresh()
|
|
|
|
hass.data.setdefault(DOMAIN, {})[entry.entry_id] = coordinator
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
coordinator: LoqedDataCoordinator = hass.data[DOMAIN][entry.entry_id]
|
|
|
|
if unload_ok := await hass.config_entries.async_unload_platforms(entry, PLATFORMS):
|
|
hass.data[DOMAIN].pop(entry.entry_id)
|
|
|
|
await coordinator.remove_webhooks()
|
|
|
|
return unload_ok
|