mirror of https://github.com/home-assistant/core
67 lines
2.1 KiB
Python
67 lines
2.1 KiB
Python
"""The WMS WebControl pro API integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import aiohttp
|
|
from wmspro.webcontrol import WebControlPro
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_HOST, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
|
from homeassistant.helpers import device_registry as dr
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
from homeassistant.helpers.typing import UNDEFINED
|
|
|
|
from .const import DOMAIN, MANUFACTURER
|
|
|
|
PLATFORMS: list[Platform] = [Platform.COVER, Platform.LIGHT, Platform.SCENE]
|
|
|
|
type WebControlProConfigEntry = ConfigEntry[WebControlPro]
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, entry: WebControlProConfigEntry
|
|
) -> bool:
|
|
"""Set up wmspro from a config entry."""
|
|
host = entry.data[CONF_HOST]
|
|
session = async_get_clientsession(hass)
|
|
hub = WebControlPro(host, session)
|
|
|
|
try:
|
|
await hub.ping()
|
|
except aiohttp.ClientError as err:
|
|
raise ConfigEntryNotReady(f"Error while connecting to {host}") from err
|
|
|
|
entry.runtime_data = hub
|
|
|
|
device_registry = dr.async_get(hass)
|
|
device_registry.async_get_or_create(
|
|
config_entry_id=entry.entry_id,
|
|
connections={(dr.CONNECTION_NETWORK_MAC, entry.unique_id)}
|
|
if entry.unique_id
|
|
else UNDEFINED,
|
|
identifiers={(DOMAIN, entry.entry_id)},
|
|
manufacturer=MANUFACTURER,
|
|
model="WMS WebControl pro",
|
|
configuration_url=f"http://{hub.host}/system",
|
|
)
|
|
|
|
try:
|
|
await hub.refresh()
|
|
for dest in hub.dests.values():
|
|
await dest.refresh()
|
|
except aiohttp.ClientError as err:
|
|
raise ConfigEntryNotReady(f"Error while refreshing from {host}") from err
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(
|
|
hass: HomeAssistant, entry: WebControlProConfigEntry
|
|
) -> bool:
|
|
"""Unload a config entry."""
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|