54 lines
1.7 KiB
Python
54 lines
1.7 KiB
Python
"""Base class for UniFi clients."""
|
|
from homeassistant.helpers.device_registry import CONNECTION_NETWORK_MAC
|
|
|
|
from .unifi_entity_base import UniFiBase
|
|
|
|
|
|
class UniFiClient(UniFiBase):
|
|
"""Base class for UniFi clients."""
|
|
|
|
def __init__(self, client, controller) -> None:
|
|
"""Set up client."""
|
|
super().__init__(client, controller)
|
|
|
|
self._is_wired = client.mac not in controller.wireless_clients
|
|
self.client = self._item
|
|
|
|
@property
|
|
def is_wired(self):
|
|
"""Return if the client is wired.
|
|
|
|
Allows disabling logic to keep track of clients affected by UniFi wired bug marking wireless devices as wired. This is useful when running a network not only containing UniFi APs.
|
|
"""
|
|
if self._is_wired and self.client.mac in self.controller.wireless_clients:
|
|
self._is_wired = False
|
|
|
|
if self.controller.option_ignore_wired_bug:
|
|
return self.client.is_wired
|
|
|
|
return self._is_wired
|
|
|
|
@property
|
|
def unique_id(self):
|
|
"""Return a unique identifier for this switch."""
|
|
return f"{self.TYPE}-{self.client.mac}"
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
"""Return the name of the client."""
|
|
return self.client.name or self.client.hostname
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return if controller is available."""
|
|
return self.controller.available
|
|
|
|
@property
|
|
def device_info(self) -> dict:
|
|
"""Return a client description for device registry."""
|
|
return {
|
|
"connections": {(CONNECTION_NETWORK_MAC, self.client.mac)},
|
|
"default_name": self.name,
|
|
"default_manufacturer": self.client.oui,
|
|
}
|