pyhOn/pyhon/hon.py

114 lines
3.5 KiB
Python
Raw Normal View History

2023-04-09 20:50:28 +02:00
import asyncio
import logging
2023-06-25 17:29:04 +02:00
from pathlib import Path
2023-04-16 01:36:10 +02:00
from types import TracebackType
from typing import List, Optional, Dict, Any, Type
2023-04-09 20:50:28 +02:00
2023-04-13 23:25:49 +02:00
from aiohttp import ClientSession
2023-04-15 23:02:37 +02:00
from typing_extensions import Self
2023-04-13 23:25:49 +02:00
2023-04-09 20:50:28 +02:00
from pyhon.appliance import HonAppliance
2023-07-16 05:53:23 +02:00
from pyhon.connection.api import HonAPI
2023-06-25 17:29:04 +02:00
from pyhon.connection.api import TestAPI
2023-07-16 05:53:23 +02:00
from pyhon.exceptions import NoAuthenticationException
2023-04-09 20:50:28 +02:00
_LOGGER = logging.getLogger(__name__)
2023-04-09 20:50:28 +02:00
class Hon:
2023-05-11 00:43:48 +02:00
def __init__(
self,
email: Optional[str] = "",
password: Optional[str] = "",
session: Optional[ClientSession] = None,
2023-06-25 17:29:04 +02:00
test_data_path: Optional[Path] = None,
2023-05-11 00:43:48 +02:00
):
self._email: Optional[str] = email
self._password: Optional[str] = password
2023-04-13 23:25:49 +02:00
self._session: ClientSession | None = session
self._appliances: List[HonAppliance] = []
self._api: Optional[HonAPI] = None
2023-06-25 17:29:04 +02:00
self._test_data_path: Path = test_data_path or Path().cwd()
2023-04-09 20:50:28 +02:00
2023-04-16 01:36:10 +02:00
async def __aenter__(self) -> Self:
2023-04-10 06:34:19 +02:00
return await self.create()
2023-04-09 20:50:28 +02:00
2023-04-16 01:36:10 +02:00
async def __aexit__(
self,
exc_type: Optional[Type[BaseException]],
exc: Optional[BaseException],
traceback: Optional[TracebackType],
) -> None:
2023-04-10 06:34:19 +02:00
await self.close()
2023-04-13 23:25:49 +02:00
@property
def api(self) -> HonAPI:
if self._api is None:
2023-07-16 05:53:23 +02:00
raise NoAuthenticationException
2023-04-13 23:25:49 +02:00
return self._api
2023-05-11 00:43:48 +02:00
@property
def email(self) -> str:
if not self._email:
raise ValueError("Missing email")
return self._email
@property
def password(self) -> str:
if not self._password:
raise ValueError("Missing password")
return self._password
2023-04-13 23:25:49 +02:00
async def create(self) -> Self:
2023-04-10 06:34:19 +02:00
self._api = await HonAPI(
2023-05-11 00:43:48 +02:00
self.email, self.password, session=self._session
2023-04-10 06:34:19 +02:00
).create()
await self.setup()
return self
2023-04-09 20:50:28 +02:00
@property
def appliances(self) -> List[HonAppliance]:
return self._appliances
2023-05-11 00:43:48 +02:00
@appliances.setter
2023-06-28 19:02:11 +02:00
def appliances(self, appliances: List[HonAppliance]) -> None:
2023-05-11 00:43:48 +02:00
self._appliances = appliances
2023-06-25 17:29:04 +02:00
async def _create_appliance(
2023-06-28 19:02:11 +02:00
self, appliance_data: Dict[str, Any], api: HonAPI, zone: int = 0
2023-06-25 17:29:04 +02:00
) -> None:
appliance = HonAppliance(api, appliance_data, zone=zone)
2023-04-24 04:33:00 +02:00
if appliance.mac_address == "":
2023-04-15 04:12:38 +02:00
return
try:
await asyncio.gather(
*[
appliance.load_attributes(),
appliance.load_commands(),
appliance.load_statistics(),
]
)
except (KeyError, ValueError, IndexError) as error:
_LOGGER.exception(error)
2023-05-19 00:48:08 +02:00
_LOGGER.error("Device data - %s", appliance_data)
2023-04-15 04:12:38 +02:00
self._appliances.append(appliance)
2023-04-16 01:36:10 +02:00
async def setup(self) -> None:
2023-06-25 17:29:04 +02:00
appliances = await self.api.load_appliances()
for appliance in appliances:
if (zones := int(appliance.get("zone", "0"))) > 1:
for zone in range(zones):
2023-06-25 17:29:04 +02:00
await self._create_appliance(
appliance.copy(), self.api, zone=zone + 1
)
await self._create_appliance(appliance, self.api)
if (
test_data := self._test_data_path / "hon-test-data" / "test_data"
).exists() or (test_data := test_data / "test_data").exists():
api = TestAPI(test_data)
for appliance in await api.load_appliances():
await self._create_appliance(appliance, api)
2023-04-10 06:34:19 +02:00
2023-04-16 01:36:10 +02:00
async def close(self) -> None:
await self.api.close()