2019-04-03 15:40:03 +00:00
|
|
|
"""Tracks the latency of a host by sending ICMP echo requests (ping)."""
|
2024-03-08 14:04:07 +00:00
|
|
|
|
2021-03-18 12:21:46 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-10-22 08:12:59 +00:00
|
|
|
from typing import Any
|
2017-04-20 06:15:26 +00:00
|
|
|
|
2020-09-12 18:21:57 +00:00
|
|
|
from homeassistant.components.binary_sensor import (
|
2021-12-16 14:38:02 +00:00
|
|
|
BinarySensorDeviceClass,
|
2020-09-12 18:21:57 +00:00
|
|
|
BinarySensorEntity,
|
|
|
|
)
|
2024-06-22 18:39:32 +00:00
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
|
|
from homeassistant.core import HomeAssistant
|
2022-01-07 15:28:24 +00:00
|
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
2020-08-05 10:43:35 +00:00
|
|
|
|
2024-05-29 06:12:54 +00:00
|
|
|
from . import PingConfigEntry
|
2024-06-22 18:39:32 +00:00
|
|
|
from .const import CONF_IMPORTED_BY
|
2023-11-18 16:07:58 +00:00
|
|
|
from .coordinator import PingUpdateCoordinator
|
2024-03-03 10:08:28 +00:00
|
|
|
from .entity import PingEntity
|
2017-04-20 06:15:26 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
ATTR_ROUND_TRIP_TIME_AVG = "round_trip_time_avg"
|
|
|
|
ATTR_ROUND_TRIP_TIME_MAX = "round_trip_time_max"
|
|
|
|
ATTR_ROUND_TRIP_TIME_MDEV = "round_trip_time_mdev"
|
|
|
|
ATTR_ROUND_TRIP_TIME_MIN = "round_trip_time_min"
|
2017-04-20 06:15:26 +00:00
|
|
|
|
2023-11-17 19:30:30 +00:00
|
|
|
|
|
|
|
async def async_setup_entry(
|
2024-05-29 06:12:54 +00:00
|
|
|
hass: HomeAssistant, entry: PingConfigEntry, async_add_entities: AddEntitiesCallback
|
2023-11-17 19:30:30 +00:00
|
|
|
) -> None:
|
|
|
|
"""Set up a Ping config entry."""
|
2024-05-29 06:12:54 +00:00
|
|
|
async_add_entities([PingBinarySensor(entry, entry.runtime_data)])
|
2017-04-20 06:15:26 +00:00
|
|
|
|
|
|
|
|
2024-03-03 10:08:28 +00:00
|
|
|
class PingBinarySensor(PingEntity, BinarySensorEntity):
|
2017-04-20 06:15:26 +00:00
|
|
|
"""Representation of a Ping Binary sensor."""
|
|
|
|
|
2023-06-25 14:00:52 +00:00
|
|
|
_attr_device_class = BinarySensorDeviceClass.CONNECTIVITY
|
2023-11-29 07:42:02 +00:00
|
|
|
_attr_available = False
|
2024-03-03 10:08:28 +00:00
|
|
|
_attr_name = None
|
2023-06-25 14:00:52 +00:00
|
|
|
|
2023-11-17 19:30:30 +00:00
|
|
|
def __init__(
|
2023-11-18 16:07:58 +00:00
|
|
|
self, config_entry: ConfigEntry, coordinator: PingUpdateCoordinator
|
2023-11-17 19:30:30 +00:00
|
|
|
) -> None:
|
2017-04-20 06:15:26 +00:00
|
|
|
"""Initialize the Ping Binary sensor."""
|
2024-03-03 17:10:22 +00:00
|
|
|
super().__init__(config_entry, coordinator, config_entry.entry_id)
|
2023-11-17 19:30:30 +00:00
|
|
|
|
|
|
|
# if this was imported just enable it when it was enabled before
|
|
|
|
if CONF_IMPORTED_BY in config_entry.data:
|
|
|
|
self._attr_entity_registry_enabled_default = bool(
|
|
|
|
config_entry.data[CONF_IMPORTED_BY] == "binary_sensor"
|
|
|
|
)
|
|
|
|
|
2017-04-20 06:15:26 +00:00
|
|
|
@property
|
2020-08-18 22:25:50 +00:00
|
|
|
def is_on(self) -> bool:
|
2017-04-20 06:15:26 +00:00
|
|
|
"""Return true if the binary sensor is on."""
|
2023-11-18 16:07:58 +00:00
|
|
|
return self.coordinator.data.is_alive
|
2017-04-20 06:15:26 +00:00
|
|
|
|
|
|
|
@property
|
2022-01-19 19:59:20 +00:00
|
|
|
def extra_state_attributes(self) -> dict[str, Any] | None:
|
2023-11-29 07:42:02 +00:00
|
|
|
"""Return the state attributes of the ICMP checo request."""
|
2022-01-19 19:59:20 +00:00
|
|
|
return {
|
2024-03-03 10:08:28 +00:00
|
|
|
ATTR_ROUND_TRIP_TIME_AVG: self.coordinator.data.data.get("avg"),
|
|
|
|
ATTR_ROUND_TRIP_TIME_MAX: self.coordinator.data.data.get("max"),
|
|
|
|
ATTR_ROUND_TRIP_TIME_MDEV: self.coordinator.data.data.get("mdev"),
|
|
|
|
ATTR_ROUND_TRIP_TIME_MIN: self.coordinator.data.data.get("min"),
|
2021-03-31 13:06:49 +00:00
|
|
|
}
|