mirror of
https://github.com/home-assistant/core.git
synced 2025-07-13 16:27:08 +00:00
Explicitly pass in the config_entry in apcupsd coordinator init (#137709)
explicitly pass in the config_entry in apcupsd coordinator init
This commit is contained in:
parent
1d3cef5c6f
commit
fd1213b70d
@ -4,13 +4,10 @@ from __future__ import annotations
|
|||||||
|
|
||||||
from typing import Final
|
from typing import Final
|
||||||
|
|
||||||
from homeassistant.config_entries import ConfigEntry
|
|
||||||
from homeassistant.const import CONF_HOST, CONF_PORT, Platform
|
from homeassistant.const import CONF_HOST, CONF_PORT, Platform
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
|
|
||||||
from .coordinator import APCUPSdCoordinator
|
from .coordinator import APCUPSdConfigEntry, APCUPSdCoordinator
|
||||||
|
|
||||||
type APCUPSdConfigEntry = ConfigEntry[APCUPSdCoordinator]
|
|
||||||
|
|
||||||
PLATFORMS: Final = (Platform.BINARY_SENSOR, Platform.SENSOR)
|
PLATFORMS: Final = (Platform.BINARY_SENSOR, Platform.SENSOR)
|
||||||
|
|
||||||
@ -20,7 +17,7 @@ async def async_setup_entry(
|
|||||||
) -> bool:
|
) -> bool:
|
||||||
"""Use config values to set up a function enabling status retrieval."""
|
"""Use config values to set up a function enabling status retrieval."""
|
||||||
host, port = config_entry.data[CONF_HOST], config_entry.data[CONF_PORT]
|
host, port = config_entry.data[CONF_HOST], config_entry.data[CONF_PORT]
|
||||||
coordinator = APCUPSdCoordinator(hass, host, port)
|
coordinator = APCUPSdCoordinator(hass, config_entry, host, port)
|
||||||
|
|
||||||
await coordinator.async_config_entry_first_refresh()
|
await coordinator.async_config_entry_first_refresh()
|
||||||
|
|
||||||
|
@ -12,8 +12,7 @@ from homeassistant.core import HomeAssistant
|
|||||||
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||||
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
||||||
|
|
||||||
from . import APCUPSdConfigEntry
|
from .coordinator import APCUPSdConfigEntry, APCUPSdCoordinator
|
||||||
from .coordinator import APCUPSdCoordinator
|
|
||||||
|
|
||||||
PARALLEL_UPDATES = 0
|
PARALLEL_UPDATES = 0
|
||||||
|
|
||||||
|
@ -25,6 +25,8 @@ _LOGGER = logging.getLogger(__name__)
|
|||||||
UPDATE_INTERVAL: Final = timedelta(seconds=60)
|
UPDATE_INTERVAL: Final = timedelta(seconds=60)
|
||||||
REQUEST_REFRESH_COOLDOWN: Final = 5
|
REQUEST_REFRESH_COOLDOWN: Final = 5
|
||||||
|
|
||||||
|
type APCUPSdConfigEntry = ConfigEntry[APCUPSdCoordinator]
|
||||||
|
|
||||||
|
|
||||||
class APCUPSdData(dict[str, str]):
|
class APCUPSdData(dict[str, str]):
|
||||||
"""Store data about an APCUPSd and provide a few helper methods for easier accesses."""
|
"""Store data about an APCUPSd and provide a few helper methods for easier accesses."""
|
||||||
@ -57,13 +59,20 @@ class APCUPSdCoordinator(DataUpdateCoordinator[APCUPSdData]):
|
|||||||
updates from the server.
|
updates from the server.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
config_entry: ConfigEntry
|
config_entry: APCUPSdConfigEntry
|
||||||
|
|
||||||
def __init__(self, hass: HomeAssistant, host: str, port: int) -> None:
|
def __init__(
|
||||||
|
self,
|
||||||
|
hass: HomeAssistant,
|
||||||
|
config_entry: APCUPSdConfigEntry,
|
||||||
|
host: str,
|
||||||
|
port: int,
|
||||||
|
) -> None:
|
||||||
"""Initialize the data object."""
|
"""Initialize the data object."""
|
||||||
super().__init__(
|
super().__init__(
|
||||||
hass,
|
hass,
|
||||||
_LOGGER,
|
_LOGGER,
|
||||||
|
config_entry=config_entry,
|
||||||
name=DOMAIN,
|
name=DOMAIN,
|
||||||
update_interval=UPDATE_INTERVAL,
|
update_interval=UPDATE_INTERVAL,
|
||||||
request_refresh_debouncer=Debouncer(
|
request_refresh_debouncer=Debouncer(
|
||||||
|
@ -7,7 +7,7 @@ from typing import Any
|
|||||||
from homeassistant.components.diagnostics import async_redact_data
|
from homeassistant.components.diagnostics import async_redact_data
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
|
|
||||||
from . import APCUPSdConfigEntry
|
from .coordinator import APCUPSdConfigEntry
|
||||||
|
|
||||||
TO_REDACT = {"SERIALNO", "HOSTNAME"}
|
TO_REDACT = {"SERIALNO", "HOSTNAME"}
|
||||||
|
|
||||||
|
@ -24,9 +24,8 @@ from homeassistant.core import HomeAssistant, callback
|
|||||||
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||||
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
||||||
|
|
||||||
from . import APCUPSdConfigEntry
|
|
||||||
from .const import LAST_S_TEST
|
from .const import LAST_S_TEST
|
||||||
from .coordinator import APCUPSdCoordinator
|
from .coordinator import APCUPSdConfigEntry, APCUPSdCoordinator
|
||||||
|
|
||||||
PARALLEL_UPDATES = 0
|
PARALLEL_UPDATES = 0
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user