36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
"""Entity representing a YouTube account."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.helpers.device_registry import DeviceEntryType
|
|
from homeassistant.helpers.entity import DeviceInfo, EntityDescription
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
|
|
from .const import ATTR_TITLE, DOMAIN, MANUFACTURER
|
|
from .coordinator import YouTubeDataUpdateCoordinator
|
|
|
|
|
|
class YouTubeChannelEntity(CoordinatorEntity):
|
|
"""An HA implementation for YouTube entity."""
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: YouTubeDataUpdateCoordinator,
|
|
description: EntityDescription,
|
|
channel_id: str,
|
|
) -> None:
|
|
"""Initialize a YouTube entity."""
|
|
super().__init__(coordinator)
|
|
self.entity_description = description
|
|
self._attr_unique_id = (
|
|
f"{coordinator.config_entry.entry_id}_{channel_id}_{description.key}"
|
|
)
|
|
self._channel_id = channel_id
|
|
self._attr_device_info = DeviceInfo(
|
|
entry_type=DeviceEntryType.SERVICE,
|
|
identifiers={(DOMAIN, f"{coordinator.config_entry.entry_id}_{channel_id}")},
|
|
manufacturer=MANUFACTURER,
|
|
name=coordinator.data[channel_id][ATTR_TITLE],
|
|
)
|