pyhOn/pyhon/connection/api.py

210 lines
7.9 KiB
Python
Raw Normal View History

2023-02-13 01:41:38 +01:00
import json
import logging
from datetime import datetime
2023-04-13 23:25:49 +02:00
from typing import Dict, Optional
2023-02-13 01:41:38 +01: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
from pyhon import const, exceptions
2023-04-09 18:13:50 +02:00
from pyhon.appliance import HonAppliance
2023-04-13 23:25:49 +02:00
from pyhon.connection.auth import HonAuth
2023-04-15 14:22:04 +02:00
from pyhon.connection.handler.anonym import HonAnonymousConnectionHandler
2023-04-15 23:02:37 +02:00
from pyhon.connection.handler.hon import HonConnectionHandler
2023-02-13 01:41:38 +01:00
2023-04-23 20:14:52 +02:00
_LOGGER = logging.getLogger(__name__)
2023-02-13 01:41:38 +01:00
2023-04-09 18:13:50 +02:00
class HonAPI:
2023-04-13 23:25:49 +02:00
def __init__(
self,
email: str = "",
password: str = "",
anonymous: bool = False,
session: Optional[ClientSession] = None,
) -> None:
2023-02-13 01:41:38 +01:00
super().__init__()
2023-04-13 23:25:49 +02:00
self._email: str = email
self._password: str = password
self._anonymous: bool = anonymous
self._hon_handler: Optional[HonConnectionHandler] = None
self._hon_anonymous_handler: Optional[HonAnonymousConnectionHandler] = None
self._session: Optional[ClientSession] = session
async def __aenter__(self) -> Self:
2023-04-09 20:50:28 +02:00
return await self.create()
2023-02-13 01:41:38 +01:00
2023-04-13 23:25:49 +02:00
async def __aexit__(self, exc_type, exc_val, exc_tb) -> None:
2023-04-10 06:34:19 +02:00
await self.close()
2023-02-13 01:41:38 +01:00
2023-04-13 23:25:49 +02:00
@property
def auth(self) -> HonAuth:
if self._hon is None or self._hon.auth is None:
raise exceptions.NoAuthenticationException
return self._hon.auth
@property
def _hon(self):
if self._hon_handler is None:
raise exceptions.NoAuthenticationException
return self._hon_handler
@property
def _hon_anonymous(self):
if self._hon_anonymous_handler is None:
raise exceptions.NoAuthenticationException
return self._hon_anonymous_handler
async def create(self) -> Self:
self._hon_anonymous_handler = await HonAnonymousConnectionHandler(
2023-04-10 06:34:19 +02:00
self._session
).create()
2023-04-09 23:47:33 +02:00
if not self._anonymous:
2023-04-13 23:25:49 +02:00
self._hon_handler = await HonConnectionHandler(
2023-04-10 06:34:19 +02:00
self._email, self._password, self._session
).create()
2023-04-09 20:50:28 +02:00
return self
2023-02-13 01:41:38 +01:00
2023-04-13 23:25:49 +02:00
async def load_appliances(self) -> Dict:
2023-04-09 18:13:50 +02:00
async with self._hon.get(f"{const.API_URL}/commands/v1/appliance") as resp:
2023-04-09 20:50:28 +02:00
return await resp.json()
2023-04-13 23:25:49 +02:00
async def load_commands(self, appliance: HonAppliance) -> Dict:
params: Dict = {
2023-04-09 20:50:28 +02:00
"applianceType": appliance.appliance_type,
"code": appliance.info["code"],
"applianceModelId": appliance.appliance_model_id,
"macAddress": appliance.mac_address,
2023-02-13 01:41:38 +01:00
"os": const.OS,
"appVersion": const.APP_VERSION,
2023-04-09 20:50:28 +02:00
"series": appliance.info["series"],
2023-02-13 01:41:38 +01:00
}
2023-04-23 14:40:39 +02:00
if firmware_id := appliance.info.get("eepromId"):
params["firmwareId"] = firmware_id
2023-04-23 19:28:56 +02:00
if firmware_version := appliance.info.get("fwVersion"):
params["fwVersion"] = firmware_version
2023-04-13 23:25:49 +02:00
url: str = f"{const.API_URL}/commands/v1/retrieve"
2023-04-09 18:13:50 +02:00
async with self._hon.get(url, params=params) as response:
2023-04-13 23:25:49 +02:00
result: Dict = (await response.json()).get("payload", {})
2023-02-13 01:41:38 +01:00
if not result or result.pop("resultCode") != "0":
return {}
return result
2023-04-13 23:25:49 +02:00
async def command_history(self, appliance: HonAppliance) -> Dict:
url: str = (
f"{const.API_URL}/commands/v1/appliance/{appliance.mac_address}/history"
)
2023-04-09 18:13:50 +02:00
async with self._hon.get(url) as response:
2023-04-13 23:25:49 +02:00
result: Dict = await response.json()
2023-03-11 02:31:56 +01:00
if not result or not result.get("payload"):
return {}
return result["payload"]["history"]
2023-04-13 23:25:49 +02:00
async def last_activity(self, appliance: HonAppliance) -> Dict:
url: str = f"{const.API_URL}/commands/v1/retrieve-last-activity"
params: Dict = {"macAddress": appliance.mac_address}
2023-04-09 18:13:50 +02:00
async with self._hon.get(url, params=params) as response:
2023-04-13 23:25:49 +02:00
result: Dict = await response.json()
2023-03-19 01:08:54 +01:00
if result and (activity := result.get("attributes")):
return activity
return {}
2023-05-06 16:07:28 +02:00
async def appliance_model(self, appliance: HonAppliance) -> Dict:
url: str = f"{const.API_URL}/commands/v1/appliance-model"
params: Dict = {
"code": appliance.info["code"],
"macAddress": appliance.mac_address,
}
async with self._hon.get(url, params=params) as response:
result: Dict = await response.json()
if result and (activity := result.get("attributes")):
return activity
return {}
2023-04-13 23:25:49 +02:00
async def load_attributes(self, appliance: HonAppliance) -> Dict:
params: Dict = {
2023-04-09 20:50:28 +02:00
"macAddress": appliance.mac_address,
"applianceType": appliance.appliance_type,
2023-04-09 20:55:36 +02:00
"category": "CYCLE",
2023-02-13 01:41:38 +01:00
}
2023-04-13 23:25:49 +02:00
url: str = f"{const.API_URL}/commands/v1/context"
2023-04-09 18:13:50 +02:00
async with self._hon.get(url, params=params) as response:
2023-02-13 01:41:38 +01:00
return (await response.json()).get("payload", {})
2023-04-13 23:25:49 +02:00
async def load_statistics(self, appliance: HonAppliance) -> Dict:
params: Dict = {
2023-04-09 20:50:28 +02:00
"macAddress": appliance.mac_address,
2023-04-09 20:55:36 +02:00
"applianceType": appliance.appliance_type,
2023-02-13 01:41:38 +01:00
}
2023-04-13 23:25:49 +02:00
url: str = f"{const.API_URL}/commands/v1/statistics"
2023-04-09 18:13:50 +02:00
async with self._hon.get(url, params=params) as response:
2023-02-13 01:41:38 +01:00
return (await response.json()).get("payload", {})
2023-04-13 23:25:49 +02:00
async def send_command(
self,
appliance: HonAppliance,
command: str,
parameters: Dict,
ancillary_parameters: Dict,
) -> bool:
now: str = datetime.utcnow().isoformat()
data: Dict = {
2023-04-09 20:50:28 +02:00
"macAddress": appliance.mac_address,
2023-02-13 01:41:38 +01:00
"timestamp": f"{now[:-3]}Z",
"commandName": command,
2023-04-09 20:50:28 +02:00
"transactionId": f"{appliance.mac_address}_{now[:-3]}Z",
"applianceOptions": appliance.commands_options,
2023-04-15 00:29:24 +02:00
"device": self._hon.device.get(mobile=True),
2023-02-13 01:41:38 +01:00
"attributes": {
"channel": "mobileApp",
"origin": "standardProgram",
2023-04-09 20:55:36 +02:00
"energyLabel": "0",
2023-02-13 01:41:38 +01:00
},
"ancillaryParameters": ancillary_parameters,
"parameters": parameters,
2023-04-09 20:55:36 +02:00
"applianceType": appliance.appliance_type,
2023-02-13 01:41:38 +01:00
}
2023-04-13 23:25:49 +02:00
url: str = f"{const.API_URL}/commands/v1/send"
2023-04-15 00:29:24 +02:00
async with self._hon.post(url, json=data) as response:
json_data: Dict = await response.json()
2023-04-09 20:50:28 +02:00
if json_data.get("payload", {}).get("resultCode") == "0":
2023-02-13 01:41:38 +01:00
return True
2023-04-15 00:29:24 +02:00
_LOGGER.error(await response.text())
2023-02-13 01:41:38 +01:00
return False
2023-04-09 18:13:50 +02:00
2023-04-13 23:25:49 +02:00
async def appliance_configuration(self) -> Dict:
2023-05-06 16:07:28 +02:00
url: str = f"{const.API_URL}/config/v1/program-list-rules"
2023-04-09 18:13:50 +02:00
async with self._hon_anonymous.get(url) as response:
2023-04-13 23:25:49 +02:00
result: Dict = await response.json()
2023-04-09 18:13:50 +02:00
if result and (data := result.get("payload")):
return data
return {}
2023-04-13 23:25:49 +02:00
async def app_config(self, language: str = "en", beta: bool = True) -> Dict:
url: str = f"{const.API_URL}/app-config"
payload_data: Dict = {
2023-04-09 18:13:50 +02:00
"languageCode": language,
"beta": beta,
"appVersion": const.APP_VERSION,
2023-04-09 20:55:36 +02:00
"os": const.OS,
2023-04-09 18:13:50 +02:00
}
2023-04-13 23:25:49 +02:00
payload: str = json.dumps(payload_data, separators=(",", ":"))
2023-04-09 18:13:50 +02:00
async with self._hon_anonymous.post(url, data=payload) as response:
if (result := await response.json()) and (data := result.get("payload")):
return data
return {}
2023-04-13 23:25:49 +02:00
async def translation_keys(self, language: str = "en") -> Dict:
2023-04-09 18:13:50 +02:00
config = await self.app_config(language=language)
if url := config.get("language", {}).get("jsonPath"):
async with self._hon_anonymous.get(url) as response:
if result := await response.json():
return result
return {}
2023-04-09 20:50:28 +02:00
2023-04-13 23:25:49 +02:00
async def close(self) -> None:
if self._hon_handler is not None:
await self._hon_handler.close()
if self._hon_anonymous_handler is not None:
await self._hon_anonymous_handler.close()