1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-28 19:26:11 +01:00
Files
2026-04-30 21:14:48 +02:00

70 lines
2.3 KiB
Python

"""Support for package tracking sensors from 17track.net."""
from homeassistant.components.sensor import SensorEntity
from homeassistant.core import HomeAssistant
from homeassistant.helpers.device_registry import DeviceEntryType, DeviceInfo
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
from homeassistant.helpers.typing import StateType
from homeassistant.helpers.update_coordinator import CoordinatorEntity
from .const import ATTRIBUTION, DOMAIN
from .coordinator import SeventeenTrackConfigEntry, SeventeenTrackCoordinator
async def async_setup_entry(
hass: HomeAssistant,
config_entry: SeventeenTrackConfigEntry,
async_add_entities: AddConfigEntryEntitiesCallback,
) -> None:
"""Set up a 17Track sensor entry."""
coordinator = config_entry.runtime_data
async_add_entities(
SeventeenTrackSummarySensor(status, coordinator)
for status, summary_data in coordinator.data.summary.items()
)
class SeventeenTrackSensor(CoordinatorEntity[SeventeenTrackCoordinator], SensorEntity):
"""Define a 17Track sensor."""
_attr_attribution = ATTRIBUTION
_attr_has_entity_name = True
def __init__(self, coordinator: SeventeenTrackCoordinator) -> None:
"""Initialize the sensor."""
super().__init__(coordinator)
self._attr_device_info = DeviceInfo(
identifiers={(DOMAIN, coordinator.account_id)},
entry_type=DeviceEntryType.SERVICE,
name="17Track",
)
class SeventeenTrackSummarySensor(SeventeenTrackSensor):
"""Define a summary sensor."""
_attr_native_unit_of_measurement = "packages"
def __init__(
self,
status: str,
coordinator: SeventeenTrackCoordinator,
) -> None:
"""Initialize the sensor."""
super().__init__(coordinator)
self._status = status
self._attr_translation_key = status
self._attr_unique_id = f"summary_{coordinator.account_id}_{status}"
@property
def available(self) -> bool:
"""Return whether the entity is available."""
return self._status in self.coordinator.data.summary
@property
def native_value(self) -> StateType:
"""Return the state of the sensor."""
return self.coordinator.data.summary[self._status]["quantity"]