2021-01-04 23:21:14 +00:00
|
|
|
"""Support for Harmony Hub activities."""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
from homeassistant.components.switch import SwitchEntity
|
|
|
|
from homeassistant.const import CONF_NAME
|
2021-04-20 13:09:46 +00:00
|
|
|
from homeassistant.core import callback
|
2021-01-04 23:21:14 +00:00
|
|
|
|
|
|
|
from .connection_state import ConnectionStateMixin
|
2021-04-18 07:44:29 +00:00
|
|
|
from .const import DOMAIN, HARMONY_DATA
|
2021-01-04 23:21:14 +00:00
|
|
|
from .data import HarmonyData
|
|
|
|
from .subscriber import HarmonyCallback
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(hass, entry, async_add_entities):
|
|
|
|
"""Set up harmony activity switches."""
|
2021-04-18 07:44:29 +00:00
|
|
|
data = hass.data[DOMAIN][entry.entry_id][HARMONY_DATA]
|
2021-02-11 07:50:27 +00:00
|
|
|
activities = data.activities
|
2021-01-04 23:21:14 +00:00
|
|
|
|
|
|
|
switches = []
|
|
|
|
for activity in activities:
|
|
|
|
_LOGGER.debug("creating switch for activity: %s", activity)
|
2021-02-11 07:50:27 +00:00
|
|
|
name = f"{entry.data[CONF_NAME]} {activity['label']}"
|
2021-01-04 23:21:14 +00:00
|
|
|
switches.append(HarmonyActivitySwitch(name, activity, data))
|
|
|
|
|
|
|
|
async_add_entities(switches, True)
|
|
|
|
|
|
|
|
|
|
|
|
class HarmonyActivitySwitch(ConnectionStateMixin, SwitchEntity):
|
|
|
|
"""Switch representation of a Harmony activity."""
|
|
|
|
|
2021-02-11 07:50:27 +00:00
|
|
|
def __init__(self, name: str, activity: dict, data: HarmonyData):
|
2021-01-04 23:21:14 +00:00
|
|
|
"""Initialize HarmonyActivitySwitch class."""
|
|
|
|
super().__init__()
|
|
|
|
self._name = name
|
2021-02-11 07:50:27 +00:00
|
|
|
self._activity_name = activity["label"]
|
|
|
|
self._activity_id = activity["id"]
|
2021-01-04 23:21:14 +00:00
|
|
|
self._data = data
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
"""Return the Harmony activity's name."""
|
|
|
|
return self._name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def unique_id(self):
|
|
|
|
"""Return the unique id."""
|
2021-02-11 07:50:27 +00:00
|
|
|
return f"activity_{self._activity_id}"
|
2021-01-04 23:21:14 +00:00
|
|
|
|
2021-02-04 13:16:09 +00:00
|
|
|
@property
|
|
|
|
def device_info(self):
|
|
|
|
"""Return device info."""
|
|
|
|
return self._data.device_info(DOMAIN)
|
|
|
|
|
2021-01-04 23:21:14 +00:00
|
|
|
@property
|
|
|
|
def is_on(self):
|
|
|
|
"""Return if the current activity is the one for this switch."""
|
|
|
|
_, activity_name = self._data.current_activity
|
2021-02-11 07:50:27 +00:00
|
|
|
return activity_name == self._activity_name
|
2021-01-04 23:21:14 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def should_poll(self):
|
|
|
|
"""Return that we shouldn't be polled."""
|
|
|
|
return False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def available(self):
|
|
|
|
"""Return True if we're connected to the Hub, otherwise False."""
|
|
|
|
return self._data.available
|
|
|
|
|
|
|
|
async def async_turn_on(self, **kwargs):
|
|
|
|
"""Start this activity."""
|
2021-02-11 07:50:27 +00:00
|
|
|
await self._data.async_start_activity(self._activity_name)
|
2021-01-04 23:21:14 +00:00
|
|
|
|
|
|
|
async def async_turn_off(self, **kwargs):
|
|
|
|
"""Stop this activity."""
|
|
|
|
await self._data.async_power_off()
|
|
|
|
|
|
|
|
async def async_added_to_hass(self):
|
|
|
|
"""Call when entity is added to hass."""
|
|
|
|
|
|
|
|
callbacks = {
|
2021-04-20 13:09:46 +00:00
|
|
|
"connected": self.async_got_connected,
|
|
|
|
"disconnected": self.async_got_disconnected,
|
|
|
|
"activity_starting": self._async_activity_update,
|
|
|
|
"activity_started": self._async_activity_update,
|
2021-01-04 23:21:14 +00:00
|
|
|
"config_updated": None,
|
|
|
|
}
|
|
|
|
|
|
|
|
self.async_on_remove(self._data.async_subscribe(HarmonyCallback(**callbacks)))
|
|
|
|
|
2021-04-20 13:09:46 +00:00
|
|
|
@callback
|
|
|
|
def _async_activity_update(self, activity_info: tuple):
|
2021-01-04 23:21:14 +00:00
|
|
|
self.async_write_ha_state()
|