mirror of https://github.com/home-assistant/core
70 lines
1.8 KiB
Python
70 lines
1.8 KiB
Python
"""The BleBox devices integration."""
|
|
|
|
import logging
|
|
|
|
from blebox_uniapi.box import Box
|
|
from blebox_uniapi.error import Error
|
|
from blebox_uniapi.session import ApiHost
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import (
|
|
CONF_HOST,
|
|
CONF_PASSWORD,
|
|
CONF_PORT,
|
|
CONF_USERNAME,
|
|
Platform,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
|
|
|
from .const import DEFAULT_SETUP_TIMEOUT
|
|
from .helpers import get_maybe_authenticated_session
|
|
|
|
type BleBoxConfigEntry = ConfigEntry[Box]
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
PLATFORMS = [
|
|
Platform.BINARY_SENSOR,
|
|
Platform.BUTTON,
|
|
Platform.CLIMATE,
|
|
Platform.COVER,
|
|
Platform.LIGHT,
|
|
Platform.SENSOR,
|
|
Platform.SWITCH,
|
|
]
|
|
|
|
PARALLEL_UPDATES = 0
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: BleBoxConfigEntry) -> bool:
|
|
"""Set up BleBox devices from a config entry."""
|
|
host = entry.data[CONF_HOST]
|
|
port = entry.data[CONF_PORT]
|
|
|
|
username = entry.data.get(CONF_USERNAME)
|
|
password = entry.data.get(CONF_PASSWORD)
|
|
|
|
timeout = DEFAULT_SETUP_TIMEOUT
|
|
|
|
websession = get_maybe_authenticated_session(hass, password, username)
|
|
|
|
api_host = ApiHost(host, port, timeout, websession, hass.loop)
|
|
|
|
try:
|
|
product = await Box.async_from_host(api_host)
|
|
except Error as ex:
|
|
_LOGGER.error("Identify failed at %s:%d (%s)", api_host.host, api_host.port, ex)
|
|
raise ConfigEntryNotReady from ex
|
|
|
|
entry.runtime_data = product
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: BleBoxConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|