* Fix webhook registration * Only load camera platform with valid scope * Add initial data handler and netatmo base class * Update camera to use data handler * Update init * Parallelize API calls * Remove cruft * Minor tweaks * Refactor data handler * Update climate to use data handler * Fix pylint error * Fix climate update not getting fresh data * Update climate data * update to pyatmo 4.0.0 * Refactor for pyatmo 4.0.0 * Exclude from coverage until tests are written * Fix typo * Reduce parallel calls * Add heating request attr * Async get_entities * Undo parallel updates * Fix camera issue * Introduce individual scan interval per device class * Some cleanup * Add basic webhook support for climate to improve responsiveness * Replace ClimateDevice by ClimateEntity * Add support for turning camera on/off * Update camera state upon webhook events * Guard data class registration with lock * Capture errors * Add light platform * Add dis-/connect handling * Fix set schedule service * Remove extra calls * Add service to set person(s) home/away * Add service descriptions * Improve service descriptions * Use LightEntity instead of Light * Add guard if no data is retrieved * Make services entity based * Only raise platform not ready if there is a NOC * Register webhook even during runtime * Fix turning off event * Fix linter error * Fix linter error * Exclude light platform from coverage * Change log level * Refactor public weather sensor to use data handler * Prevent too short coordinates * Ignore modules without _id * Code cleanup * Fix test * Exit early if no home data is retrieved * Prevent discovery if already active * Add services to (un-)register webhook * Fix tests * Not actually a coroutine * Move methods to base class * Address pylint comment * Address pylint complaints * Address comments * Address more comments * Add docstring * Use single instance allowed * Extract method * Remove cruft * Write state directly * Fix test * Add file to coverage * Move nested function * Move nested function * Update docstring * Clean up code * Fix webhook bug * Clean up listeners * Use deque * Clean up prints * Update homeassistant/components/netatmo/sensor.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/netatmo/sensor.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/netatmo/sensor.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/netatmo/sensor.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/netatmo/sensor.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/netatmo/sensor.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/netatmo/camera.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/netatmo/camera.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/netatmo/camera.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/netatmo/camera.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/netatmo/camera.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/netatmo/camera.py Co-authored-by: J. Nick Koston <nick@koston.org> * Rename data_class variable * Break when match * Extract method * Extract methods * Rename variable * Improve comment * Some refinements * Extra * Extract method * Simplify code * Improve reability * Code simplification * Simplify code * Simplify code * Code cleanup * Fix import * Clean up * Clean up magic strings * Replace data_class_name with CAMERA_DATA_CLASS_NAME * Replace data_class_name with CAMERA_DATA_CLASS_NAME * Replace data_class_name with HOMEDATA_DATA_CLASS_NAME * Replace data_class_name in public weather sensor * Clean up * Remove deprecated config options * Schedule immediate update on camera reconnect * Use UUID to clearly identify public weather areas * Use subscription mode * Move clean up of temporary data classes * Delay data class removal * Fix linter complaints * Adjust test * Only setup lights if webhook are registered * Prevent crash with old config entries * Don't cache home ids * Remove stale code * Fix coordinates if entered mixed up by the user * Move nested function * Add test case for swapped coordinates * Only wait for discovery entries * Only use what I need * Bring stuff closer to where it's used * Auto clean up setup data classes * Code cleanup * Remove unneccessary lock * Update homeassistant/components/netatmo/sensor.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update tests/components/netatmo/test_config_flow.py Co-authored-by: J. Nick Koston <nick@koston.org> * Clean up dead code * Fix formating * Extend coverage * Extend coverage Co-authored-by: J. Nick Koston <nick@koston.org>
113 lines
3.6 KiB
Python
113 lines
3.6 KiB
Python
"""Base class for Netatmo entities."""
|
|
import logging
|
|
from typing import Dict, List
|
|
|
|
from homeassistant.core import CALLBACK_TYPE, callback
|
|
from homeassistant.helpers.entity import Entity
|
|
|
|
from .const import DOMAIN, MANUFACTURER, MODELS, SIGNAL_NAME
|
|
from .data_handler import NetatmoDataHandler
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class NetatmoBase(Entity):
|
|
"""Netatmo entity base class."""
|
|
|
|
def __init__(self, data_handler: NetatmoDataHandler) -> None:
|
|
"""Set up Netatmo entity base."""
|
|
self.data_handler = data_handler
|
|
self._data_classes: List[Dict] = []
|
|
self._listeners: List[CALLBACK_TYPE] = []
|
|
|
|
self._device_name = None
|
|
self._id = None
|
|
self._model = None
|
|
self._name = None
|
|
self._unique_id = None
|
|
|
|
async def async_added_to_hass(self) -> None:
|
|
"""Entity created."""
|
|
_LOGGER.debug("New client %s", self.entity_id)
|
|
for data_class in self._data_classes:
|
|
signal_name = data_class[SIGNAL_NAME]
|
|
|
|
if "home_id" in data_class:
|
|
await self.data_handler.register_data_class(
|
|
data_class["name"],
|
|
signal_name,
|
|
self.async_update_callback,
|
|
home_id=data_class["home_id"],
|
|
)
|
|
|
|
elif data_class["name"] == "PublicData":
|
|
await self.data_handler.register_data_class(
|
|
data_class["name"],
|
|
signal_name,
|
|
self.async_update_callback,
|
|
LAT_NE=data_class["LAT_NE"],
|
|
LON_NE=data_class["LON_NE"],
|
|
LAT_SW=data_class["LAT_SW"],
|
|
LON_SW=data_class["LON_SW"],
|
|
)
|
|
|
|
else:
|
|
await self.data_handler.register_data_class(
|
|
data_class["name"], signal_name, self.async_update_callback
|
|
)
|
|
|
|
await self.data_handler.unregister_data_class(signal_name, None)
|
|
|
|
self.async_update_callback()
|
|
|
|
async def async_will_remove_from_hass(self):
|
|
"""Run when entity will be removed from hass."""
|
|
await super().async_will_remove_from_hass()
|
|
|
|
for listener in self._listeners:
|
|
listener()
|
|
|
|
for data_class in self._data_classes:
|
|
await self.data_handler.unregister_data_class(
|
|
data_class[SIGNAL_NAME], self.async_update_callback
|
|
)
|
|
|
|
async def async_remove(self):
|
|
"""Clean up when removing entity."""
|
|
entity_registry = await self.hass.helpers.entity_registry.async_get_registry()
|
|
entity_entry = entity_registry.async_get(self.entity_id)
|
|
if not entity_entry:
|
|
await super().async_remove()
|
|
return
|
|
|
|
entity_registry.async_remove(self.entity_id)
|
|
|
|
@callback
|
|
def async_update_callback(self):
|
|
"""Update the entity's state."""
|
|
raise NotImplementedError
|
|
|
|
@property
|
|
def _data(self):
|
|
"""Return data for this entity."""
|
|
return self.data_handler.data[self._data_classes[0]["name"]]
|
|
|
|
@property
|
|
def unique_id(self):
|
|
"""Return the unique ID of this entity."""
|
|
return self._unique_id
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of this entity."""
|
|
return self._name
|
|
|
|
@property
|
|
def device_info(self):
|
|
"""Return the device info for the sensor."""
|
|
return {
|
|
"identifiers": {(DOMAIN, self._id)},
|
|
"name": self._device_name,
|
|
"manufacturer": MANUFACTURER,
|
|
"model": MODELS[self._model],
|
|
}
|