42 lines
1.5 KiB
Python
42 lines
1.5 KiB
Python
|
"""Entity representing a D-Link Power Plug device."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
from homeassistant.config_entries import SOURCE_IMPORT, ConfigEntry
|
||
|
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,
|
||
|
data: SmartPlugData,
|
||
|
config_entry: ConfigEntry,
|
||
|
description: EntityDescription,
|
||
|
) -> None:
|
||
|
"""Initialize a D-Link Power Plug entity."""
|
||
|
self.data = data
|
||
|
self.entity_description = description
|
||
|
if config_entry.source == SOURCE_IMPORT:
|
||
|
self._attr_name = config_entry.title
|
||
|
else:
|
||
|
self._attr_name = f"{config_entry.title} {description.key}"
|
||
|
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)
|
||
|
}
|