mirror of https://github.com/home-assistant/core
62 lines
2.0 KiB
Python
62 lines
2.0 KiB
Python
"""Base class for NYT Games entities."""
|
|
|
|
from homeassistant.helpers.device_registry import DeviceEntryType, DeviceInfo
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import NYTGamesCoordinator
|
|
|
|
|
|
class NYTGamesEntity(CoordinatorEntity[NYTGamesCoordinator]):
|
|
"""Defines a base NYT Games entity."""
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
|
|
class WordleEntity(NYTGamesEntity):
|
|
"""Defines a NYT Games entity."""
|
|
|
|
def __init__(self, coordinator: NYTGamesCoordinator) -> None:
|
|
"""Initialize a NYT Games entity."""
|
|
super().__init__(coordinator)
|
|
unique_id = coordinator.config_entry.unique_id
|
|
assert unique_id is not None
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={(DOMAIN, f"{unique_id}_wordle")},
|
|
entry_type=DeviceEntryType.SERVICE,
|
|
manufacturer="New York Times",
|
|
name="Wordle",
|
|
)
|
|
|
|
|
|
class SpellingBeeEntity(NYTGamesEntity):
|
|
"""Defines a NYT Games entity."""
|
|
|
|
def __init__(self, coordinator: NYTGamesCoordinator) -> None:
|
|
"""Initialize a NYT Games entity."""
|
|
super().__init__(coordinator)
|
|
unique_id = coordinator.config_entry.unique_id
|
|
assert unique_id is not None
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={(DOMAIN, f"{unique_id}_spelling_bee")},
|
|
entry_type=DeviceEntryType.SERVICE,
|
|
manufacturer="New York Times",
|
|
name="Spelling Bee",
|
|
)
|
|
|
|
|
|
class ConnectionsEntity(NYTGamesEntity):
|
|
"""Defines a NYT Games entity."""
|
|
|
|
def __init__(self, coordinator: NYTGamesCoordinator) -> None:
|
|
"""Initialize a NYT Games entity."""
|
|
super().__init__(coordinator)
|
|
unique_id = coordinator.config_entry.unique_id
|
|
assert unique_id is not None
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={(DOMAIN, f"{unique_id}_connections")},
|
|
entry_type=DeviceEntryType.SERVICE,
|
|
manufacturer="New York Times",
|
|
name="Connections",
|
|
)
|