core/homeassistant/components/electrasmart/__init__.py

50 lines
1.6 KiB
Python

"""The Electra Air Conditioner integration."""
from __future__ import annotations
from electrasmart.api import ElectraAPI, ElectraApiError
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import CONF_TOKEN, Platform
from homeassistant.core import HomeAssistant
from homeassistant.exceptions import ConfigEntryNotReady
from homeassistant.helpers.aiohttp_client import async_get_clientsession
from .const import CONF_IMEI
PLATFORMS: list[Platform] = [Platform.CLIMATE]
type ElectraSmartConfigEntry = ConfigEntry[ElectraAPI]
async def async_setup_entry(
hass: HomeAssistant, entry: ElectraSmartConfigEntry
) -> bool:
"""Set up Electra Smart Air Conditioner from a config entry."""
api = ElectraAPI(
async_get_clientsession(hass), entry.data[CONF_IMEI], entry.data[CONF_TOKEN]
)
try:
await api.fetch_devices()
except ElectraApiError as exp:
raise ConfigEntryNotReady(f"Error communicating with API: {exp}") from exp
entry.async_on_unload(entry.add_update_listener(update_listener))
entry.runtime_data = api
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
return True
async def async_unload_entry(
hass: HomeAssistant, entry: ElectraSmartConfigEntry
) -> bool:
"""Unload a config entry."""
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
async def update_listener(
hass: HomeAssistant, config_entry: ElectraSmartConfigEntry
) -> None:
"""Update listener."""
await hass.config_entries.async_reload(config_entry.entry_id)