"""Python library supporting TP-Link Smart Home devices. The communication protocol was reverse engineered by Lubomir Stroetmann and Tobias Esser in 'Reverse Engineering the TP-Link HS110': https://www.softscheck.com/en/reverse-engineering-tp-link-hs110/ This library reuses codes and concepts of the TP-Link WiFi SmartPlug Client at https://github.com/softScheck/tplink-smartplug, developed by Lubomir Stroetmann which is licensed under the Apache License, Version 2.0. You may obtain a copy of the license at http://www.apache.org/licenses/LICENSE-2.0 """ import collections.abc import functools import inspect import logging from datetime import datetime, timedelta from typing import Any, Dict, List, Optional, Sequence, Set from ..device import Device, WifiNetwork from ..deviceconfig import DeviceConfig from ..emeterstatus import EmeterStatus from ..exceptions import SmartDeviceException from ..feature import Feature from ..protocol import BaseProtocol from .modules import Emeter, IotModule _LOGGER = logging.getLogger(__name__) def merge(d, u): """Update dict recursively.""" for k, v in u.items(): if isinstance(v, collections.abc.Mapping): d[k] = merge(d.get(k, {}), v) else: d[k] = v return d def requires_update(f): """Indicate that `update` should be called before accessing this method.""" # noqa: D202 if inspect.iscoroutinefunction(f): @functools.wraps(f) async def wrapped(*args, **kwargs): self = args[0] if self._last_update is None and f.__name__ not in self._sys_info: raise SmartDeviceException( "You need to await update() to access the data" ) return await f(*args, **kwargs) else: @functools.wraps(f) def wrapped(*args, **kwargs): self = args[0] if self._last_update is None and f.__name__ not in self._sys_info: raise SmartDeviceException( "You need to await update() to access the data" ) return f(*args, **kwargs) f.requires_update = True return wrapped @functools.lru_cache def _parse_features(features: str) -> Set[str]: """Parse features string.""" return set(features.split(":")) class IotDevice(Device): """Base class for all supported device types. You don't usually want to initialize this class manually, but either use :class:`Discover` class, or use one of the subclasses: * :class:`IotPlug` * :class:`IotBulb` * :class:`IotStrip` * :class:`IotDimmer` * :class:`IotLightStrip` To initialize, you have to await :func:`update()` at least once. This will allow accessing the properties using the exposed properties. All changes to the device are done using awaitable methods, which will not change the cached values, but you must await update() separately. Errors reported by the device are raised as SmartDeviceExceptions, and should be handled by the user of the library. Examples: >>> import asyncio >>> dev = IotDevice("127.0.0.1") >>> asyncio.run(dev.update()) All devices provide several informational properties: >>> dev.alias Kitchen >>> dev.model HS110(EU) >>> dev.rssi -71 >>> dev.mac 50:C7:BF:00:00:00 Some information can also be changed programmatically: >>> asyncio.run(dev.set_alias("new alias")) >>> asyncio.run(dev.set_mac("01:23:45:67:89:ab")) >>> asyncio.run(dev.update()) >>> dev.alias new alias >>> dev.mac 01:23:45:67:89:ab When initialized using discovery or using a subclass, you can check the type of the device: >>> dev.is_bulb False >>> dev.is_strip False >>> dev.is_plug True You can also get the hardware and software as a dict, or access the full device response: >>> dev.hw_info {'sw_ver': '1.2.5 Build 171213 Rel.101523', 'hw_ver': '1.0', 'mac': '01:23:45:67:89:ab', 'type': 'IOT.SMARTPLUGSWITCH', 'hwId': '00000000000000000000000000000000', 'fwId': '00000000000000000000000000000000', 'oemId': '00000000000000000000000000000000', 'dev_name': 'Wi-Fi Smart Plug With Energy Monitoring'} >>> dev.sys_info All devices can be turned on and off: >>> asyncio.run(dev.turn_off()) >>> asyncio.run(dev.turn_on()) >>> asyncio.run(dev.update()) >>> dev.is_on True Some devices provide energy consumption meter, and regular update will already fetch some information: >>> dev.has_emeter True >>> dev.emeter_realtime >>> dev.emeter_today >>> dev.emeter_this_month You can also query the historical data (note that these needs to be awaited), keyed with month/day: >>> asyncio.run(dev.get_emeter_monthly(year=2016)) {11: 1.089, 12: 1.582} >>> asyncio.run(dev.get_emeter_daily(year=2016, month=11)) {24: 0.026, 25: 0.109} """ emeter_type = "emeter" def __init__( self, host: str, *, config: Optional[DeviceConfig] = None, protocol: Optional[BaseProtocol] = None, ) -> None: """Create a new IotDevice instance.""" super().__init__(host=host, config=config, protocol=protocol) self._sys_info: Any = None # TODO: this is here to avoid changing tests self._children: Sequence["IotDevice"] = [] self._supported_modules: Optional[Dict[str, IotModule]] = None self._legacy_features: Set[str] = set() @property def children(self) -> Sequence["IotDevice"]: """Return list of children.""" return self._children @children.setter def children(self, children): """Initialize from a list of children.""" self._children = children def add_module(self, name: str, module: IotModule): """Register a module.""" if name in self.modules: _LOGGER.debug("Module %s already registered, ignoring..." % name) return _LOGGER.debug("Adding module %s", module) self.modules[name] = module def _create_request( self, target: str, cmd: str, arg: Optional[Dict] = None, child_ids=None ): request: Dict[str, Any] = {target: {cmd: arg}} if child_ids is not None: request = {"context": {"child_ids": child_ids}, target: {cmd: arg}} return request def _verify_emeter(self) -> None: """Raise an exception if there is no emeter.""" if not self.has_emeter: raise SmartDeviceException("Device has no emeter") if self.emeter_type not in self._last_update: raise SmartDeviceException("update() required prior accessing emeter") async def _query_helper( self, target: str, cmd: str, arg: Optional[Dict] = None, child_ids=None ) -> Any: """Query device, return results or raise an exception. :param target: Target system {system, time, emeter, ..} :param cmd: Command to execute :param arg: payload dict to be send to the device :param child_ids: ids of child devices :return: Unwrapped result for the call. """ request = self._create_request(target, cmd, arg, child_ids) try: response = await self._raw_query(request=request) except Exception as ex: raise SmartDeviceException(f"Communication error on {target}:{cmd}") from ex if target not in response: raise SmartDeviceException(f"No required {target} in response: {response}") result = response[target] if "err_code" in result and result["err_code"] != 0: raise SmartDeviceException(f"Error on {target}.{cmd}: {result}") if cmd not in result: raise SmartDeviceException(f"No command in response: {response}") result = result[cmd] if "err_code" in result and result["err_code"] != 0: raise SmartDeviceException(f"Error on {target} {cmd}: {result}") if "err_code" in result: del result["err_code"] return result @property # type: ignore @requires_update def features(self) -> Dict[str, Feature]: """Return a set of features that the device supports.""" return self._features @property # type: ignore @requires_update def supported_modules(self) -> List[str]: """Return a set of modules supported by the device.""" # TODO: this should rather be called `features`, but we don't want to break # the API now. Maybe just deprecate it and point the users to use this? return list(self.modules.keys()) @property # type: ignore @requires_update def has_emeter(self) -> bool: """Return True if device has an energy meter.""" return "ENE" in self._legacy_features async def get_sys_info(self) -> Dict[str, Any]: """Retrieve system information.""" return await self._query_helper("system", "get_sysinfo") async def update(self, update_children: bool = True): """Query the device to update the data. Needed for properties that are decorated with `requires_update`. """ req = {} req.update(self._create_request("system", "get_sysinfo")) # If this is the initial update, check only for the sysinfo # This is necessary as some devices crash on unexpected modules # See #105, #120, #161 if self._last_update is None: _LOGGER.debug("Performing the initial update to obtain sysinfo") response = await self.protocol.query(req) self._last_update = response self._set_sys_info(response["system"]["get_sysinfo"]) if not self._features: await self._initialize_features() await self._modular_update(req) self._set_sys_info(self._last_update["system"]["get_sysinfo"]) async def _initialize_features(self): self._add_feature( Feature( device=self, name="RSSI", attribute_getter="rssi", icon="mdi:signal" ) ) if "on_time" in self._sys_info: self._add_feature( Feature( device=self, name="On since", attribute_getter="on_since", icon="mdi:clock", ) ) async def _modular_update(self, req: dict) -> None: """Execute an update query.""" if self.has_emeter: _LOGGER.debug( "The device has emeter, querying its information along sysinfo" ) self.add_module("emeter", Emeter(self, self.emeter_type)) # TODO: perhaps modules should not have unsupported modules, # making separate handling for this unnecessary if self._supported_modules is None: supported = {} for module in self.modules.values(): if module.is_supported: supported[module._module] = module for module_feat in module._module_features.values(): self._add_feature(module_feat) self._supported_modules = supported request_list = [] est_response_size = 1024 if "system" in req else 0 for module in self.modules.values(): if not module.is_supported: _LOGGER.debug("Module %s not supported, skipping" % module) continue est_response_size += module.estimated_query_response_size if est_response_size > self.max_device_response_size: request_list.append(req) req = {} est_response_size = module.estimated_query_response_size q = module.query() _LOGGER.debug("Adding query for %s: %s", module, q) req = merge(req, q) request_list.append(req) responses = [ await self.protocol.query(request) for request in request_list if request ] # Preserve the last update and merge # responses on top of it so we remember # which modules are not supported, otherwise # every other update will query for them update: Dict = self._last_update.copy() if self._last_update else {} for response in responses: update = {**update, **response} self._last_update = update def update_from_discover_info(self, info: Dict[str, Any]) -> None: """Update state from info from the discover call.""" self._discovery_info = info if "system" in info and (sys_info := info["system"].get("get_sysinfo")): self._last_update = info self._set_sys_info(sys_info) else: # This allows setting of some info properties directly # from partial discovery info that will then be found # by the requires_update decorator self._set_sys_info(info) def _set_sys_info(self, sys_info: Dict[str, Any]) -> None: """Set sys_info.""" self._sys_info = sys_info if features := sys_info.get("feature"): self._legacy_features = _parse_features(features) @property # type: ignore @requires_update def sys_info(self) -> Dict[str, Any]: """ Return system information. Do not call this function from within the SmartDevice class itself as @requires_update will be affected for other properties. """ return self._sys_info # type: ignore @property # type: ignore @requires_update def model(self) -> str: """Return device model.""" sys_info = self._sys_info return str(sys_info["model"]) @property def has_children(self) -> bool: """Return true if the device has children devices.""" # Ideally we would check for the 'child_num' key in sys_info, # but devices that speak klap do not populate this key via # update_from_discover_info so we check for the devices # we know have children instead. return self.is_strip @property # type: ignore def alias(self) -> Optional[str]: """Return device name (alias).""" sys_info = self._sys_info return sys_info.get("alias") if sys_info else None async def set_alias(self, alias: str) -> None: """Set the device name (alias).""" return await self._query_helper("system", "set_dev_alias", {"alias": alias}) @property # type: ignore @requires_update def time(self) -> datetime: """Return current time from the device.""" return self.modules["time"].time @property # type: ignore @requires_update def timezone(self) -> Dict: """Return the current timezone.""" return self.modules["time"].timezone async def get_time(self) -> Optional[datetime]: """Return current time from the device, if available.""" _LOGGER.warning( "Use `time` property instead, this call will be removed in the future." ) return await self.modules["time"].get_time() async def get_timezone(self) -> Dict: """Return timezone information.""" _LOGGER.warning( "Use `timezone` property instead, this call will be removed in the future." ) return await self.modules["time"].get_timezone() @property # type: ignore @requires_update def hw_info(self) -> Dict: """Return hardware information. This returns just a selection of sysinfo keys that are related to hardware. """ keys = [ "sw_ver", "hw_ver", "mac", "mic_mac", "type", "mic_type", "hwId", "fwId", "oemId", "dev_name", ] sys_info = self._sys_info return {key: sys_info[key] for key in keys if key in sys_info} @property # type: ignore @requires_update def location(self) -> Dict: """Return geographical location.""" sys_info = self._sys_info loc = {"latitude": None, "longitude": None} if "latitude" in sys_info and "longitude" in sys_info: loc["latitude"] = sys_info["latitude"] loc["longitude"] = sys_info["longitude"] elif "latitude_i" in sys_info and "longitude_i" in sys_info: loc["latitude"] = sys_info["latitude_i"] / 10000 loc["longitude"] = sys_info["longitude_i"] / 10000 else: _LOGGER.debug("Unsupported device location.") return loc @property # type: ignore @requires_update def rssi(self) -> Optional[int]: """Return WiFi signal strength (rssi).""" rssi = self._sys_info.get("rssi") return None if rssi is None else int(rssi) @property # type: ignore @requires_update def mac(self) -> str: """Return mac address. :return: mac address in hexadecimal with colons, e.g. 01:23:45:67:89:ab """ sys_info = self._sys_info mac = sys_info.get("mac", sys_info.get("mic_mac")) if not mac: raise SmartDeviceException( "Unknown mac, please submit a bug report with sys_info output." ) mac = mac.replace("-", ":") # Format a mac that has no colons (usually from mic_mac field) if ":" not in mac: mac = ":".join(format(s, "02x") for s in bytes.fromhex(mac)) return mac async def set_mac(self, mac): """Set the mac address. :param str mac: mac in hexadecimal with colons, e.g. 01:23:45:67:89:ab """ return await self._query_helper("system", "set_mac_addr", {"mac": mac}) @property # type: ignore @requires_update def emeter_realtime(self) -> EmeterStatus: """Return current energy readings.""" self._verify_emeter() return EmeterStatus(self.modules["emeter"].realtime) async def get_emeter_realtime(self) -> EmeterStatus: """Retrieve current energy readings.""" self._verify_emeter() return EmeterStatus(await self.modules["emeter"].get_realtime()) @property # type: ignore @requires_update def emeter_today(self) -> Optional[float]: """Return today's energy consumption in kWh.""" self._verify_emeter() return self.modules["emeter"].emeter_today @property # type: ignore @requires_update def emeter_this_month(self) -> Optional[float]: """Return this month's energy consumption in kWh.""" self._verify_emeter() return self.modules["emeter"].emeter_this_month async def get_emeter_daily( self, year: Optional[int] = None, month: Optional[int] = None, kwh: bool = True ) -> Dict: """Retrieve daily statistics for a given month. :param year: year for which to retrieve statistics (default: this year) :param month: month for which to retrieve statistics (default: this month) :param kwh: return usage in kWh (default: True) :return: mapping of day of month to value """ self._verify_emeter() return await self.modules["emeter"].get_daystat(year=year, month=month, kwh=kwh) @requires_update async def get_emeter_monthly( self, year: Optional[int] = None, kwh: bool = True ) -> Dict: """Retrieve monthly statistics for a given year. :param year: year for which to retrieve statistics (default: this year) :param kwh: return usage in kWh (default: True) :return: dict: mapping of month to value """ self._verify_emeter() return await self.modules["emeter"].get_monthstat(year=year, kwh=kwh) @requires_update async def erase_emeter_stats(self) -> Dict: """Erase energy meter statistics.""" self._verify_emeter() return await self.modules["emeter"].erase_stats() @requires_update async def current_consumption(self) -> float: """Get the current power consumption in Watt.""" self._verify_emeter() response = self.emeter_realtime return float(response["power"]) async def reboot(self, delay: int = 1) -> None: """Reboot the device. Note that giving a delay of zero causes this to block, as the device reboots immediately without responding to the call. """ await self._query_helper("system", "reboot", {"delay": delay}) async def turn_off(self, **kwargs) -> Dict: """Turn off the device.""" raise NotImplementedError("Device subclass needs to implement this.") async def turn_on(self, **kwargs) -> Optional[Dict]: """Turn device on.""" raise NotImplementedError("Device subclass needs to implement this.") @property # type: ignore @requires_update def is_on(self) -> bool: """Return True if the device is on.""" raise NotImplementedError("Device subclass needs to implement this.") @property # type: ignore @requires_update def on_since(self) -> Optional[datetime]: """Return pretty-printed on-time, or None if not available.""" if "on_time" not in self._sys_info: return None if self.is_off: return None on_time = self._sys_info["on_time"] return datetime.now().replace(microsecond=0) - timedelta(seconds=on_time) @property # type: ignore @requires_update def state_information(self) -> Dict[str, Any]: """Return device-type specific, end-user friendly state information.""" raise NotImplementedError("Device subclass needs to implement this.") @property # type: ignore @requires_update def device_id(self) -> str: """Return unique ID for the device. If not overridden, this is the MAC address of the device. Individual sockets on strips will override this. """ return self.mac async def wifi_scan(self) -> List[WifiNetwork]: # noqa: D202 """Scan for available wifi networks.""" async def _scan(target): return await self._query_helper(target, "get_scaninfo", {"refresh": 1}) try: info = await _scan("netif") except SmartDeviceException as ex: _LOGGER.debug( "Unable to scan using 'netif', retrying with 'softaponboarding': %s", ex ) info = await _scan("smartlife.iot.common.softaponboarding") if "ap_list" not in info: raise SmartDeviceException("Invalid response for wifi scan: %s" % info) return [WifiNetwork(**x) for x in info["ap_list"]] async def wifi_join(self, ssid: str, password: str, keytype: str = "3"): # noqa: D202 """Join the given wifi network. If joining the network fails, the device will return to AP mode after a while. """ async def _join(target, payload): return await self._query_helper(target, "set_stainfo", payload) payload = {"ssid": ssid, "password": password, "key_type": int(keytype)} try: return await _join("netif", payload) except SmartDeviceException as ex: _LOGGER.debug( "Unable to join using 'netif', retrying with 'softaponboarding': %s", ex ) return await _join("smartlife.iot.common.softaponboarding", payload) @property def max_device_response_size(self) -> int: """Returns the maximum response size the device can safely construct.""" return 16 * 1024 @property def internal_state(self) -> Any: """Return the internal state of the instance. The returned object contains the raw results from the last update call. This should only be used for debugging purposes. """ return self._last_update or self._discovery_info