mirror of https://github.com/home-assistant/core
56 lines
2.0 KiB
Python
56 lines
2.0 KiB
Python
"""ONVIF Buttons."""
|
|
|
|
from homeassistant.components.button import ButtonDeviceClass, ButtonEntity
|
|
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
|
|
from .device import ONVIFDevice
|
|
from .entity import ONVIFBaseEntity
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up ONVIF button based on a config entry."""
|
|
device = hass.data[DOMAIN][config_entry.unique_id]
|
|
async_add_entities([RebootButton(device), SetSystemDateAndTimeButton(device)])
|
|
|
|
|
|
class RebootButton(ONVIFBaseEntity, ButtonEntity):
|
|
"""Defines a ONVIF reboot button."""
|
|
|
|
_attr_device_class = ButtonDeviceClass.RESTART
|
|
_attr_entity_category = EntityCategory.CONFIG
|
|
|
|
def __init__(self, device: ONVIFDevice) -> None:
|
|
"""Initialize the button entity."""
|
|
super().__init__(device)
|
|
self._attr_name = f"{self.device.name} Reboot"
|
|
self._attr_unique_id = f"{self.mac_or_serial}_reboot"
|
|
|
|
async def async_press(self) -> None:
|
|
"""Send out a SystemReboot command."""
|
|
device_mgmt = await self.device.device.create_devicemgmt_service()
|
|
await device_mgmt.SystemReboot()
|
|
|
|
|
|
class SetSystemDateAndTimeButton(ONVIFBaseEntity, ButtonEntity):
|
|
"""Defines a ONVIF SetSystemDateAndTime button."""
|
|
|
|
_attr_entity_category = EntityCategory.CONFIG
|
|
|
|
def __init__(self, device: ONVIFDevice) -> None:
|
|
"""Initialize the button entity."""
|
|
super().__init__(device)
|
|
self._attr_name = f"{self.device.name} Set System Date and Time"
|
|
self._attr_unique_id = f"{self.mac_or_serial}_setsystemdatetime"
|
|
|
|
async def async_press(self) -> None:
|
|
"""Send out a SetSystemDateAndTime command."""
|
|
await self.device.async_manually_set_date_and_time()
|