"""Base class for SwitchBot via API entities.""" from typing import Any from switchbot_api import Commands, Device, Remote, SwitchBotAPI from switchbot_api.exceptions import ( SwitchBotConnectionError, SwitchBotDeviceOfflineError, SwitchBotError, ) from homeassistant.core import callback from homeassistant.exceptions import HomeAssistantError from homeassistant.helpers.device_registry import DeviceInfo from homeassistant.helpers.update_coordinator import CoordinatorEntity from .const import DOMAIN from .coordinator import SwitchBotCoordinator class SwitchBotCloudEntity(CoordinatorEntity[SwitchBotCoordinator]): """Representation of a SwitchBot Cloud entity.""" _api: SwitchBotAPI _switchbot_state: dict[str, Any] | None = None _attr_has_entity_name = True def __init__( self, api: SwitchBotAPI, device: Device | Remote, coordinator: SwitchBotCoordinator, ) -> None: """Initialize the entity.""" super().__init__(coordinator) self._api = api self._attr_unique_id = device.device_id _sw_version = None if self.coordinator.data is not None: _sw_version = self.coordinator.data.get("version") self._attr_device_info = DeviceInfo( identifiers={(DOMAIN, device.device_id)}, name=device.device_name, manufacturer="SwitchBot", model=device.device_type, sw_version=_sw_version, ) async def send_api_command( self, command: Commands, command_type: str = "command", parameters: dict | str | int = "default", ) -> None: """Send command to device. Translate SwitchBot library exceptions into ``HomeAssistantError`` so device-communication failures follow the developer-docs guidance and can be suppressed by script-level flags such as ``continue_on_error``, which only catches ``HomeAssistantError`` subclasses. """ try: await self._api.send_command( self._attr_unique_id, command, command_type, parameters, ) except SwitchBotDeviceOfflineError as err: raise HomeAssistantError( translation_domain=DOMAIN, translation_key="device_offline", ) from err except SwitchBotConnectionError as err: raise HomeAssistantError( translation_domain=DOMAIN, translation_key="connection_error", translation_placeholders={"error": str(err)}, ) from err except SwitchBotError as err: raise HomeAssistantError( translation_domain=DOMAIN, translation_key="command_failed", translation_placeholders={"error": str(err)}, ) from err @callback def _handle_coordinator_update(self) -> None: """Handle updated data from the coordinator.""" self._set_attributes() super()._handle_coordinator_update() def _set_attributes(self) -> None: """Set attributes from coordinator data.""" async def async_added_to_hass(self) -> None: """Run when entity is about to be added to hass.""" await super().async_added_to_hass() self._set_attributes()