91 lines
2.4 KiB
Python
91 lines
2.4 KiB
Python
"""The Omnilogic integration."""
|
|
import asyncio
|
|
import logging
|
|
|
|
from omnilogic import LoginException, OmniLogic, OmniLogicException
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
|
from homeassistant.helpers import aiohttp_client
|
|
|
|
from .common import OmniLogicUpdateCoordinator
|
|
from .const import CONF_SCAN_INTERVAL, COORDINATOR, DOMAIN, OMNI_API
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
PLATFORMS = ["sensor"]
|
|
|
|
|
|
async def async_setup(hass: HomeAssistant, config: dict):
|
|
"""Set up the Omnilogic component."""
|
|
hass.data.setdefault(DOMAIN, {})
|
|
|
|
return True
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry):
|
|
"""Set up Omnilogic from a config entry."""
|
|
|
|
conf = entry.data
|
|
username = conf[CONF_USERNAME]
|
|
password = conf[CONF_PASSWORD]
|
|
|
|
polling_interval = 6
|
|
if CONF_SCAN_INTERVAL in conf:
|
|
polling_interval = conf[CONF_SCAN_INTERVAL]
|
|
|
|
session = aiohttp_client.async_get_clientsession(hass)
|
|
|
|
api = OmniLogic(username, password, session)
|
|
|
|
try:
|
|
await api.connect()
|
|
await api.get_telemetry_data()
|
|
except LoginException as error:
|
|
_LOGGER.error("Login Failed: %s", error)
|
|
return False
|
|
except OmniLogicException as error:
|
|
_LOGGER.debug("OmniLogic API error: %s", error)
|
|
raise ConfigEntryNotReady from error
|
|
|
|
coordinator = OmniLogicUpdateCoordinator(
|
|
hass=hass,
|
|
api=api,
|
|
name="Omnilogic",
|
|
polling_interval=polling_interval,
|
|
)
|
|
await coordinator.async_refresh()
|
|
|
|
if not coordinator.last_update_success:
|
|
raise ConfigEntryNotReady
|
|
|
|
hass.data[DOMAIN][entry.entry_id] = {
|
|
COORDINATOR: coordinator,
|
|
OMNI_API: api,
|
|
}
|
|
|
|
for component in PLATFORMS:
|
|
hass.async_create_task(
|
|
hass.config_entries.async_forward_entry_setup(entry, component)
|
|
)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry):
|
|
"""Unload a config entry."""
|
|
unload_ok = all(
|
|
await asyncio.gather(
|
|
*[
|
|
hass.config_entries.async_forward_entry_unload(entry, component)
|
|
for component in PLATFORMS
|
|
]
|
|
)
|
|
)
|
|
if unload_ok:
|
|
hass.data[DOMAIN].pop(entry.entry_id)
|
|
|
|
return unload_ok
|