32 lines
847 B
Python
32 lines
847 B
Python
"""Utilities for deCONZ integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
from homeassistant.core import HomeAssistant, callback
|
|
|
|
from .const import DOMAIN
|
|
from .hub import DeconzHub
|
|
|
|
if TYPE_CHECKING:
|
|
from . import DeconzConfigEntry
|
|
|
|
|
|
def serial_from_unique_id(unique_id: str | None) -> str | None:
|
|
"""Get a device serial number from a unique ID, if possible."""
|
|
if not unique_id or unique_id.count(":") != 7:
|
|
return None
|
|
return unique_id.partition("-")[0]
|
|
|
|
|
|
@callback
|
|
def get_master_hub(hass: HomeAssistant) -> DeconzHub:
|
|
"""Return the gateway which is marked as master."""
|
|
entry: DeconzConfigEntry
|
|
hub: DeconzHub
|
|
for entry in hass.config_entries.async_loaded_entries(DOMAIN):
|
|
if (hub := entry.runtime_data).master:
|
|
return hub
|
|
raise ValueError
|