Move plenticore coordinators to separate module (#117491)
This commit is contained in:
parent
c38539b368
commit
4dad9c8859
14 changed files with 333 additions and 320 deletions
|
@ -681,6 +681,7 @@ omit =
|
|||
homeassistant/components/konnected/panel.py
|
||||
homeassistant/components/konnected/switch.py
|
||||
homeassistant/components/kostal_plenticore/__init__.py
|
||||
homeassistant/components/kostal_plenticore/coordinator.py
|
||||
homeassistant/components/kostal_plenticore/helper.py
|
||||
homeassistant/components/kostal_plenticore/select.py
|
||||
homeassistant/components/kostal_plenticore/sensor.py
|
||||
|
|
|
@ -9,7 +9,7 @@ from homeassistant.const import Platform
|
|||
from homeassistant.core import HomeAssistant
|
||||
|
||||
from .const import DOMAIN
|
||||
from .helper import Plenticore
|
||||
from .coordinator import Plenticore
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
|
316
homeassistant/components/kostal_plenticore/coordinator.py
Normal file
316
homeassistant/components/kostal_plenticore/coordinator.py
Normal file
|
@ -0,0 +1,316 @@
|
|||
"""Code to handle the Plenticore API."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from collections import defaultdict
|
||||
from collections.abc import Mapping
|
||||
from datetime import datetime, timedelta
|
||||
import logging
|
||||
from typing import TypeVar, cast
|
||||
|
||||
from aiohttp.client_exceptions import ClientError
|
||||
from pykoplenti import (
|
||||
ApiClient,
|
||||
ApiException,
|
||||
AuthenticationException,
|
||||
ExtendedApiClient,
|
||||
)
|
||||
|
||||
from homeassistant.const import CONF_HOST, CONF_PASSWORD, EVENT_HOMEASSISTANT_STOP
|
||||
from homeassistant.core import CALLBACK_TYPE, HomeAssistant
|
||||
from homeassistant.exceptions import ConfigEntryNotReady
|
||||
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
||||
from homeassistant.helpers.device_registry import DeviceInfo
|
||||
from homeassistant.helpers.event import async_call_later
|
||||
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator
|
||||
|
||||
from .const import DOMAIN
|
||||
from .helper import get_hostname_id
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
_DataT = TypeVar("_DataT")
|
||||
|
||||
|
||||
class Plenticore:
|
||||
"""Manages the Plenticore API."""
|
||||
|
||||
def __init__(self, hass, config_entry):
|
||||
"""Create a new plenticore manager instance."""
|
||||
self.hass = hass
|
||||
self.config_entry = config_entry
|
||||
|
||||
self._client = None
|
||||
self._shutdown_remove_listener = None
|
||||
|
||||
self.device_info = {}
|
||||
|
||||
@property
|
||||
def host(self) -> str:
|
||||
"""Return the host of the Plenticore inverter."""
|
||||
return self.config_entry.data[CONF_HOST]
|
||||
|
||||
@property
|
||||
def client(self) -> ApiClient:
|
||||
"""Return the Plenticore API client."""
|
||||
return self._client
|
||||
|
||||
async def async_setup(self) -> bool:
|
||||
"""Set up Plenticore API client."""
|
||||
self._client = ExtendedApiClient(
|
||||
async_get_clientsession(self.hass), host=self.host
|
||||
)
|
||||
try:
|
||||
await self._client.login(self.config_entry.data[CONF_PASSWORD])
|
||||
except AuthenticationException as err:
|
||||
_LOGGER.error(
|
||||
"Authentication exception connecting to %s: %s", self.host, err
|
||||
)
|
||||
return False
|
||||
except (ClientError, TimeoutError) as err:
|
||||
_LOGGER.error("Error connecting to %s", self.host)
|
||||
raise ConfigEntryNotReady from err
|
||||
else:
|
||||
_LOGGER.debug("Log-in successfully to %s", self.host)
|
||||
|
||||
self._shutdown_remove_listener = self.hass.bus.async_listen_once(
|
||||
EVENT_HOMEASSISTANT_STOP, self._async_shutdown
|
||||
)
|
||||
|
||||
# get some device meta data
|
||||
hostname_id = await get_hostname_id(self._client)
|
||||
settings = await self._client.get_setting_values(
|
||||
{
|
||||
"devices:local": [
|
||||
"Properties:SerialNo",
|
||||
"Branding:ProductName1",
|
||||
"Branding:ProductName2",
|
||||
"Properties:VersionIOC",
|
||||
"Properties:VersionMC",
|
||||
],
|
||||
"scb:network": [hostname_id],
|
||||
}
|
||||
)
|
||||
|
||||
device_local = settings["devices:local"]
|
||||
prod1 = device_local["Branding:ProductName1"]
|
||||
prod2 = device_local["Branding:ProductName2"]
|
||||
|
||||
self.device_info = DeviceInfo(
|
||||
configuration_url=f"http://{self.host}",
|
||||
identifiers={(DOMAIN, device_local["Properties:SerialNo"])},
|
||||
manufacturer="Kostal",
|
||||
model=f"{prod1} {prod2}",
|
||||
name=settings["scb:network"][hostname_id],
|
||||
sw_version=(
|
||||
f'IOC: {device_local["Properties:VersionIOC"]}'
|
||||
f' MC: {device_local["Properties:VersionMC"]}'
|
||||
),
|
||||
)
|
||||
|
||||
return True
|
||||
|
||||
async def _async_shutdown(self, event):
|
||||
"""Call from Homeassistant shutdown event."""
|
||||
# unset remove listener otherwise calling it would raise an exception
|
||||
self._shutdown_remove_listener = None
|
||||
await self.async_unload()
|
||||
|
||||
async def async_unload(self) -> None:
|
||||
"""Unload the Plenticore API client."""
|
||||
if self._shutdown_remove_listener:
|
||||
self._shutdown_remove_listener()
|
||||
|
||||
await self._client.logout()
|
||||
self._client = None
|
||||
_LOGGER.debug("Logged out from %s", self.host)
|
||||
|
||||
|
||||
class DataUpdateCoordinatorMixin:
|
||||
"""Base implementation for read and write data."""
|
||||
|
||||
_plenticore: Plenticore
|
||||
name: str
|
||||
|
||||
async def async_read_data(
|
||||
self, module_id: str, data_id: str
|
||||
) -> Mapping[str, Mapping[str, str]] | None:
|
||||
"""Read data from Plenticore."""
|
||||
if (client := self._plenticore.client) is None:
|
||||
return None
|
||||
|
||||
try:
|
||||
return await client.get_setting_values(module_id, data_id)
|
||||
except ApiException:
|
||||
return None
|
||||
|
||||
async def async_write_data(self, module_id: str, value: dict[str, str]) -> bool:
|
||||
"""Write settings back to Plenticore."""
|
||||
if (client := self._plenticore.client) is None:
|
||||
return False
|
||||
|
||||
_LOGGER.debug(
|
||||
"Setting value for %s in module %s to %s", self.name, module_id, value
|
||||
)
|
||||
|
||||
try:
|
||||
await client.set_setting_values(module_id, value)
|
||||
except ApiException:
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
|
||||
class PlenticoreUpdateCoordinator(DataUpdateCoordinator[_DataT]):
|
||||
"""Base implementation of DataUpdateCoordinator for Plenticore data."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
hass: HomeAssistant,
|
||||
logger: logging.Logger,
|
||||
name: str,
|
||||
update_inverval: timedelta,
|
||||
plenticore: Plenticore,
|
||||
) -> None:
|
||||
"""Create a new update coordinator for plenticore data."""
|
||||
super().__init__(
|
||||
hass=hass,
|
||||
logger=logger,
|
||||
name=name,
|
||||
update_interval=update_inverval,
|
||||
)
|
||||
# data ids to poll
|
||||
self._fetch: dict[str, list[str]] = defaultdict(list)
|
||||
self._plenticore = plenticore
|
||||
|
||||
def start_fetch_data(self, module_id: str, data_id: str) -> CALLBACK_TYPE:
|
||||
"""Start fetching the given data (module-id and data-id)."""
|
||||
self._fetch[module_id].append(data_id)
|
||||
|
||||
# Force an update of all data. Multiple refresh calls
|
||||
# are ignored by the debouncer.
|
||||
async def force_refresh(event_time: datetime) -> None:
|
||||
await self.async_request_refresh()
|
||||
|
||||
return async_call_later(self.hass, 2, force_refresh)
|
||||
|
||||
def stop_fetch_data(self, module_id: str, data_id: str) -> None:
|
||||
"""Stop fetching the given data (module-id and data-id)."""
|
||||
self._fetch[module_id].remove(data_id)
|
||||
|
||||
|
||||
class ProcessDataUpdateCoordinator(
|
||||
PlenticoreUpdateCoordinator[Mapping[str, Mapping[str, str]]]
|
||||
):
|
||||
"""Implementation of PlenticoreUpdateCoordinator for process data."""
|
||||
|
||||
async def _async_update_data(self) -> dict[str, dict[str, str]]:
|
||||
client = self._plenticore.client
|
||||
|
||||
if not self._fetch or client is None:
|
||||
return {}
|
||||
|
||||
_LOGGER.debug("Fetching %s for %s", self.name, self._fetch)
|
||||
|
||||
fetched_data = await client.get_process_data_values(self._fetch)
|
||||
return {
|
||||
module_id: {
|
||||
process_data.id: process_data.value
|
||||
for process_data in fetched_data[module_id].values()
|
||||
}
|
||||
for module_id in fetched_data
|
||||
}
|
||||
|
||||
|
||||
class SettingDataUpdateCoordinator(
|
||||
PlenticoreUpdateCoordinator[Mapping[str, Mapping[str, str]]],
|
||||
DataUpdateCoordinatorMixin,
|
||||
):
|
||||
"""Implementation of PlenticoreUpdateCoordinator for settings data."""
|
||||
|
||||
async def _async_update_data(self) -> Mapping[str, Mapping[str, str]]:
|
||||
client = self._plenticore.client
|
||||
|
||||
if not self._fetch or client is None:
|
||||
return {}
|
||||
|
||||
_LOGGER.debug("Fetching %s for %s", self.name, self._fetch)
|
||||
|
||||
return await client.get_setting_values(self._fetch)
|
||||
|
||||
|
||||
class PlenticoreSelectUpdateCoordinator(DataUpdateCoordinator[_DataT]):
|
||||
"""Base implementation of DataUpdateCoordinator for Plenticore data."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
hass: HomeAssistant,
|
||||
logger: logging.Logger,
|
||||
name: str,
|
||||
update_inverval: timedelta,
|
||||
plenticore: Plenticore,
|
||||
) -> None:
|
||||
"""Create a new update coordinator for plenticore data."""
|
||||
super().__init__(
|
||||
hass=hass,
|
||||
logger=logger,
|
||||
name=name,
|
||||
update_interval=update_inverval,
|
||||
)
|
||||
# data ids to poll
|
||||
self._fetch: dict[str, list[str | list[str]]] = defaultdict(list)
|
||||
self._plenticore = plenticore
|
||||
|
||||
def start_fetch_data(
|
||||
self, module_id: str, data_id: str, all_options: list[str]
|
||||
) -> CALLBACK_TYPE:
|
||||
"""Start fetching the given data (module-id and entry-id)."""
|
||||
self._fetch[module_id].append(data_id)
|
||||
self._fetch[module_id].append(all_options)
|
||||
|
||||
# Force an update of all data. Multiple refresh calls
|
||||
# are ignored by the debouncer.
|
||||
async def force_refresh(event_time: datetime) -> None:
|
||||
await self.async_request_refresh()
|
||||
|
||||
return async_call_later(self.hass, 2, force_refresh)
|
||||
|
||||
def stop_fetch_data(
|
||||
self, module_id: str, data_id: str, all_options: list[str]
|
||||
) -> None:
|
||||
"""Stop fetching the given data (module-id and entry-id)."""
|
||||
self._fetch[module_id].remove(all_options)
|
||||
self._fetch[module_id].remove(data_id)
|
||||
|
||||
|
||||
class SelectDataUpdateCoordinator(
|
||||
PlenticoreSelectUpdateCoordinator[dict[str, dict[str, str]]],
|
||||
DataUpdateCoordinatorMixin,
|
||||
):
|
||||
"""Implementation of PlenticoreUpdateCoordinator for select data."""
|
||||
|
||||
async def _async_update_data(self) -> dict[str, dict[str, str]]:
|
||||
if self._plenticore.client is None:
|
||||
return {}
|
||||
|
||||
_LOGGER.debug("Fetching select %s for %s", self.name, self._fetch)
|
||||
|
||||
return await self._async_get_current_option(self._fetch)
|
||||
|
||||
async def _async_get_current_option(
|
||||
self,
|
||||
module_id: dict[str, list[str | list[str]]],
|
||||
) -> dict[str, dict[str, str]]:
|
||||
"""Get current option."""
|
||||
for mid, pids in module_id.items():
|
||||
all_options = cast(list[str], pids[1])
|
||||
for all_option in all_options:
|
||||
if all_option == "None" or not (
|
||||
val := await self.async_read_data(mid, all_option)
|
||||
):
|
||||
continue
|
||||
for option in val.values():
|
||||
if option[all_option] == "1":
|
||||
return {mid: {cast(str, pids[0]): all_option}}
|
||||
|
||||
return {mid: {cast(str, pids[0]): "None"}}
|
||||
return {}
|
|
@ -10,7 +10,7 @@ from homeassistant.const import ATTR_IDENTIFIERS, CONF_PASSWORD
|
|||
from homeassistant.core import HomeAssistant
|
||||
|
||||
from .const import DOMAIN
|
||||
from .helper import Plenticore
|
||||
from .coordinator import Plenticore
|
||||
|
||||
TO_REDACT = {CONF_PASSWORD}
|
||||
|
||||
|
|
|
@ -2,320 +2,14 @@
|
|||
|
||||
from __future__ import annotations
|
||||
|
||||
from collections import defaultdict
|
||||
from collections.abc import Callable, Mapping
|
||||
from datetime import datetime, timedelta
|
||||
import logging
|
||||
from typing import Any, TypeVar, cast
|
||||
from collections.abc import Callable
|
||||
from typing import Any
|
||||
|
||||
from aiohttp.client_exceptions import ClientError
|
||||
from pykoplenti import (
|
||||
ApiClient,
|
||||
ApiException,
|
||||
AuthenticationException,
|
||||
ExtendedApiClient,
|
||||
)
|
||||
from pykoplenti import ApiClient, ApiException
|
||||
|
||||
from homeassistant.const import CONF_HOST, CONF_PASSWORD, EVENT_HOMEASSISTANT_STOP
|
||||
from homeassistant.core import CALLBACK_TYPE, HomeAssistant
|
||||
from homeassistant.exceptions import ConfigEntryNotReady
|
||||
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
||||
from homeassistant.helpers.device_registry import DeviceInfo
|
||||
from homeassistant.helpers.event import async_call_later
|
||||
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator
|
||||
|
||||
from .const import DOMAIN
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
_DataT = TypeVar("_DataT")
|
||||
_KNOWN_HOSTNAME_IDS = ("Network:Hostname", "Hostname")
|
||||
|
||||
|
||||
class Plenticore:
|
||||
"""Manages the Plenticore API."""
|
||||
|
||||
def __init__(self, hass, config_entry):
|
||||
"""Create a new plenticore manager instance."""
|
||||
self.hass = hass
|
||||
self.config_entry = config_entry
|
||||
|
||||
self._client = None
|
||||
self._shutdown_remove_listener = None
|
||||
|
||||
self.device_info = {}
|
||||
|
||||
@property
|
||||
def host(self) -> str:
|
||||
"""Return the host of the Plenticore inverter."""
|
||||
return self.config_entry.data[CONF_HOST]
|
||||
|
||||
@property
|
||||
def client(self) -> ApiClient:
|
||||
"""Return the Plenticore API client."""
|
||||
return self._client
|
||||
|
||||
async def async_setup(self) -> bool:
|
||||
"""Set up Plenticore API client."""
|
||||
self._client = ExtendedApiClient(
|
||||
async_get_clientsession(self.hass), host=self.host
|
||||
)
|
||||
try:
|
||||
await self._client.login(self.config_entry.data[CONF_PASSWORD])
|
||||
except AuthenticationException as err:
|
||||
_LOGGER.error(
|
||||
"Authentication exception connecting to %s: %s", self.host, err
|
||||
)
|
||||
return False
|
||||
except (ClientError, TimeoutError) as err:
|
||||
_LOGGER.error("Error connecting to %s", self.host)
|
||||
raise ConfigEntryNotReady from err
|
||||
else:
|
||||
_LOGGER.debug("Log-in successfully to %s", self.host)
|
||||
|
||||
self._shutdown_remove_listener = self.hass.bus.async_listen_once(
|
||||
EVENT_HOMEASSISTANT_STOP, self._async_shutdown
|
||||
)
|
||||
|
||||
# get some device meta data
|
||||
hostname_id = await get_hostname_id(self._client)
|
||||
settings = await self._client.get_setting_values(
|
||||
{
|
||||
"devices:local": [
|
||||
"Properties:SerialNo",
|
||||
"Branding:ProductName1",
|
||||
"Branding:ProductName2",
|
||||
"Properties:VersionIOC",
|
||||
"Properties:VersionMC",
|
||||
],
|
||||
"scb:network": [hostname_id],
|
||||
}
|
||||
)
|
||||
|
||||
device_local = settings["devices:local"]
|
||||
prod1 = device_local["Branding:ProductName1"]
|
||||
prod2 = device_local["Branding:ProductName2"]
|
||||
|
||||
self.device_info = DeviceInfo(
|
||||
configuration_url=f"http://{self.host}",
|
||||
identifiers={(DOMAIN, device_local["Properties:SerialNo"])},
|
||||
manufacturer="Kostal",
|
||||
model=f"{prod1} {prod2}",
|
||||
name=settings["scb:network"][hostname_id],
|
||||
sw_version=(
|
||||
f'IOC: {device_local["Properties:VersionIOC"]}'
|
||||
f' MC: {device_local["Properties:VersionMC"]}'
|
||||
),
|
||||
)
|
||||
|
||||
return True
|
||||
|
||||
async def _async_shutdown(self, event):
|
||||
"""Call from Homeassistant shutdown event."""
|
||||
# unset remove listener otherwise calling it would raise an exception
|
||||
self._shutdown_remove_listener = None
|
||||
await self.async_unload()
|
||||
|
||||
async def async_unload(self) -> None:
|
||||
"""Unload the Plenticore API client."""
|
||||
if self._shutdown_remove_listener:
|
||||
self._shutdown_remove_listener()
|
||||
|
||||
await self._client.logout()
|
||||
self._client = None
|
||||
_LOGGER.debug("Logged out from %s", self.host)
|
||||
|
||||
|
||||
class DataUpdateCoordinatorMixin:
|
||||
"""Base implementation for read and write data."""
|
||||
|
||||
_plenticore: Plenticore
|
||||
name: str
|
||||
|
||||
async def async_read_data(
|
||||
self, module_id: str, data_id: str
|
||||
) -> Mapping[str, Mapping[str, str]] | None:
|
||||
"""Read data from Plenticore."""
|
||||
if (client := self._plenticore.client) is None:
|
||||
return None
|
||||
|
||||
try:
|
||||
return await client.get_setting_values(module_id, data_id)
|
||||
except ApiException:
|
||||
return None
|
||||
|
||||
async def async_write_data(self, module_id: str, value: dict[str, str]) -> bool:
|
||||
"""Write settings back to Plenticore."""
|
||||
if (client := self._plenticore.client) is None:
|
||||
return False
|
||||
|
||||
_LOGGER.debug(
|
||||
"Setting value for %s in module %s to %s", self.name, module_id, value
|
||||
)
|
||||
|
||||
try:
|
||||
await client.set_setting_values(module_id, value)
|
||||
except ApiException:
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
|
||||
class PlenticoreUpdateCoordinator(DataUpdateCoordinator[_DataT]): # pylint: disable=hass-enforce-coordinator-module
|
||||
"""Base implementation of DataUpdateCoordinator for Plenticore data."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
hass: HomeAssistant,
|
||||
logger: logging.Logger,
|
||||
name: str,
|
||||
update_inverval: timedelta,
|
||||
plenticore: Plenticore,
|
||||
) -> None:
|
||||
"""Create a new update coordinator for plenticore data."""
|
||||
super().__init__(
|
||||
hass=hass,
|
||||
logger=logger,
|
||||
name=name,
|
||||
update_interval=update_inverval,
|
||||
)
|
||||
# data ids to poll
|
||||
self._fetch: dict[str, list[str]] = defaultdict(list)
|
||||
self._plenticore = plenticore
|
||||
|
||||
def start_fetch_data(self, module_id: str, data_id: str) -> CALLBACK_TYPE:
|
||||
"""Start fetching the given data (module-id and data-id)."""
|
||||
self._fetch[module_id].append(data_id)
|
||||
|
||||
# Force an update of all data. Multiple refresh calls
|
||||
# are ignored by the debouncer.
|
||||
async def force_refresh(event_time: datetime) -> None:
|
||||
await self.async_request_refresh()
|
||||
|
||||
return async_call_later(self.hass, 2, force_refresh)
|
||||
|
||||
def stop_fetch_data(self, module_id: str, data_id: str) -> None:
|
||||
"""Stop fetching the given data (module-id and data-id)."""
|
||||
self._fetch[module_id].remove(data_id)
|
||||
|
||||
|
||||
class ProcessDataUpdateCoordinator(
|
||||
PlenticoreUpdateCoordinator[Mapping[str, Mapping[str, str]]]
|
||||
): # pylint: disable=hass-enforce-coordinator-module
|
||||
"""Implementation of PlenticoreUpdateCoordinator for process data."""
|
||||
|
||||
async def _async_update_data(self) -> dict[str, dict[str, str]]:
|
||||
client = self._plenticore.client
|
||||
|
||||
if not self._fetch or client is None:
|
||||
return {}
|
||||
|
||||
_LOGGER.debug("Fetching %s for %s", self.name, self._fetch)
|
||||
|
||||
fetched_data = await client.get_process_data_values(self._fetch)
|
||||
return {
|
||||
module_id: {
|
||||
process_data.id: process_data.value
|
||||
for process_data in fetched_data[module_id].values()
|
||||
}
|
||||
for module_id in fetched_data
|
||||
}
|
||||
|
||||
|
||||
class SettingDataUpdateCoordinator(
|
||||
PlenticoreUpdateCoordinator[Mapping[str, Mapping[str, str]]],
|
||||
DataUpdateCoordinatorMixin,
|
||||
): # pylint: disable=hass-enforce-coordinator-module
|
||||
"""Implementation of PlenticoreUpdateCoordinator for settings data."""
|
||||
|
||||
async def _async_update_data(self) -> Mapping[str, Mapping[str, str]]:
|
||||
client = self._plenticore.client
|
||||
|
||||
if not self._fetch or client is None:
|
||||
return {}
|
||||
|
||||
_LOGGER.debug("Fetching %s for %s", self.name, self._fetch)
|
||||
|
||||
return await client.get_setting_values(self._fetch)
|
||||
|
||||
|
||||
class PlenticoreSelectUpdateCoordinator(DataUpdateCoordinator[_DataT]): # pylint: disable=hass-enforce-coordinator-module
|
||||
"""Base implementation of DataUpdateCoordinator for Plenticore data."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
hass: HomeAssistant,
|
||||
logger: logging.Logger,
|
||||
name: str,
|
||||
update_inverval: timedelta,
|
||||
plenticore: Plenticore,
|
||||
) -> None:
|
||||
"""Create a new update coordinator for plenticore data."""
|
||||
super().__init__(
|
||||
hass=hass,
|
||||
logger=logger,
|
||||
name=name,
|
||||
update_interval=update_inverval,
|
||||
)
|
||||
# data ids to poll
|
||||
self._fetch: dict[str, list[str | list[str]]] = defaultdict(list)
|
||||
self._plenticore = plenticore
|
||||
|
||||
def start_fetch_data(
|
||||
self, module_id: str, data_id: str, all_options: list[str]
|
||||
) -> CALLBACK_TYPE:
|
||||
"""Start fetching the given data (module-id and entry-id)."""
|
||||
self._fetch[module_id].append(data_id)
|
||||
self._fetch[module_id].append(all_options)
|
||||
|
||||
# Force an update of all data. Multiple refresh calls
|
||||
# are ignored by the debouncer.
|
||||
async def force_refresh(event_time: datetime) -> None:
|
||||
await self.async_request_refresh()
|
||||
|
||||
return async_call_later(self.hass, 2, force_refresh)
|
||||
|
||||
def stop_fetch_data(
|
||||
self, module_id: str, data_id: str, all_options: list[str]
|
||||
) -> None:
|
||||
"""Stop fetching the given data (module-id and entry-id)."""
|
||||
self._fetch[module_id].remove(all_options)
|
||||
self._fetch[module_id].remove(data_id)
|
||||
|
||||
|
||||
class SelectDataUpdateCoordinator(
|
||||
PlenticoreSelectUpdateCoordinator[dict[str, dict[str, str]]],
|
||||
DataUpdateCoordinatorMixin,
|
||||
): # pylint: disable=hass-enforce-coordinator-module
|
||||
"""Implementation of PlenticoreUpdateCoordinator for select data."""
|
||||
|
||||
async def _async_update_data(self) -> dict[str, dict[str, str]]:
|
||||
if self._plenticore.client is None:
|
||||
return {}
|
||||
|
||||
_LOGGER.debug("Fetching select %s for %s", self.name, self._fetch)
|
||||
|
||||
return await self._async_get_current_option(self._fetch)
|
||||
|
||||
async def _async_get_current_option(
|
||||
self,
|
||||
module_id: dict[str, list[str | list[str]]],
|
||||
) -> dict[str, dict[str, str]]:
|
||||
"""Get current option."""
|
||||
for mid, pids in module_id.items():
|
||||
all_options = cast(list[str], pids[1])
|
||||
for all_option in all_options:
|
||||
if all_option == "None" or not (
|
||||
val := await self.async_read_data(mid, all_option)
|
||||
):
|
||||
continue
|
||||
for option in val.values():
|
||||
if option[all_option] == "1":
|
||||
return {mid: {cast(str, pids[0]): all_option}}
|
||||
|
||||
return {mid: {cast(str, pids[0]): "None"}}
|
||||
return {}
|
||||
|
||||
|
||||
class PlenticoreDataFormatter:
|
||||
"""Provides method to format values of process or settings data."""
|
||||
|
||||
|
|
|
@ -22,7 +22,8 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|||
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
||||
|
||||
from .const import DOMAIN
|
||||
from .helper import PlenticoreDataFormatter, SettingDataUpdateCoordinator
|
||||
from .coordinator import SettingDataUpdateCoordinator
|
||||
from .helper import PlenticoreDataFormatter
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|||
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
||||
|
||||
from .const import DOMAIN
|
||||
from .helper import Plenticore, SelectDataUpdateCoordinator
|
||||
from .coordinator import Plenticore, SelectDataUpdateCoordinator
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
@ -29,7 +29,8 @@ from homeassistant.helpers.typing import StateType
|
|||
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
||||
|
||||
from .const import DOMAIN
|
||||
from .helper import PlenticoreDataFormatter, ProcessDataUpdateCoordinator
|
||||
from .coordinator import ProcessDataUpdateCoordinator
|
||||
from .helper import PlenticoreDataFormatter
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|||
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
||||
|
||||
from .const import DOMAIN
|
||||
from .helper import SettingDataUpdateCoordinator
|
||||
from .coordinator import SettingDataUpdateCoordinator
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ from unittest.mock import AsyncMock, MagicMock, patch
|
|||
from pykoplenti import MeData, VersionData
|
||||
import pytest
|
||||
|
||||
from homeassistant.components.kostal_plenticore.helper import Plenticore
|
||||
from homeassistant.components.kostal_plenticore.coordinator import Plenticore
|
||||
from homeassistant.core import HomeAssistant
|
||||
from homeassistant.helpers.device_registry import DeviceInfo
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
from pykoplenti import SettingsData
|
||||
|
||||
from homeassistant.components.diagnostics import REDACTED
|
||||
from homeassistant.components.kostal_plenticore.helper import Plenticore
|
||||
from homeassistant.components.kostal_plenticore.coordinator import Plenticore
|
||||
from homeassistant.core import HomeAssistant
|
||||
|
||||
from tests.common import MockConfigEntry
|
||||
|
|
|
@ -17,7 +17,7 @@ from tests.common import MockConfigEntry
|
|||
def mock_apiclient() -> Generator[ApiClient, None, None]:
|
||||
"""Return a mocked ApiClient class."""
|
||||
with patch(
|
||||
"homeassistant.components.kostal_plenticore.helper.ExtendedApiClient",
|
||||
"homeassistant.components.kostal_plenticore.coordinator.ExtendedApiClient",
|
||||
autospec=True,
|
||||
) as mock_api_class:
|
||||
apiclient = MagicMock(spec=ExtendedApiClient)
|
||||
|
|
|
@ -26,7 +26,7 @@ from tests.common import MockConfigEntry, async_fire_time_changed
|
|||
def mock_plenticore_client() -> Generator[ApiClient, None, None]:
|
||||
"""Return a patched ExtendedApiClient."""
|
||||
with patch(
|
||||
"homeassistant.components.kostal_plenticore.helper.ExtendedApiClient",
|
||||
"homeassistant.components.kostal_plenticore.coordinator.ExtendedApiClient",
|
||||
autospec=True,
|
||||
) as plenticore_client_class:
|
||||
yield plenticore_client_class.return_value
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
from pykoplenti import SettingsData
|
||||
|
||||
from homeassistant.components.kostal_plenticore.helper import Plenticore
|
||||
from homeassistant.components.kostal_plenticore.coordinator import Plenticore
|
||||
from homeassistant.core import HomeAssistant
|
||||
from homeassistant.helpers import entity_registry as er
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue