* Add support for async_remove_config_entry_device to unifiprotect * tweaks * tweaks * more cleanups * more cleanups * fix unhelpful auto import * add coverage * fix mac formatting * collapse logic
91 lines
2.4 KiB
Python
91 lines
2.4 KiB
Python
"""UniFi Protect Integration utils."""
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Generator, Iterable
|
|
import contextlib
|
|
from enum import Enum
|
|
import socket
|
|
from typing import Any
|
|
|
|
from pyunifiprotect import ProtectApiClient
|
|
from pyunifiprotect.data.base import ProtectAdoptableDeviceModel, ProtectDeviceModel
|
|
|
|
from homeassistant.core import HomeAssistant, callback
|
|
|
|
from .const import ModelType
|
|
|
|
|
|
def get_nested_attr(obj: Any, attr: str) -> Any:
|
|
"""Fetch a nested attribute."""
|
|
attrs = attr.split(".")
|
|
|
|
value = obj
|
|
for key in attrs:
|
|
if not hasattr(value, key):
|
|
return None
|
|
value = getattr(value, key)
|
|
|
|
if isinstance(value, Enum):
|
|
value = value.value
|
|
|
|
return value
|
|
|
|
|
|
@callback
|
|
def _async_unifi_mac_from_hass(mac: str) -> str:
|
|
# MAC addresses in UFP are always caps
|
|
return mac.replace(":", "").upper()
|
|
|
|
|
|
@callback
|
|
def _async_short_mac(mac: str) -> str:
|
|
"""Get the short mac address from the full mac."""
|
|
return _async_unifi_mac_from_hass(mac)[-6:]
|
|
|
|
|
|
async def _async_resolve(hass: HomeAssistant, host: str) -> str | None:
|
|
"""Resolve a hostname to an ip."""
|
|
with contextlib.suppress(OSError):
|
|
return next(
|
|
iter(
|
|
raw[0]
|
|
for family, _, _, _, raw in await hass.loop.getaddrinfo(
|
|
host, None, type=socket.SOCK_STREAM, proto=socket.IPPROTO_TCP
|
|
)
|
|
if family == socket.AF_INET
|
|
),
|
|
None,
|
|
)
|
|
return None
|
|
|
|
|
|
def async_get_devices_by_type(
|
|
api: ProtectApiClient, device_type: ModelType
|
|
) -> dict[str, ProtectDeviceModel]:
|
|
"""Get devices by type."""
|
|
devices: dict[str, ProtectDeviceModel] = getattr(
|
|
api.bootstrap, f"{device_type.value}s"
|
|
)
|
|
return devices
|
|
|
|
|
|
def async_get_adoptable_devices_by_type(
|
|
api: ProtectApiClient, device_type: ModelType
|
|
) -> dict[str, ProtectAdoptableDeviceModel]:
|
|
"""Get adoptable devices by type."""
|
|
devices: dict[str, ProtectAdoptableDeviceModel] = getattr(
|
|
api.bootstrap, f"{device_type.value}s"
|
|
)
|
|
return devices
|
|
|
|
|
|
@callback
|
|
def async_get_devices(
|
|
api: ProtectApiClient, model_type: Iterable[ModelType]
|
|
) -> Generator[ProtectDeviceModel, None, None]:
|
|
"""Return all device by type."""
|
|
return (
|
|
device
|
|
for device_type in model_type
|
|
for device in async_get_devices_by_type(api, device_type).values()
|
|
)
|