mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 12:17:07 +00:00
Use runtime_data in mystrom (#148020)
This commit is contained in:
parent
7d36a2e3a7
commit
3bc00824e2
@ -9,13 +9,11 @@ from pymystrom.bulb import MyStromBulb
|
|||||||
from pymystrom.exceptions import MyStromConnectionError
|
from pymystrom.exceptions import MyStromConnectionError
|
||||||
from pymystrom.switch import MyStromSwitch
|
from pymystrom.switch import MyStromSwitch
|
||||||
|
|
||||||
from homeassistant.config_entries import ConfigEntry
|
|
||||||
from homeassistant.const import CONF_HOST, Platform
|
from homeassistant.const import CONF_HOST, Platform
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
from homeassistant.exceptions import ConfigEntryNotReady
|
from homeassistant.exceptions import ConfigEntryNotReady
|
||||||
|
|
||||||
from .const import DOMAIN
|
from .models import MyStromConfigEntry, MyStromData
|
||||||
from .models import MyStromData
|
|
||||||
|
|
||||||
PLATFORMS_PLUGS = [Platform.SENSOR, Platform.SWITCH]
|
PLATFORMS_PLUGS = [Platform.SENSOR, Platform.SWITCH]
|
||||||
PLATFORMS_BULB = [Platform.LIGHT]
|
PLATFORMS_BULB = [Platform.LIGHT]
|
||||||
@ -41,7 +39,7 @@ def _get_mystrom_switch(host: str) -> MyStromSwitch:
|
|||||||
return MyStromSwitch(host)
|
return MyStromSwitch(host)
|
||||||
|
|
||||||
|
|
||||||
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
async def async_setup_entry(hass: HomeAssistant, entry: MyStromConfigEntry) -> bool:
|
||||||
"""Set up myStrom from a config entry."""
|
"""Set up myStrom from a config entry."""
|
||||||
host = entry.data[CONF_HOST]
|
host = entry.data[CONF_HOST]
|
||||||
try:
|
try:
|
||||||
@ -73,7 +71,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|||||||
_LOGGER.error("Unsupported myStrom device type: %s", device_type)
|
_LOGGER.error("Unsupported myStrom device type: %s", device_type)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
hass.data.setdefault(DOMAIN, {})[entry.entry_id] = MyStromData(
|
entry.runtime_data = MyStromData(
|
||||||
device=device,
|
device=device,
|
||||||
info=info,
|
info=info,
|
||||||
)
|
)
|
||||||
@ -82,15 +80,12 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
async def async_unload_entry(hass: HomeAssistant, entry: MyStromConfigEntry) -> bool:
|
||||||
"""Unload a config entry."""
|
"""Unload a config entry."""
|
||||||
device_type = hass.data[DOMAIN][entry.entry_id].info["type"]
|
device_type = entry.runtime_data.info["type"]
|
||||||
platforms = []
|
platforms = []
|
||||||
if device_type in [101, 106, 107, 120]:
|
if device_type in [101, 106, 107, 120]:
|
||||||
platforms.extend(PLATFORMS_PLUGS)
|
platforms.extend(PLATFORMS_PLUGS)
|
||||||
elif device_type in [102, 105]:
|
elif device_type in [102, 105]:
|
||||||
platforms.extend(PLATFORMS_BULB)
|
platforms.extend(PLATFORMS_BULB)
|
||||||
if unload_ok := await hass.config_entries.async_unload_platforms(entry, platforms):
|
return await hass.config_entries.async_unload_platforms(entry, platforms)
|
||||||
hass.data[DOMAIN].pop(entry.entry_id)
|
|
||||||
|
|
||||||
return unload_ok
|
|
||||||
|
@ -15,12 +15,12 @@ from homeassistant.components.light import (
|
|||||||
LightEntity,
|
LightEntity,
|
||||||
LightEntityFeature,
|
LightEntityFeature,
|
||||||
)
|
)
|
||||||
from homeassistant.config_entries import ConfigEntry
|
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
from homeassistant.helpers.device_registry import DeviceInfo
|
from homeassistant.helpers.device_registry import DeviceInfo
|
||||||
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
||||||
|
|
||||||
from .const import DOMAIN, MANUFACTURER
|
from .const import DOMAIN, MANUFACTURER
|
||||||
|
from .models import MyStromConfigEntry
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
@ -32,12 +32,12 @@ EFFECT_SUNRISE = "sunrise"
|
|||||||
|
|
||||||
async def async_setup_entry(
|
async def async_setup_entry(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
entry: ConfigEntry,
|
entry: MyStromConfigEntry,
|
||||||
async_add_entities: AddConfigEntryEntitiesCallback,
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Set up the myStrom entities."""
|
"""Set up the myStrom entities."""
|
||||||
info = hass.data[DOMAIN][entry.entry_id].info
|
info = entry.runtime_data.info
|
||||||
device = hass.data[DOMAIN][entry.entry_id].device
|
device = entry.runtime_data.device
|
||||||
async_add_entities([MyStromLight(device, entry.title, info["mac"])])
|
async_add_entities([MyStromLight(device, entry.title, info["mac"])])
|
||||||
|
|
||||||
|
|
||||||
|
@ -6,6 +6,10 @@ from typing import Any
|
|||||||
from pymystrom.bulb import MyStromBulb
|
from pymystrom.bulb import MyStromBulb
|
||||||
from pymystrom.switch import MyStromSwitch
|
from pymystrom.switch import MyStromSwitch
|
||||||
|
|
||||||
|
from homeassistant.config_entries import ConfigEntry
|
||||||
|
|
||||||
|
type MyStromConfigEntry = ConfigEntry[MyStromData]
|
||||||
|
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
class MyStromData:
|
class MyStromData:
|
||||||
|
@ -13,13 +13,13 @@ from homeassistant.components.sensor import (
|
|||||||
SensorEntityDescription,
|
SensorEntityDescription,
|
||||||
SensorStateClass,
|
SensorStateClass,
|
||||||
)
|
)
|
||||||
from homeassistant.config_entries import ConfigEntry
|
|
||||||
from homeassistant.const import UnitOfPower, UnitOfTemperature
|
from homeassistant.const import UnitOfPower, UnitOfTemperature
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
from homeassistant.helpers.device_registry import DeviceInfo
|
from homeassistant.helpers.device_registry import DeviceInfo
|
||||||
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
||||||
|
|
||||||
from .const import DOMAIN, MANUFACTURER
|
from .const import DOMAIN, MANUFACTURER
|
||||||
|
from .models import MyStromConfigEntry
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
@ -56,11 +56,11 @@ SENSOR_TYPES: tuple[MyStromSwitchSensorEntityDescription, ...] = (
|
|||||||
|
|
||||||
async def async_setup_entry(
|
async def async_setup_entry(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
entry: ConfigEntry,
|
entry: MyStromConfigEntry,
|
||||||
async_add_entities: AddConfigEntryEntitiesCallback,
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Set up the myStrom entities."""
|
"""Set up the myStrom entities."""
|
||||||
device: MyStromSwitch = hass.data[DOMAIN][entry.entry_id].device
|
device: MyStromSwitch = entry.runtime_data.device
|
||||||
|
|
||||||
async_add_entities(
|
async_add_entities(
|
||||||
MyStromSwitchSensor(device, entry.title, description)
|
MyStromSwitchSensor(device, entry.title, description)
|
||||||
|
@ -8,12 +8,12 @@ from typing import Any
|
|||||||
from pymystrom.exceptions import MyStromConnectionError
|
from pymystrom.exceptions import MyStromConnectionError
|
||||||
|
|
||||||
from homeassistant.components.switch import SwitchEntity
|
from homeassistant.components.switch import SwitchEntity
|
||||||
from homeassistant.config_entries import ConfigEntry
|
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
from homeassistant.helpers.device_registry import DeviceInfo, format_mac
|
from homeassistant.helpers.device_registry import DeviceInfo, format_mac
|
||||||
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
||||||
|
|
||||||
from .const import DOMAIN, MANUFACTURER
|
from .const import DOMAIN, MANUFACTURER
|
||||||
|
from .models import MyStromConfigEntry
|
||||||
|
|
||||||
DEFAULT_NAME = "myStrom Switch"
|
DEFAULT_NAME = "myStrom Switch"
|
||||||
|
|
||||||
@ -22,11 +22,11 @@ _LOGGER = logging.getLogger(__name__)
|
|||||||
|
|
||||||
async def async_setup_entry(
|
async def async_setup_entry(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
entry: ConfigEntry,
|
entry: MyStromConfigEntry,
|
||||||
async_add_entities: AddConfigEntryEntitiesCallback,
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Set up the myStrom entities."""
|
"""Set up the myStrom entities."""
|
||||||
device = hass.data[DOMAIN][entry.entry_id].device
|
device = entry.runtime_data.device
|
||||||
async_add_entities([MyStromSwitch(device, entry.title)])
|
async_add_entities([MyStromSwitch(device, entry.title)])
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user