mirror of
https://github.com/home-assistant/core.git
synced 2026-05-26 18:26:25 +01:00
01f0e4fe48
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
68 lines
2.3 KiB
Python
68 lines
2.3 KiB
Python
"""Base entity for ntfy integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from yarl import URL
|
|
|
|
from homeassistant.config_entries import ConfigSubentry
|
|
from homeassistant.const import CONF_URL
|
|
from homeassistant.helpers.device_registry import DeviceEntryType, DeviceInfo
|
|
from homeassistant.helpers.entity import Entity, EntityDescription
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
|
|
from .const import CONF_TOPIC, DOMAIN
|
|
from .coordinator import BaseDataUpdateCoordinator, NtfyConfigEntry
|
|
|
|
|
|
class NtfyBaseEntity(Entity):
|
|
"""Base entity."""
|
|
|
|
_attr_has_entity_name = True
|
|
_attr_should_poll = False
|
|
|
|
def __init__(
|
|
self,
|
|
config_entry: NtfyConfigEntry,
|
|
subentry: ConfigSubentry,
|
|
) -> None:
|
|
"""Initialize the entity."""
|
|
self.topic = subentry.data[CONF_TOPIC]
|
|
|
|
self._attr_unique_id = f"{config_entry.entry_id}_{subentry.subentry_id}_{self.entity_description.key}"
|
|
|
|
self._attr_device_info = DeviceInfo(
|
|
entry_type=DeviceEntryType.SERVICE,
|
|
manufacturer="ntfy LLC",
|
|
model="ntfy",
|
|
name=subentry.title,
|
|
configuration_url=URL(config_entry.data[CONF_URL]) / self.topic,
|
|
identifiers={(DOMAIN, f"{config_entry.entry_id}_{subentry.subentry_id}")},
|
|
via_device=(DOMAIN, config_entry.entry_id),
|
|
)
|
|
self.ntfy = config_entry.runtime_data.account.ntfy
|
|
self.config_entry = config_entry
|
|
self.subentry = subentry
|
|
|
|
|
|
class NtfyCommonBaseEntity(CoordinatorEntity[BaseDataUpdateCoordinator]):
|
|
"""Base entity for common entities."""
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: BaseDataUpdateCoordinator,
|
|
description: EntityDescription,
|
|
) -> None:
|
|
"""Initialize entity."""
|
|
super().__init__(coordinator)
|
|
self.entity_description = description
|
|
self._attr_unique_id = f"{coordinator.config_entry.entry_id}_{description.key}"
|
|
self._attr_device_info = DeviceInfo(
|
|
entry_type=DeviceEntryType.SERVICE,
|
|
manufacturer="ntfy LLC",
|
|
model="ntfy",
|
|
configuration_url=URL(coordinator.config_entry.data[CONF_URL]) / "app",
|
|
identifiers={(DOMAIN, coordinator.config_entry.entry_id)},
|
|
)
|