102 lines
2.9 KiB
Python
102 lines
2.9 KiB
Python
"""The PoolSense integration."""
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
import async_timeout
|
|
from poolsense import PoolSense
|
|
from poolsense.exceptions import PoolSenseError
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import aiohttp_client
|
|
from homeassistant.helpers.update_coordinator import (
|
|
CoordinatorEntity,
|
|
DataUpdateCoordinator,
|
|
UpdateFailed,
|
|
)
|
|
|
|
from .const import DOMAIN
|
|
|
|
PLATFORMS = ["sensor", "binary_sensor"]
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry):
|
|
"""Set up PoolSense from a config entry."""
|
|
|
|
poolsense = PoolSense(
|
|
aiohttp_client.async_get_clientsession(hass),
|
|
entry.data[CONF_EMAIL],
|
|
entry.data[CONF_PASSWORD],
|
|
)
|
|
auth_valid = await poolsense.test_poolsense_credentials()
|
|
|
|
if not auth_valid:
|
|
_LOGGER.error("Invalid authentication")
|
|
return False
|
|
|
|
coordinator = PoolSenseDataUpdateCoordinator(hass, entry)
|
|
|
|
await coordinator.async_config_entry_first_refresh()
|
|
|
|
hass.data.setdefault(DOMAIN, {})
|
|
hass.data[DOMAIN][entry.entry_id] = coordinator
|
|
|
|
hass.config_entries.async_setup_platforms(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry):
|
|
"""Unload a config entry."""
|
|
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
|
if unload_ok:
|
|
hass.data[DOMAIN].pop(entry.entry_id)
|
|
return unload_ok
|
|
|
|
|
|
class PoolSenseEntity(CoordinatorEntity):
|
|
"""Implements a common class elements representing the PoolSense component."""
|
|
|
|
def __init__(self, coordinator, email, info_type):
|
|
"""Initialize poolsense sensor."""
|
|
super().__init__(coordinator)
|
|
self._unique_id = f"{email}-{info_type}"
|
|
self.info_type = info_type
|
|
|
|
@property
|
|
def unique_id(self):
|
|
"""Return a unique id."""
|
|
return self._unique_id
|
|
|
|
|
|
class PoolSenseDataUpdateCoordinator(DataUpdateCoordinator):
|
|
"""Define an object to hold PoolSense data."""
|
|
|
|
def __init__(self, hass, entry):
|
|
"""Initialize."""
|
|
self.poolsense = PoolSense(
|
|
aiohttp_client.async_get_clientsession(hass),
|
|
entry.data[CONF_EMAIL],
|
|
entry.data[CONF_PASSWORD],
|
|
)
|
|
self.hass = hass
|
|
self.entry = entry
|
|
|
|
super().__init__(hass, _LOGGER, name=DOMAIN, update_interval=timedelta(hours=1))
|
|
|
|
async def _async_update_data(self):
|
|
"""Update data via library."""
|
|
data = {}
|
|
with async_timeout.timeout(10):
|
|
try:
|
|
data = await self.poolsense.get_poolsense_data()
|
|
except (PoolSenseError) as error:
|
|
_LOGGER.error("PoolSense query did not complete")
|
|
raise UpdateFailed(error) from error
|
|
|
|
return data
|