mirror of https://github.com/home-assistant/core
74 lines
2.2 KiB
Python
74 lines
2.2 KiB
Python
"""Support for the QNAP QSW buttons."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Awaitable, Callable
|
|
from dataclasses import dataclass
|
|
from typing import Final
|
|
|
|
from aioqsw.localapi import QnapQswApi
|
|
|
|
from homeassistant.components.button import (
|
|
ButtonDeviceClass,
|
|
ButtonEntity,
|
|
ButtonEntityDescription,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import EntityCategory
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .const import DOMAIN, QSW_COORD_DATA, QSW_REBOOT
|
|
from .coordinator import QswDataCoordinator
|
|
from .entity import QswDataEntity
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class QswButtonDescription(ButtonEntityDescription):
|
|
"""Class to describe a Button entity."""
|
|
|
|
press_action: Callable[[QnapQswApi], Awaitable[bool]]
|
|
|
|
|
|
BUTTON_TYPES: Final[tuple[QswButtonDescription, ...]] = (
|
|
QswButtonDescription(
|
|
device_class=ButtonDeviceClass.RESTART,
|
|
entity_category=EntityCategory.CONFIG,
|
|
key=QSW_REBOOT,
|
|
press_action=lambda qsw: qsw.reboot(),
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
|
|
) -> None:
|
|
"""Add QNAP QSW buttons from a config_entry."""
|
|
coordinator: QswDataCoordinator = hass.data[DOMAIN][entry.entry_id][QSW_COORD_DATA]
|
|
async_add_entities(
|
|
QswButton(coordinator, description, entry) for description in BUTTON_TYPES
|
|
)
|
|
|
|
|
|
class QswButton(QswDataEntity, ButtonEntity):
|
|
"""Define a QNAP QSW button."""
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
entity_description: QswButtonDescription
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: QswDataCoordinator,
|
|
description: QswButtonDescription,
|
|
entry: ConfigEntry,
|
|
) -> None:
|
|
"""Initialize."""
|
|
super().__init__(coordinator, entry)
|
|
self._attr_unique_id = f"{entry.unique_id}_{description.key}"
|
|
self.entity_description = description
|
|
|
|
async def async_press(self) -> None:
|
|
"""Triggers the QNAP QSW button action."""
|
|
await self.entity_description.press_action(self.coordinator.qsw)
|