hon/custom_components/hon/button.py

133 lines
4.6 KiB
Python
Raw Normal View History

2023-04-11 14:08:47 -06:00
import logging
2023-06-25 09:33:30 -06:00
from pathlib import Path
2023-04-11 14:08:47 -06:00
2023-05-11 15:59:01 -06:00
from homeassistant.components import persistent_notification
2023-03-03 10:23:30 -07:00
from homeassistant.components.button import ButtonEntityDescription, ButtonEntity
from homeassistant.config_entries import ConfigEntry
2023-06-19 08:47:30 -06:00
from homeassistant.helpers.entity import EntityCategory
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import HomeAssistantType
2023-04-09 23:09:54 -06:00
from pyhon.appliance import HonAppliance
2023-03-03 10:23:30 -07:00
from .const import DOMAIN
2024-03-28 18:22:44 -06:00
from .entity import HonEntity
from .typedefs import HonButtonType
2023-03-03 10:23:30 -07:00
2023-04-11 14:08:47 -06:00
_LOGGER = logging.getLogger(__name__)
2023-03-03 10:23:30 -07:00
BUTTONS: dict[str, tuple[ButtonEntityDescription, ...]] = {
2023-04-16 05:55:08 -06:00
"IH": (
2023-04-14 20:27:40 -06:00
ButtonEntityDescription(
key="startProgram",
name="Start Program",
icon="mdi:pot-steam",
2023-04-22 18:01:14 -06:00
translation_key="induction_hob",
2023-04-14 20:27:40 -06:00
),
),
2023-05-21 12:51:20 -06:00
"REF": (
ButtonEntityDescription(
key="startProgram",
name="Program Start",
icon="mdi:play",
translation_key="start_program",
),
ButtonEntityDescription(
key="stopProgram",
name="Program Stop",
icon="mdi:stop",
translation_key="stop_program",
),
),
2024-03-17 16:54:50 -06:00
"FRE": (
ButtonEntityDescription(
key="startProgram",
name="Program Start",
icon="mdi:play",
translation_key="start_program",
),
ButtonEntityDescription(
key="stopProgram",
name="Program Stop",
icon="mdi:stop",
translation_key="stop_program",
),
),
2023-03-03 10:23:30 -07:00
}
async def async_setup_entry(
hass: HomeAssistantType, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
entities: list[HonButtonType] = []
2024-03-28 18:22:44 -06:00
for device in hass.data[DOMAIN][entry.unique_id]["hon"].appliances:
2023-05-24 17:30:33 -06:00
for description in BUTTONS.get(device.appliance_type, []):
if not device.commands.get(description.key):
continue
entity = HonButtonEntity(hass, entry, device, description)
entities.append(entity)
2023-06-25 09:33:30 -06:00
entities.append(HonDeviceInfo(hass, entry, device))
entities.append(HonDataArchive(hass, entry, device))
2023-05-24 17:30:33 -06:00
async_add_entities(entities)
2023-03-03 10:23:30 -07:00
class HonButtonEntity(HonEntity, ButtonEntity):
2023-05-27 16:30:08 -06:00
entity_description: ButtonEntityDescription
2023-03-03 10:23:30 -07:00
async def async_press(self) -> None:
await self._device.commands[self.entity_description.key].send()
2023-04-11 14:08:47 -06:00
@property
def available(self) -> bool:
"""Return True if entity is available."""
return (
super().available
2023-06-12 16:14:51 -06:00
and int(self._device.get("remoteCtrValid", "1")) == 1
2024-03-29 07:48:35 -06:00
and self._device.connection
)
2023-04-11 14:08:47 -06:00
2023-06-25 09:33:30 -06:00
class HonDeviceInfo(HonEntity, ButtonEntity):
def __init__(
self, hass: HomeAssistantType, entry: ConfigEntry, device: HonAppliance
) -> None:
2023-05-24 17:30:33 -06:00
super().__init__(hass, entry, device)
2023-04-11 14:08:47 -06:00
2023-06-25 09:33:30 -06:00
self._attr_unique_id = f"{super().unique_id}_show_device_info"
2023-04-11 14:08:47 -06:00
self._attr_icon = "mdi:information"
2023-05-11 15:59:01 -06:00
self._attr_name = "Show Device Info"
2023-04-11 14:08:47 -06:00
self._attr_entity_category = EntityCategory.DIAGNOSTIC
2024-03-28 18:22:44 -06:00
self._attr_entity_registry_enabled_default = False
2023-04-11 14:08:47 -06:00
async def async_press(self) -> None:
2023-05-11 15:59:01 -06:00
title = f"{self._device.nick_name} Device Info"
2023-05-18 17:27:44 -06:00
persistent_notification.create(
2024-03-28 18:22:44 -06:00
self._hass, f"````\n```\n{self._device.diagnose}\n```\n````", title
2023-05-18 17:27:44 -06:00
)
2024-03-28 18:22:44 -06:00
_LOGGER.info(self._device.diagnose.replace(" ", "\u200B "))
2023-06-25 09:33:30 -06:00
class HonDataArchive(HonEntity, ButtonEntity):
def __init__(
self, hass: HomeAssistantType, entry: ConfigEntry, device: HonAppliance
) -> None:
2023-06-25 09:33:30 -06:00
super().__init__(hass, entry, device)
self._attr_unique_id = f"{super().unique_id}_create_data_archive"
self._attr_icon = "mdi:archive-arrow-down"
self._attr_name = "Create Data Archive"
self._attr_entity_category = EntityCategory.DIAGNOSTIC
2024-03-28 18:22:44 -06:00
self._attr_entity_registry_enabled_default = False
2023-06-25 09:33:30 -06:00
async def async_press(self) -> None:
if (config_dir := self._hass.config.config_dir) is None:
raise ValueError("Missing Config Dir")
path = Path(config_dir) / "www"
2023-06-25 09:33:30 -06:00
data = await self._device.data_archive(path)
title = f"{self._device.nick_name} Data Archive"
text = (
f'<a href="/local/{data}" target="_blank">{data}</a> <br/><br/> '
f"Use this data for [GitHub Issues of Haier hOn](https://github.com/Andre0512/hon).<br/>"
f"Or add it to the [hon-test-data collection](https://github.com/Andre0512/hon-test-data)."
)
persistent_notification.create(self._hass, text, title)