48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
"""The foscam coordinator object."""
|
|
|
|
import asyncio
|
|
from datetime import timedelta
|
|
from typing import Any
|
|
|
|
from libpyfoscam import FoscamCamera
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator
|
|
|
|
from .const import DOMAIN, LOGGER
|
|
|
|
|
|
class FoscamCoordinator(DataUpdateCoordinator[dict[str, Any]]):
|
|
"""Foscam coordinator."""
|
|
|
|
def __init__(
|
|
self,
|
|
hass: HomeAssistant,
|
|
session: FoscamCamera,
|
|
) -> None:
|
|
"""Initialize my coordinator."""
|
|
super().__init__(
|
|
hass,
|
|
LOGGER,
|
|
name=DOMAIN,
|
|
update_interval=timedelta(seconds=30),
|
|
)
|
|
self.session = session
|
|
|
|
async def _async_update_data(self) -> dict[str, Any]:
|
|
"""Fetch data from API endpoint."""
|
|
|
|
async with asyncio.timeout(30):
|
|
data = {}
|
|
ret, dev_info = await self.hass.async_add_executor_job(
|
|
self.session.get_dev_info
|
|
)
|
|
if ret == 0:
|
|
data["dev_info"] = dev_info
|
|
|
|
all_info = await self.hass.async_add_executor_job(
|
|
self.session.get_product_all_info
|
|
)
|
|
data["product_info"] = all_info[1]
|
|
return data
|