mirror of
https://github.com/home-assistant/core.git
synced 2026-01-25 00:52:39 +01:00
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
"""Base entity for Sleep as Android integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from abc import abstractmethod
|
|
|
|
from homeassistant.const import CONF_WEBHOOK_ID
|
|
from homeassistant.helpers.device_registry import DeviceInfo
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
from homeassistant.helpers.entity import Entity, EntityDescription
|
|
|
|
from . import SleepAsAndroidConfigEntry
|
|
from .const import DOMAIN
|
|
|
|
|
|
class SleepAsAndroidEntity(Entity):
|
|
"""Base entity."""
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
def __init__(
|
|
self,
|
|
config_entry: SleepAsAndroidConfigEntry,
|
|
entity_description: EntityDescription,
|
|
) -> None:
|
|
"""Initialize the entity."""
|
|
|
|
self._attr_unique_id = f"{config_entry.entry_id}_{entity_description.key}"
|
|
self.entity_description = entity_description
|
|
self.webhook_id = config_entry.data[CONF_WEBHOOK_ID]
|
|
self._attr_device_info = DeviceInfo(
|
|
connections={(DOMAIN, config_entry.entry_id)},
|
|
manufacturer="Urbandroid",
|
|
model="Sleep as Android",
|
|
name=config_entry.title,
|
|
)
|
|
|
|
@abstractmethod
|
|
def _async_handle_event(self, webhook_id: str, data: dict[str, str]) -> None:
|
|
"""Handle the Sleep as Android event."""
|
|
|
|
async def async_added_to_hass(self) -> None:
|
|
"""Register event callback."""
|
|
|
|
self.async_on_remove(
|
|
async_dispatcher_connect(self.hass, DOMAIN, self._async_handle_event)
|
|
)
|