core/homeassistant/components/launch_library/sensor.py

207 lines
6.8 KiB
Python
Raw Normal View History

"""Support for Launch Library sensors."""
2021-03-18 12:07:04 +00:00
from __future__ import annotations
from collections.abc import Callable
from dataclasses import dataclass
from datetime import datetime
from typing import Any
2022-01-26 14:37:15 +00:00
from pylaunches.objects.event import Event
from pylaunches.objects.launch import Launch
from homeassistant.components.sensor import (
SensorDeviceClass,
SensorEntity,
SensorEntityDescription,
)
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import CONF_NAME, PERCENTAGE
from homeassistant.core import HomeAssistant, callback
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.update_coordinator import (
CoordinatorEntity,
DataUpdateCoordinator,
)
from homeassistant.util.dt import parse_datetime
from . import LaunchLibraryData
from .const import DOMAIN
DEFAULT_NEXT_LAUNCH_NAME = "Next launch"
@dataclass
class LaunchLibrarySensorEntityDescriptionMixin:
"""Mixin for required keys."""
2022-01-26 14:37:15 +00:00
value_fn: Callable[[Launch | Event], datetime | int | str | None]
attributes_fn: Callable[[Launch | Event], dict[str, Any] | None]
@dataclass
class LaunchLibrarySensorEntityDescription(
SensorEntityDescription, LaunchLibrarySensorEntityDescriptionMixin
):
"""Describes a Next Launch sensor entity."""
SENSOR_DESCRIPTIONS: tuple[LaunchLibrarySensorEntityDescription, ...] = (
LaunchLibrarySensorEntityDescription(
key="next_launch",
icon="mdi:rocket-launch",
name="Next launch",
value_fn=lambda nl: nl.name,
attributes_fn=lambda nl: {
"provider": nl.launch_service_provider.name,
"pad": nl.pad.name,
"facility": nl.pad.location.name,
"provider_country_code": nl.pad.location.country_code,
},
),
LaunchLibrarySensorEntityDescription(
key="launch_time",
icon="mdi:clock-outline",
name="Launch time",
device_class=SensorDeviceClass.TIMESTAMP,
value_fn=lambda nl: parse_datetime(nl.net),
attributes_fn=lambda nl: {
"window_start": nl.window_start,
"window_end": nl.window_end,
"stream_live": nl.webcast_live,
},
),
LaunchLibrarySensorEntityDescription(
key="launch_probability",
icon="mdi:dice-multiple",
name="Launch probability",
native_unit_of_measurement=PERCENTAGE,
value_fn=lambda nl: None if nl.probability == -1 else nl.probability,
attributes_fn=lambda nl: None,
),
LaunchLibrarySensorEntityDescription(
key="launch_status",
icon="mdi:rocket-launch",
name="Launch status",
value_fn=lambda nl: nl.status.name,
attributes_fn=lambda nl: {"reason": nl.holdreason} if nl.inhold else None,
),
LaunchLibrarySensorEntityDescription(
key="launch_mission",
icon="mdi:orbit",
name="Launch mission",
value_fn=lambda nl: nl.mission.name,
attributes_fn=lambda nl: {
"mission_type": nl.mission.type,
"target_orbit": nl.mission.orbit.name,
"description": nl.mission.description,
},
),
LaunchLibrarySensorEntityDescription(
key="starship_launch",
icon="mdi:rocket",
name="Next Starship launch",
device_class=SensorDeviceClass.TIMESTAMP,
value_fn=lambda sl: parse_datetime(sl.net),
attributes_fn=lambda sl: {
"title": sl.mission.name,
"status": sl.status.name,
"target_orbit": sl.mission.orbit.name,
"description": sl.mission.description,
},
),
2022-01-26 14:37:15 +00:00
LaunchLibrarySensorEntityDescription(
key="starship_event",
icon="mdi:calendar",
name="Next Starship event",
device_class=SensorDeviceClass.TIMESTAMP,
value_fn=lambda se: parse_datetime(se.date),
attributes_fn=lambda se: {
"title": se.name,
"location": se.location,
"stream": se.video_url,
"description": se.description,
},
),
)
async def async_setup_entry(
hass: HomeAssistant,
entry: ConfigEntry,
async_add_entities: AddEntitiesCallback,
) -> None:
"""Set up the sensor platform."""
name = entry.data.get(CONF_NAME, DEFAULT_NEXT_LAUNCH_NAME)
coordinator: DataUpdateCoordinator[LaunchLibraryData] = hass.data[DOMAIN]
async_add_entities(
LaunchLibrarySensor(
coordinator=coordinator,
entry_id=entry.entry_id,
description=description,
name=name if description.key == "next_launch" else None,
)
for description in SENSOR_DESCRIPTIONS
)
class LaunchLibrarySensor(
CoordinatorEntity[DataUpdateCoordinator[LaunchLibraryData]], SensorEntity
):
"""Representation of the next launch sensors."""
_attr_attribution = "Data provided by Launch Library."
2022-01-26 14:37:15 +00:00
_next_event: Launch | Event | None = None
entity_description: LaunchLibrarySensorEntityDescription
def __init__(
self,
coordinator: DataUpdateCoordinator[LaunchLibraryData],
entry_id: str,
description: LaunchLibrarySensorEntityDescription,
name: str | None = None,
) -> None:
"""Initialize a Launch Library sensor."""
super().__init__(coordinator)
if name:
self._attr_name = name
self._attr_unique_id = f"{entry_id}_{description.key}"
self.entity_description = description
@property
def native_value(self) -> datetime | str | int | None:
"""Return the state of the sensor."""
2022-01-26 14:37:15 +00:00
if self._next_event is None:
return None
2022-01-26 14:37:15 +00:00
return self.entity_description.value_fn(self._next_event)
@property
def extra_state_attributes(self) -> dict[str, Any] | None:
"""Return the attributes of the sensor."""
2022-01-26 14:37:15 +00:00
if self._next_event is None:
return None
2022-01-26 14:37:15 +00:00
return self.entity_description.attributes_fn(self._next_event)
@property
def available(self) -> bool:
"""Return if the sensor is available."""
2022-01-26 14:37:15 +00:00
return super().available and self._next_event is not None
@callback
def _handle_coordinator_update(self) -> None:
"""Handle updated data from the coordinator."""
if self.entity_description.key == "starship_launch":
2022-01-26 14:37:15 +00:00
events = self.coordinator.data["starship_events"].upcoming.launches
elif self.entity_description.key == "starship_event":
events = self.coordinator.data["starship_events"].upcoming.events
else:
2022-01-26 14:37:15 +00:00
events = self.coordinator.data["upcoming_launches"]
2022-01-26 14:37:15 +00:00
self._next_event = next((event for event in (events)), None)
super()._handle_coordinator_update()
async def async_added_to_hass(self) -> None:
"""When entity is added to hass."""
await super().async_added_to_hass()
self._handle_coordinator_update()