mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 09:47:52 +00:00

* Add Pterodactyl integration * Remove translation for unavailable platform sensor, use constant for host * Improve data descriptions * Replace index based handling of data (list) with dict[str, PterodactylData] * Replace CONF_HOST with CONF_URL * Parse URL with YARL * Set proper availability in binary sensor * Remove storage of data within api.py * Fix some review findings * Use better unique ID for binary_sensor * Fix more review findings * Fix remaining review findings * Add wrapper for server and util API, use underscore in unique ID * Reuse result in config flow tests * Patch async_setup_entry in config_flow tests * Move patching of library APIs to the fixture mock_pterodactyl
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
"""Base entity for the Pterodactyl integration."""
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_URL
|
|
from homeassistant.helpers.device_registry import DeviceInfo
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
|
|
from .api import PterodactylData
|
|
from .const import DOMAIN
|
|
from .coordinator import PterodactylCoordinator
|
|
|
|
MANUFACTURER = "Pterodactyl"
|
|
|
|
|
|
class PterodactylEntity(CoordinatorEntity[PterodactylCoordinator]):
|
|
"""Representation of a Pterodactyl base entity."""
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: PterodactylCoordinator,
|
|
identifier: str,
|
|
config_entry: ConfigEntry,
|
|
) -> None:
|
|
"""Initialize base entity."""
|
|
super().__init__(coordinator)
|
|
|
|
self.identifier = identifier
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={(DOMAIN, identifier)},
|
|
manufacturer=MANUFACTURER,
|
|
name=self.game_server_data.name,
|
|
model=self.game_server_data.name,
|
|
model_id=self.game_server_data.uuid,
|
|
configuration_url=f"{config_entry.data[CONF_URL]}/server/{identifier}",
|
|
)
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return binary sensor availability."""
|
|
return super().available and self.identifier in self.coordinator.data
|
|
|
|
@property
|
|
def game_server_data(self) -> PterodactylData:
|
|
"""Return game server data."""
|
|
return self.coordinator.data[self.identifier]
|