2022-01-25 08:51:55 +00:00
|
|
|
"""Support for Synology DSM buttons."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
from collections.abc import Callable
|
|
|
|
from dataclasses import dataclass
|
|
|
|
import logging
|
|
|
|
from typing import Any, Final
|
|
|
|
|
|
|
|
from homeassistant.components.button import (
|
|
|
|
ButtonDeviceClass,
|
|
|
|
ButtonEntity,
|
|
|
|
ButtonEntityDescription,
|
|
|
|
)
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from homeassistant.helpers.entity import DeviceInfo, EntityCategory
|
|
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
|
|
|
|
from . import SynoApi
|
2022-06-09 20:22:16 +00:00
|
|
|
from .const import DOMAIN
|
|
|
|
from .models import SynologyDSMData
|
2022-01-25 08:51:55 +00:00
|
|
|
|
|
|
|
LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class SynologyDSMbuttonDescriptionMixin:
|
|
|
|
"""Mixin to describe a Synology DSM button entity."""
|
|
|
|
|
|
|
|
press_action: Callable[[SynoApi], Any]
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass
|
|
|
|
class SynologyDSMbuttonDescription(
|
|
|
|
ButtonEntityDescription, SynologyDSMbuttonDescriptionMixin
|
|
|
|
):
|
|
|
|
"""Class to describe a Synology DSM button entity."""
|
|
|
|
|
|
|
|
|
|
|
|
BUTTONS: Final = [
|
|
|
|
SynologyDSMbuttonDescription(
|
|
|
|
key="reboot",
|
|
|
|
name="Reboot",
|
|
|
|
device_class=ButtonDeviceClass.RESTART,
|
|
|
|
entity_category=EntityCategory.CONFIG,
|
|
|
|
press_action=lambda syno_api: syno_api.async_reboot(),
|
|
|
|
),
|
|
|
|
SynologyDSMbuttonDescription(
|
|
|
|
key="shutdown",
|
|
|
|
name="Shutdown",
|
|
|
|
icon="mdi:power",
|
|
|
|
entity_category=EntityCategory.CONFIG,
|
|
|
|
press_action=lambda syno_api: syno_api.async_shutdown(),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(
|
|
|
|
hass: HomeAssistant,
|
|
|
|
entry: ConfigEntry,
|
|
|
|
async_add_entities: AddEntitiesCallback,
|
|
|
|
) -> None:
|
|
|
|
"""Set buttons for device."""
|
2022-06-09 20:22:16 +00:00
|
|
|
data: SynologyDSMData = hass.data[DOMAIN][entry.unique_id]
|
|
|
|
async_add_entities(SynologyDSMButton(data.api, button) for button in BUTTONS)
|
2022-01-25 08:51:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SynologyDSMButton(ButtonEntity):
|
|
|
|
"""Defines a Synology DSM button."""
|
|
|
|
|
|
|
|
entity_description: SynologyDSMbuttonDescription
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
api: SynoApi,
|
|
|
|
description: SynologyDSMbuttonDescription,
|
|
|
|
) -> None:
|
|
|
|
"""Initialize the Synology DSM binary_sensor entity."""
|
|
|
|
self.entity_description = description
|
|
|
|
self.syno_api = api
|
|
|
|
|
|
|
|
self._attr_name = f"{api.network.hostname} {description.name}"
|
|
|
|
self._attr_unique_id = f"{api.information.serial}_{description.key}"
|
|
|
|
self._attr_device_info = DeviceInfo(
|
|
|
|
identifiers={(DOMAIN, api.information.serial)}
|
|
|
|
)
|
|
|
|
|
|
|
|
async def async_press(self) -> None:
|
|
|
|
"""Triggers the Synology DSM button press service."""
|
|
|
|
LOGGER.debug(
|
|
|
|
"Trigger %s for %s",
|
|
|
|
self.entity_description.key,
|
|
|
|
self.syno_api.network.hostname,
|
|
|
|
)
|
|
|
|
await self.entity_description.press_action(self.syno_api)
|