mirror of https://github.com/home-assistant/core
166 lines
5.4 KiB
Python
166 lines
5.4 KiB
Python
"""Sensor for Home Assistant analytics."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Callable
|
|
from dataclasses import dataclass
|
|
|
|
from homeassistant.components.sensor import (
|
|
SensorEntity,
|
|
SensorEntityDescription,
|
|
SensorStateClass,
|
|
)
|
|
from homeassistant.const import EntityCategory
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.device_registry import DeviceEntryType, DeviceInfo
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import StateType
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
|
|
from . import AnalyticsInsightsConfigEntry
|
|
from .const import DOMAIN
|
|
from .coordinator import AnalyticsData, HomeassistantAnalyticsDataUpdateCoordinator
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class AnalyticsSensorEntityDescription(SensorEntityDescription):
|
|
"""Analytics sensor entity description."""
|
|
|
|
value_fn: Callable[[AnalyticsData], StateType]
|
|
|
|
|
|
def get_addon_entity_description(
|
|
name_slug: str,
|
|
) -> AnalyticsSensorEntityDescription:
|
|
"""Get addon entity description."""
|
|
return AnalyticsSensorEntityDescription(
|
|
key=f"addon_{name_slug}_active_installations",
|
|
translation_key="addons",
|
|
name=name_slug,
|
|
state_class=SensorStateClass.TOTAL,
|
|
native_unit_of_measurement="active installations",
|
|
value_fn=lambda data: data.addons.get(name_slug),
|
|
)
|
|
|
|
|
|
def get_core_integration_entity_description(
|
|
domain: str, name: str
|
|
) -> AnalyticsSensorEntityDescription:
|
|
"""Get core integration entity description."""
|
|
return AnalyticsSensorEntityDescription(
|
|
key=f"core_{domain}_active_installations",
|
|
translation_key="core_integrations",
|
|
name=name,
|
|
state_class=SensorStateClass.TOTAL,
|
|
native_unit_of_measurement="active installations",
|
|
value_fn=lambda data: data.core_integrations.get(domain),
|
|
)
|
|
|
|
|
|
def get_custom_integration_entity_description(
|
|
domain: str,
|
|
) -> AnalyticsSensorEntityDescription:
|
|
"""Get custom integration entity description."""
|
|
return AnalyticsSensorEntityDescription(
|
|
key=f"custom_{domain}_active_installations",
|
|
translation_key="custom_integrations",
|
|
translation_placeholders={"custom_integration_domain": domain},
|
|
state_class=SensorStateClass.TOTAL,
|
|
native_unit_of_measurement="active installations",
|
|
value_fn=lambda data: data.custom_integrations.get(domain),
|
|
)
|
|
|
|
|
|
GENERAL_SENSORS = [
|
|
AnalyticsSensorEntityDescription(
|
|
key="total_active_installations",
|
|
translation_key="total_active_installations",
|
|
entity_registry_enabled_default=False,
|
|
state_class=SensorStateClass.TOTAL,
|
|
native_unit_of_measurement="active installations",
|
|
value_fn=lambda data: data.active_installations,
|
|
),
|
|
AnalyticsSensorEntityDescription(
|
|
key="total_reports_integrations",
|
|
translation_key="total_reports_integrations",
|
|
entity_registry_enabled_default=False,
|
|
state_class=SensorStateClass.TOTAL,
|
|
native_unit_of_measurement="active installations",
|
|
value_fn=lambda data: data.reports_integrations,
|
|
),
|
|
]
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: AnalyticsInsightsConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Initialize the entries."""
|
|
|
|
analytics_data = entry.runtime_data
|
|
coordinator: HomeassistantAnalyticsDataUpdateCoordinator = (
|
|
analytics_data.coordinator
|
|
)
|
|
entities: list[HomeassistantAnalyticsSensor] = []
|
|
entities.extend(
|
|
HomeassistantAnalyticsSensor(
|
|
coordinator,
|
|
get_addon_entity_description(addon_name_slug),
|
|
)
|
|
for addon_name_slug in coordinator.data.addons
|
|
)
|
|
entities.extend(
|
|
HomeassistantAnalyticsSensor(
|
|
coordinator,
|
|
get_core_integration_entity_description(
|
|
integration_domain, analytics_data.names[integration_domain]
|
|
),
|
|
)
|
|
for integration_domain in coordinator.data.core_integrations
|
|
)
|
|
entities.extend(
|
|
HomeassistantAnalyticsSensor(
|
|
coordinator,
|
|
get_custom_integration_entity_description(integration_domain),
|
|
)
|
|
for integration_domain in coordinator.data.custom_integrations
|
|
)
|
|
|
|
entities.extend(
|
|
HomeassistantAnalyticsSensor(coordinator, entity_description)
|
|
for entity_description in GENERAL_SENSORS
|
|
)
|
|
|
|
async_add_entities(entities)
|
|
|
|
|
|
class HomeassistantAnalyticsSensor(
|
|
CoordinatorEntity[HomeassistantAnalyticsDataUpdateCoordinator], SensorEntity
|
|
):
|
|
"""Home Assistant Analytics Sensor."""
|
|
|
|
_attr_has_entity_name = True
|
|
_attr_entity_category = EntityCategory.DIAGNOSTIC
|
|
|
|
entity_description: AnalyticsSensorEntityDescription
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: HomeassistantAnalyticsDataUpdateCoordinator,
|
|
entity_description: AnalyticsSensorEntityDescription,
|
|
) -> None:
|
|
"""Initialize the sensor."""
|
|
super().__init__(coordinator)
|
|
self.entity_description = entity_description
|
|
self._attr_unique_id = entity_description.key
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={(DOMAIN, DOMAIN)},
|
|
entry_type=DeviceEntryType.SERVICE,
|
|
)
|
|
|
|
@property
|
|
def native_value(self) -> StateType:
|
|
"""Return the state of the sensor."""
|
|
return self.entity_description.value_fn(self.coordinator.data)
|