103 lines
3.2 KiB
Python
103 lines
3.2 KiB
Python
|
"""The Balboa Spa Client integration."""
|
||
|
import asyncio
|
||
|
from datetime import timedelta
|
||
|
import time
|
||
|
|
||
|
from pybalboa import BalboaSpaWifi
|
||
|
|
||
|
from homeassistant.config_entries import ConfigEntry
|
||
|
from homeassistant.const import CONF_HOST
|
||
|
from homeassistant.core import HomeAssistant
|
||
|
from homeassistant.exceptions import ConfigEntryNotReady
|
||
|
from homeassistant.helpers.dispatcher import async_dispatcher_send
|
||
|
from homeassistant.helpers.event import async_track_time_interval
|
||
|
import homeassistant.util.dt as dt_util
|
||
|
|
||
|
from .const import (
|
||
|
_LOGGER,
|
||
|
CONF_SYNC_TIME,
|
||
|
DEFAULT_SYNC_TIME,
|
||
|
DOMAIN,
|
||
|
PLATFORMS,
|
||
|
SIGNAL_UPDATE,
|
||
|
)
|
||
|
|
||
|
SYNC_TIME_INTERVAL = timedelta(days=1)
|
||
|
|
||
|
|
||
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
||
|
"""Set up Balboa Spa from a config entry."""
|
||
|
host = entry.data[CONF_HOST]
|
||
|
|
||
|
_LOGGER.debug("Attempting to connect to %s", host)
|
||
|
spa = BalboaSpaWifi(host)
|
||
|
|
||
|
connected = await spa.connect()
|
||
|
if not connected:
|
||
|
_LOGGER.error("Failed to connect to spa at %s", host)
|
||
|
raise ConfigEntryNotReady
|
||
|
|
||
|
hass.data.setdefault(DOMAIN, {})[entry.entry_id] = spa
|
||
|
|
||
|
# send config requests, and then listen until we are configured.
|
||
|
await spa.send_mod_ident_req()
|
||
|
await spa.send_panel_req(0, 1)
|
||
|
|
||
|
async def _async_balboa_update_cb():
|
||
|
"""Primary update callback called from pybalboa."""
|
||
|
_LOGGER.debug("Primary update callback triggered")
|
||
|
async_dispatcher_send(hass, SIGNAL_UPDATE.format(entry.entry_id))
|
||
|
|
||
|
# set the callback so we know we have new data
|
||
|
spa.new_data_cb = _async_balboa_update_cb
|
||
|
|
||
|
_LOGGER.debug("Starting listener and monitor tasks")
|
||
|
hass.loop.create_task(spa.listen())
|
||
|
await spa.spa_configured()
|
||
|
asyncio.create_task(spa.check_connection_status())
|
||
|
|
||
|
# At this point we have a configured spa.
|
||
|
hass.config_entries.async_setup_platforms(entry, PLATFORMS)
|
||
|
|
||
|
# call update_listener on startup and for options change as well.
|
||
|
await async_setup_time_sync(hass, entry)
|
||
|
entry.async_on_unload(entry.add_update_listener(update_listener))
|
||
|
|
||
|
return True
|
||
|
|
||
|
|
||
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
||
|
"""Unload a config entry."""
|
||
|
|
||
|
_LOGGER.debug("Disconnecting from spa")
|
||
|
spa = hass.data[DOMAIN][entry.entry_id]
|
||
|
await spa.disconnect()
|
||
|
|
||
|
if unload_ok := await hass.config_entries.async_unload_platforms(entry, PLATFORMS):
|
||
|
hass.data[DOMAIN].pop(entry.entry_id)
|
||
|
|
||
|
return unload_ok
|
||
|
|
||
|
|
||
|
async def update_listener(hass: HomeAssistant, entry: ConfigEntry) -> None:
|
||
|
"""Handle options update."""
|
||
|
await hass.config_entries.async_reload(entry.entry_id)
|
||
|
|
||
|
|
||
|
async def async_setup_time_sync(hass: HomeAssistant, entry: ConfigEntry) -> None:
|
||
|
"""Set up the time sync."""
|
||
|
if not entry.options.get(CONF_SYNC_TIME, DEFAULT_SYNC_TIME):
|
||
|
return
|
||
|
|
||
|
_LOGGER.debug("Setting up daily time sync")
|
||
|
spa = hass.data[DOMAIN][entry.entry_id]
|
||
|
|
||
|
async def sync_time():
|
||
|
_LOGGER.debug("Syncing time with Home Assistant")
|
||
|
await spa.set_time(time.strptime(str(dt_util.now()), "%Y-%m-%d %H:%M:%S.%f%z"))
|
||
|
|
||
|
await sync_time()
|
||
|
entry.async_on_unload(
|
||
|
async_track_time_interval(hass, sync_time, SYNC_TIME_INTERVAL)
|
||
|
)
|