57 lines
1.8 KiB
Python
57 lines
1.8 KiB
Python
"""IoTaWatt DataUpdateCoordinator."""
|
|
from __future__ import annotations
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
from iotawattpy.iotawatt import Iotawatt
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_USERNAME
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import httpx_client
|
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, UpdateFailed
|
|
|
|
from .const import CONNECTION_ERRORS
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class IotawattUpdater(DataUpdateCoordinator):
|
|
"""Class to manage fetching update data from the IoTaWatt Energy Device."""
|
|
|
|
api: Iotawatt | None = None
|
|
|
|
def __init__(self, hass: HomeAssistant, entry: ConfigEntry) -> None:
|
|
"""Initialize IotaWattUpdater object."""
|
|
self.entry = entry
|
|
super().__init__(
|
|
hass=hass,
|
|
logger=_LOGGER,
|
|
name=entry.title,
|
|
update_interval=timedelta(seconds=30),
|
|
)
|
|
|
|
async def _async_update_data(self):
|
|
"""Fetch sensors from IoTaWatt device."""
|
|
if self.api is None:
|
|
api = Iotawatt(
|
|
self.entry.title,
|
|
self.entry.data[CONF_HOST],
|
|
httpx_client.get_async_client(self.hass),
|
|
self.entry.data.get(CONF_USERNAME),
|
|
self.entry.data.get(CONF_PASSWORD),
|
|
)
|
|
try:
|
|
is_authenticated = await api.connect()
|
|
except CONNECTION_ERRORS as err:
|
|
raise UpdateFailed("Connection failed") from err
|
|
|
|
if not is_authenticated:
|
|
raise UpdateFailed("Authentication error")
|
|
|
|
self.api = api
|
|
|
|
await self.api.update()
|
|
return self.api.getSensors()
|