2023-01-11 00:10:56 +00:00
|
|
|
"""Entity representing a D-Link Power Plug device."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-01-30 09:56:56 +00:00
|
|
|
from homeassistant.config_entries import SOURCE_IMPORT, ConfigEntry
|
2023-01-11 00:10:56 +00:00
|
|
|
from homeassistant.const import ATTR_CONNECTIONS
|
|
|
|
from homeassistant.helpers import device_registry as dr
|
|
|
|
from homeassistant.helpers.entity import DeviceInfo, Entity, EntityDescription
|
|
|
|
|
|
|
|
from .const import ATTRIBUTION, DOMAIN, MANUFACTURER
|
|
|
|
from .data import SmartPlugData
|
|
|
|
|
|
|
|
|
|
|
|
class DLinkEntity(Entity):
|
|
|
|
"""Representation of a D-Link Power Plug entity."""
|
|
|
|
|
|
|
|
_attr_attribution = ATTRIBUTION
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
config_entry: ConfigEntry,
|
2023-01-12 02:46:51 +00:00
|
|
|
data: SmartPlugData,
|
2023-01-11 00:10:56 +00:00
|
|
|
description: EntityDescription,
|
|
|
|
) -> None:
|
|
|
|
"""Initialize a D-Link Power Plug entity."""
|
|
|
|
self.data = data
|
|
|
|
self.entity_description = description
|
2023-01-30 09:56:56 +00:00
|
|
|
if config_entry.source == SOURCE_IMPORT:
|
|
|
|
self._attr_name = config_entry.title
|
|
|
|
else:
|
|
|
|
self._attr_has_entity_name = True
|
2023-01-11 00:10:56 +00:00
|
|
|
self._attr_unique_id = f"{config_entry.entry_id}_{description.key}"
|
|
|
|
self._attr_device_info = DeviceInfo(
|
|
|
|
identifiers={(DOMAIN, config_entry.entry_id)},
|
|
|
|
manufacturer=MANUFACTURER,
|
|
|
|
model=data.smartplug.model_name,
|
|
|
|
name=config_entry.title,
|
|
|
|
)
|
|
|
|
if config_entry.unique_id:
|
|
|
|
self._attr_device_info[ATTR_CONNECTIONS] = {
|
|
|
|
(dr.CONNECTION_NETWORK_MAC, config_entry.unique_id)
|
|
|
|
}
|