215 lines
6.4 KiB
Python
215 lines
6.4 KiB
Python
"""Sensor platform for Hass.io addons."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.sensor import (
|
|
SensorDeviceClass,
|
|
SensorEntity,
|
|
SensorEntityDescription,
|
|
SensorStateClass,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import PERCENTAGE, EntityCategory, UnitOfInformation
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import ADDONS_COORDINATOR
|
|
from .const import (
|
|
ATTR_CPU_PERCENT,
|
|
ATTR_MEMORY_PERCENT,
|
|
ATTR_VERSION,
|
|
ATTR_VERSION_LATEST,
|
|
DATA_KEY_ADDONS,
|
|
DATA_KEY_CORE,
|
|
DATA_KEY_HOST,
|
|
DATA_KEY_OS,
|
|
DATA_KEY_SUPERVISOR,
|
|
)
|
|
from .entity import (
|
|
HassioAddonEntity,
|
|
HassioCoreEntity,
|
|
HassioHostEntity,
|
|
HassioOSEntity,
|
|
HassioSupervisorEntity,
|
|
)
|
|
|
|
COMMON_ENTITY_DESCRIPTIONS = (
|
|
SensorEntityDescription(
|
|
entity_registry_enabled_default=False,
|
|
key=ATTR_VERSION,
|
|
translation_key="version",
|
|
),
|
|
SensorEntityDescription(
|
|
entity_registry_enabled_default=False,
|
|
key=ATTR_VERSION_LATEST,
|
|
translation_key="version_latest",
|
|
),
|
|
)
|
|
|
|
STATS_ENTITY_DESCRIPTIONS = (
|
|
SensorEntityDescription(
|
|
entity_registry_enabled_default=False,
|
|
key=ATTR_CPU_PERCENT,
|
|
translation_key="cpu_percent",
|
|
icon="mdi:cpu-64-bit",
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
),
|
|
SensorEntityDescription(
|
|
entity_registry_enabled_default=False,
|
|
key=ATTR_MEMORY_PERCENT,
|
|
translation_key="memory_percent",
|
|
icon="mdi:memory",
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
),
|
|
)
|
|
|
|
ADDON_ENTITY_DESCRIPTIONS = COMMON_ENTITY_DESCRIPTIONS + STATS_ENTITY_DESCRIPTIONS
|
|
CORE_ENTITY_DESCRIPTIONS = STATS_ENTITY_DESCRIPTIONS
|
|
OS_ENTITY_DESCRIPTIONS = COMMON_ENTITY_DESCRIPTIONS
|
|
SUPERVISOR_ENTITY_DESCRIPTIONS = STATS_ENTITY_DESCRIPTIONS
|
|
|
|
HOST_ENTITY_DESCRIPTIONS = (
|
|
SensorEntityDescription(
|
|
entity_registry_enabled_default=False,
|
|
key="agent_version",
|
|
translation_key="agent_version",
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
),
|
|
SensorEntityDescription(
|
|
entity_registry_enabled_default=False,
|
|
key="apparmor_version",
|
|
translation_key="apparmor_version",
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
),
|
|
SensorEntityDescription(
|
|
entity_registry_enabled_default=False,
|
|
key="disk_total",
|
|
translation_key="disk_total",
|
|
native_unit_of_measurement=UnitOfInformation.GIGABYTES,
|
|
device_class=SensorDeviceClass.DATA_SIZE,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
),
|
|
SensorEntityDescription(
|
|
entity_registry_enabled_default=False,
|
|
key="disk_used",
|
|
translation_key="disk_used",
|
|
native_unit_of_measurement=UnitOfInformation.GIGABYTES,
|
|
device_class=SensorDeviceClass.DATA_SIZE,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
),
|
|
SensorEntityDescription(
|
|
entity_registry_enabled_default=False,
|
|
key="disk_free",
|
|
translation_key="disk_free",
|
|
native_unit_of_measurement=UnitOfInformation.GIGABYTES,
|
|
device_class=SensorDeviceClass.DATA_SIZE,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Sensor set up for Hass.io config entry."""
|
|
coordinator = hass.data[ADDONS_COORDINATOR]
|
|
|
|
entities: list[
|
|
HassioOSSensor | HassioAddonSensor | CoreSensor | SupervisorSensor | HostSensor
|
|
] = []
|
|
|
|
for addon in coordinator.data[DATA_KEY_ADDONS].values():
|
|
for entity_description in ADDON_ENTITY_DESCRIPTIONS:
|
|
entities.append(
|
|
HassioAddonSensor(
|
|
addon=addon,
|
|
coordinator=coordinator,
|
|
entity_description=entity_description,
|
|
)
|
|
)
|
|
|
|
for entity_description in CORE_ENTITY_DESCRIPTIONS:
|
|
entities.append(
|
|
CoreSensor(
|
|
coordinator=coordinator,
|
|
entity_description=entity_description,
|
|
)
|
|
)
|
|
|
|
for entity_description in SUPERVISOR_ENTITY_DESCRIPTIONS:
|
|
entities.append(
|
|
SupervisorSensor(
|
|
coordinator=coordinator,
|
|
entity_description=entity_description,
|
|
)
|
|
)
|
|
|
|
for entity_description in HOST_ENTITY_DESCRIPTIONS:
|
|
entities.append(
|
|
HostSensor(
|
|
coordinator=coordinator,
|
|
entity_description=entity_description,
|
|
)
|
|
)
|
|
|
|
if coordinator.is_hass_os:
|
|
for entity_description in OS_ENTITY_DESCRIPTIONS:
|
|
entities.append(
|
|
HassioOSSensor(
|
|
coordinator=coordinator,
|
|
entity_description=entity_description,
|
|
)
|
|
)
|
|
|
|
async_add_entities(entities)
|
|
|
|
|
|
class HassioAddonSensor(HassioAddonEntity, SensorEntity):
|
|
"""Sensor to track a Hass.io add-on attribute."""
|
|
|
|
@property
|
|
def native_value(self) -> str:
|
|
"""Return native value of entity."""
|
|
return self.coordinator.data[DATA_KEY_ADDONS][self._addon_slug][
|
|
self.entity_description.key
|
|
]
|
|
|
|
|
|
class HassioOSSensor(HassioOSEntity, SensorEntity):
|
|
"""Sensor to track a Hass.io add-on attribute."""
|
|
|
|
@property
|
|
def native_value(self) -> str:
|
|
"""Return native value of entity."""
|
|
return self.coordinator.data[DATA_KEY_OS][self.entity_description.key]
|
|
|
|
|
|
class CoreSensor(HassioCoreEntity, SensorEntity):
|
|
"""Sensor to track a core attribute."""
|
|
|
|
@property
|
|
def native_value(self) -> str:
|
|
"""Return native value of entity."""
|
|
return self.coordinator.data[DATA_KEY_CORE][self.entity_description.key]
|
|
|
|
|
|
class SupervisorSensor(HassioSupervisorEntity, SensorEntity):
|
|
"""Sensor to track a supervisor attribute."""
|
|
|
|
@property
|
|
def native_value(self) -> str:
|
|
"""Return native value of entity."""
|
|
return self.coordinator.data[DATA_KEY_SUPERVISOR][self.entity_description.key]
|
|
|
|
|
|
class HostSensor(HassioHostEntity, SensorEntity):
|
|
"""Sensor to track a host attribute."""
|
|
|
|
@property
|
|
def native_value(self) -> str:
|
|
"""Return native value of entity."""
|
|
return self.coordinator.data[DATA_KEY_HOST][self.entity_description.key]
|