mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Extract base entity class in Plugwise (#65821)
This commit is contained in:
parent
b0bb2d2453
commit
87049283c1
@ -19,7 +19,7 @@ from .const import (
|
|||||||
NO_NOTIFICATION_ICON,
|
NO_NOTIFICATION_ICON,
|
||||||
NOTIFICATION_ICON,
|
NOTIFICATION_ICON,
|
||||||
)
|
)
|
||||||
from .gateway import SmileGateway
|
from .entity import PlugwiseEntity
|
||||||
|
|
||||||
BINARY_SENSOR_MAP = {
|
BINARY_SENSOR_MAP = {
|
||||||
"dhw_state": ["Domestic Hot Water State", None],
|
"dhw_state": ["Domestic Hot Water State", None],
|
||||||
@ -77,7 +77,7 @@ async def async_setup_entry(
|
|||||||
async_add_entities(entities, True)
|
async_add_entities(entities, True)
|
||||||
|
|
||||||
|
|
||||||
class SmileBinarySensor(SmileGateway, BinarySensorEntity):
|
class SmileBinarySensor(PlugwiseEntity, BinarySensorEntity):
|
||||||
"""Represent Smile Binary Sensors."""
|
"""Represent Smile Binary Sensors."""
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
|
@ -30,7 +30,7 @@ from .const import (
|
|||||||
SCHEDULE_OFF,
|
SCHEDULE_OFF,
|
||||||
SCHEDULE_ON,
|
SCHEDULE_ON,
|
||||||
)
|
)
|
||||||
from .gateway import SmileGateway
|
from .entity import PlugwiseEntity
|
||||||
|
|
||||||
HVAC_MODES_HEAT_ONLY = [HVAC_MODE_HEAT, HVAC_MODE_AUTO]
|
HVAC_MODES_HEAT_ONLY = [HVAC_MODE_HEAT, HVAC_MODE_AUTO]
|
||||||
HVAC_MODES_HEAT_COOL = [HVAC_MODE_HEAT_COOL, HVAC_MODE_AUTO]
|
HVAC_MODES_HEAT_COOL = [HVAC_MODE_HEAT_COOL, HVAC_MODE_AUTO]
|
||||||
@ -74,7 +74,7 @@ async def async_setup_entry(
|
|||||||
async_add_entities(entities, True)
|
async_add_entities(entities, True)
|
||||||
|
|
||||||
|
|
||||||
class PwThermostat(SmileGateway, ClimateEntity):
|
class PwThermostat(PlugwiseEntity, ClimateEntity):
|
||||||
"""Representation of an Plugwise thermostat."""
|
"""Representation of an Plugwise thermostat."""
|
||||||
|
|
||||||
_attr_hvac_mode = HVAC_MODE_HEAT
|
_attr_hvac_mode = HVAC_MODE_HEAT
|
||||||
|
82
homeassistant/components/plugwise/entity.py
Normal file
82
homeassistant/components/plugwise/entity.py
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
"""Generic Plugwise Entity Class."""
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from plugwise.smile import Smile
|
||||||
|
|
||||||
|
from homeassistant.const import (
|
||||||
|
ATTR_CONFIGURATION_URL,
|
||||||
|
ATTR_MODEL,
|
||||||
|
ATTR_VIA_DEVICE,
|
||||||
|
CONF_HOST,
|
||||||
|
)
|
||||||
|
from homeassistant.core import callback
|
||||||
|
from homeassistant.helpers.entity import DeviceInfo
|
||||||
|
from homeassistant.helpers.update_coordinator import (
|
||||||
|
CoordinatorEntity,
|
||||||
|
DataUpdateCoordinator,
|
||||||
|
)
|
||||||
|
|
||||||
|
from .const import DOMAIN
|
||||||
|
|
||||||
|
|
||||||
|
class PlugwiseEntity(CoordinatorEntity):
|
||||||
|
"""Represent a PlugWise Entity."""
|
||||||
|
|
||||||
|
def __init__(
|
||||||
|
self, api: Smile, coordinator: DataUpdateCoordinator, name: str, dev_id: str
|
||||||
|
) -> None:
|
||||||
|
"""Initialise the gateway."""
|
||||||
|
super().__init__(coordinator)
|
||||||
|
|
||||||
|
self._api = api
|
||||||
|
self._name = name
|
||||||
|
self._dev_id = dev_id
|
||||||
|
|
||||||
|
self._unique_id: str | None = None
|
||||||
|
self._model: str | None = None
|
||||||
|
|
||||||
|
self._entity_name = self._name
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unique_id(self) -> str | None:
|
||||||
|
"""Return a unique ID."""
|
||||||
|
return self._unique_id
|
||||||
|
|
||||||
|
@property
|
||||||
|
def name(self) -> str | None:
|
||||||
|
"""Return the name of the entity, if any."""
|
||||||
|
return self._name
|
||||||
|
|
||||||
|
@property
|
||||||
|
def device_info(self) -> DeviceInfo:
|
||||||
|
"""Return the device information."""
|
||||||
|
device_information = DeviceInfo(
|
||||||
|
identifiers={(DOMAIN, self._dev_id)},
|
||||||
|
name=self._entity_name,
|
||||||
|
manufacturer="Plugwise",
|
||||||
|
)
|
||||||
|
|
||||||
|
if entry := self.coordinator.config_entry:
|
||||||
|
device_information[
|
||||||
|
ATTR_CONFIGURATION_URL
|
||||||
|
] = f"http://{entry.data[CONF_HOST]}"
|
||||||
|
|
||||||
|
if self._model is not None:
|
||||||
|
device_information[ATTR_MODEL] = self._model.replace("_", " ").title()
|
||||||
|
|
||||||
|
if self._dev_id != self._api.gateway_id:
|
||||||
|
device_information[ATTR_VIA_DEVICE] = (DOMAIN, str(self._api.gateway_id))
|
||||||
|
|
||||||
|
return device_information
|
||||||
|
|
||||||
|
async def async_added_to_hass(self) -> None:
|
||||||
|
"""Subscribe to updates."""
|
||||||
|
self._async_process_data()
|
||||||
|
self.async_on_remove(
|
||||||
|
self.coordinator.async_add_listener(self._async_process_data)
|
||||||
|
)
|
||||||
|
|
||||||
|
@callback
|
||||||
|
def _async_process_data(self) -> None:
|
||||||
|
"""Interpret and process API data."""
|
||||||
|
raise NotImplementedError
|
@ -13,25 +13,12 @@ from plugwise.exceptions import (
|
|||||||
from plugwise.smile import Smile
|
from plugwise.smile import Smile
|
||||||
|
|
||||||
from homeassistant.config_entries import ConfigEntry
|
from homeassistant.config_entries import ConfigEntry
|
||||||
from homeassistant.const import (
|
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_PORT, CONF_USERNAME
|
||||||
ATTR_CONFIGURATION_URL,
|
from homeassistant.core import HomeAssistant
|
||||||
ATTR_MODEL,
|
|
||||||
ATTR_VIA_DEVICE,
|
|
||||||
CONF_HOST,
|
|
||||||
CONF_PASSWORD,
|
|
||||||
CONF_PORT,
|
|
||||||
CONF_USERNAME,
|
|
||||||
)
|
|
||||||
from homeassistant.core import HomeAssistant, callback
|
|
||||||
from homeassistant.exceptions import ConfigEntryNotReady
|
from homeassistant.exceptions import ConfigEntryNotReady
|
||||||
from homeassistant.helpers import device_registry as dr
|
from homeassistant.helpers import device_registry as dr
|
||||||
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
||||||
from homeassistant.helpers.entity import DeviceInfo
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, UpdateFailed
|
||||||
from homeassistant.helpers.update_coordinator import (
|
|
||||||
CoordinatorEntity,
|
|
||||||
DataUpdateCoordinator,
|
|
||||||
UpdateFailed,
|
|
||||||
)
|
|
||||||
|
|
||||||
from .const import (
|
from .const import (
|
||||||
COORDINATOR,
|
COORDINATOR,
|
||||||
@ -139,64 +126,3 @@ async def async_unload_entry_gw(hass: HomeAssistant, entry: ConfigEntry):
|
|||||||
):
|
):
|
||||||
hass.data[DOMAIN].pop(entry.entry_id)
|
hass.data[DOMAIN].pop(entry.entry_id)
|
||||||
return unload_ok
|
return unload_ok
|
||||||
|
|
||||||
|
|
||||||
class SmileGateway(CoordinatorEntity):
|
|
||||||
"""Represent Smile Gateway."""
|
|
||||||
|
|
||||||
def __init__(self, api, coordinator, name, dev_id):
|
|
||||||
"""Initialise the gateway."""
|
|
||||||
super().__init__(coordinator)
|
|
||||||
|
|
||||||
self._api = api
|
|
||||||
self._name = name
|
|
||||||
self._dev_id = dev_id
|
|
||||||
|
|
||||||
self._unique_id = None
|
|
||||||
self._model = None
|
|
||||||
|
|
||||||
self._entity_name = self._name
|
|
||||||
|
|
||||||
@property
|
|
||||||
def unique_id(self):
|
|
||||||
"""Return a unique ID."""
|
|
||||||
return self._unique_id
|
|
||||||
|
|
||||||
@property
|
|
||||||
def name(self):
|
|
||||||
"""Return the name of the entity, if any."""
|
|
||||||
return self._name
|
|
||||||
|
|
||||||
@property
|
|
||||||
def device_info(self) -> DeviceInfo:
|
|
||||||
"""Return the device information."""
|
|
||||||
device_information = DeviceInfo(
|
|
||||||
identifiers={(DOMAIN, self._dev_id)},
|
|
||||||
name=self._entity_name,
|
|
||||||
manufacturer="Plugwise",
|
|
||||||
)
|
|
||||||
|
|
||||||
if entry := self.coordinator.config_entry:
|
|
||||||
device_information[
|
|
||||||
ATTR_CONFIGURATION_URL
|
|
||||||
] = f"http://{entry.data[CONF_HOST]}"
|
|
||||||
|
|
||||||
if self._model is not None:
|
|
||||||
device_information[ATTR_MODEL] = self._model.replace("_", " ").title()
|
|
||||||
|
|
||||||
if self._dev_id != self._api.gateway_id:
|
|
||||||
device_information[ATTR_VIA_DEVICE] = (DOMAIN, self._api.gateway_id)
|
|
||||||
|
|
||||||
return device_information
|
|
||||||
|
|
||||||
async def async_added_to_hass(self):
|
|
||||||
"""Subscribe to updates."""
|
|
||||||
self._async_process_data()
|
|
||||||
self.async_on_remove(
|
|
||||||
self.coordinator.async_add_listener(self._async_process_data)
|
|
||||||
)
|
|
||||||
|
|
||||||
@callback
|
|
||||||
def _async_process_data(self):
|
|
||||||
"""Interpret and process API data."""
|
|
||||||
raise NotImplementedError
|
|
||||||
|
@ -37,7 +37,7 @@ from .const import (
|
|||||||
SENSOR_MAP_UOM,
|
SENSOR_MAP_UOM,
|
||||||
UNIT_LUMEN,
|
UNIT_LUMEN,
|
||||||
)
|
)
|
||||||
from .gateway import SmileGateway
|
from .entity import PlugwiseEntity
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
@ -300,7 +300,7 @@ async def async_setup_entry(
|
|||||||
async_add_entities(entities, True)
|
async_add_entities(entities, True)
|
||||||
|
|
||||||
|
|
||||||
class SmileSensor(SmileGateway, SensorEntity):
|
class SmileSensor(PlugwiseEntity, SensorEntity):
|
||||||
"""Represent Smile Sensors."""
|
"""Represent Smile Sensors."""
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
|
@ -9,7 +9,7 @@ from homeassistant.core import HomeAssistant, callback
|
|||||||
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||||
|
|
||||||
from .const import COORDINATOR, DOMAIN, SWITCH_ICON
|
from .const import COORDINATOR, DOMAIN, SWITCH_ICON
|
||||||
from .gateway import SmileGateway
|
from .entity import PlugwiseEntity
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
@ -56,7 +56,7 @@ async def async_setup_entry_gateway(hass, config_entry, async_add_entities):
|
|||||||
async_add_entities(entities, True)
|
async_add_entities(entities, True)
|
||||||
|
|
||||||
|
|
||||||
class GwSwitch(SmileGateway, SwitchEntity):
|
class GwSwitch(PlugwiseEntity, SwitchEntity):
|
||||||
"""Representation of a Plugwise plug."""
|
"""Representation of a Plugwise plug."""
|
||||||
|
|
||||||
def __init__(self, api, coordinator, name, dev_id, members, model):
|
def __init__(self, api, coordinator, name, dev_id, members, model):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user