* add bring integration * fix typings and remove from strictly typed - wait for python-bring-api to be ready for strictly typed * make entity unique to user and list - before it was only list, therefore the same list imported by two users would have failed * simplify bring attribute Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * cleanup and code simplification * remove empty fields in manifest * __init__.py aktualisieren Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * __init__.py aktualisieren Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * strings.json aktualisieren Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * streamline async calls * use coordinator refresh * fix order in update call and simplify bring list * simplify the config_flow * Update homeassistant/components/bring/manifest.json Co-authored-by: Sid <27780930+autinerd@users.noreply.github.com> * add unit testing for __init__.py * cleanup comments * use dict instead of list * Update homeassistant/components/bring/todo.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * clean up * update attribute name * update more attribute name * improve unit tests - remove patch and use mock in conftest * clean up tests even more * more unit test inprovements * remove optional type * minor unit test cleanup * Update .coveragerc Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> --------- Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> Co-authored-by: Sid <27780930+autinerd@users.noreply.github.com>
66 lines
2.2 KiB
Python
66 lines
2.2 KiB
Python
"""DataUpdateCoordinator for the Bring! integration."""
|
|
from __future__ import annotations
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
from python_bring_api.bring import Bring
|
|
from python_bring_api.exceptions import BringParseException, BringRequestException
|
|
from python_bring_api.types import BringItemsResponse, BringList
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, UpdateFailed
|
|
|
|
from .const import DOMAIN
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class BringData(BringList):
|
|
"""Coordinator data class."""
|
|
|
|
items: list[BringItemsResponse]
|
|
|
|
|
|
class BringDataUpdateCoordinator(DataUpdateCoordinator[dict[str, BringData]]):
|
|
"""A Bring Data Update Coordinator."""
|
|
|
|
config_entry: ConfigEntry
|
|
|
|
def __init__(self, hass: HomeAssistant, bring: Bring) -> None:
|
|
"""Initialize the Bring data coordinator."""
|
|
super().__init__(
|
|
hass,
|
|
_LOGGER,
|
|
name=DOMAIN,
|
|
update_interval=timedelta(seconds=90),
|
|
)
|
|
self.bring = bring
|
|
|
|
async def _async_update_data(self) -> dict[str, BringData]:
|
|
try:
|
|
lists_response = await self.hass.async_add_executor_job(
|
|
self.bring.loadLists
|
|
)
|
|
except BringRequestException as e:
|
|
raise UpdateFailed("Unable to connect and retrieve data from bring") from e
|
|
except BringParseException as e:
|
|
raise UpdateFailed("Unable to parse response from bring") from e
|
|
|
|
list_dict = {}
|
|
for lst in lists_response["lists"]:
|
|
try:
|
|
items = await self.hass.async_add_executor_job(
|
|
self.bring.getItems, lst["listUuid"]
|
|
)
|
|
except BringRequestException as e:
|
|
raise UpdateFailed(
|
|
"Unable to connect and retrieve data from bring"
|
|
) from e
|
|
except BringParseException as e:
|
|
raise UpdateFailed("Unable to parse response from bring") from e
|
|
lst["items"] = items["purchase"]
|
|
list_dict[lst["listUuid"]] = lst
|
|
|
|
return list_dict
|