2019-11-07 12:44:59 +00:00
|
|
|
"""Provides device automations for Climate."""
|
2021-03-17 22:43:55 +00:00
|
|
|
from __future__ import annotations
|
2019-12-08 16:55:01 +00:00
|
|
|
|
2019-11-07 12:44:59 +00:00
|
|
|
import voluptuous as vol
|
|
|
|
|
|
|
|
from homeassistant.const import (
|
|
|
|
ATTR_ENTITY_ID,
|
2020-09-21 21:03:39 +00:00
|
|
|
ATTR_SUPPORTED_FEATURES,
|
2019-11-07 12:44:59 +00:00
|
|
|
CONF_DEVICE_ID,
|
2019-12-08 16:55:01 +00:00
|
|
|
CONF_DOMAIN,
|
2019-11-07 12:44:59 +00:00
|
|
|
CONF_ENTITY_ID,
|
2019-12-08 16:55:01 +00:00
|
|
|
CONF_TYPE,
|
2019-11-07 12:44:59 +00:00
|
|
|
)
|
2019-12-08 16:55:01 +00:00
|
|
|
from homeassistant.core import Context, HomeAssistant
|
2019-11-07 12:44:59 +00:00
|
|
|
from homeassistant.helpers import entity_registry
|
|
|
|
import homeassistant.helpers.config_validation as cv
|
2019-12-08 16:55:01 +00:00
|
|
|
|
2019-11-07 12:44:59 +00:00
|
|
|
from . import DOMAIN, const
|
|
|
|
|
|
|
|
ACTION_TYPES = {"set_hvac_mode", "set_preset_mode"}
|
|
|
|
|
|
|
|
SET_HVAC_MODE_SCHEMA = cv.DEVICE_ACTION_BASE_SCHEMA.extend(
|
|
|
|
{
|
|
|
|
vol.Required(CONF_TYPE): "set_hvac_mode",
|
|
|
|
vol.Required(CONF_ENTITY_ID): cv.entity_domain(DOMAIN),
|
|
|
|
vol.Required(const.ATTR_HVAC_MODE): vol.In(const.HVAC_MODES),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
SET_PRESET_MODE_SCHEMA = cv.DEVICE_ACTION_BASE_SCHEMA.extend(
|
|
|
|
{
|
|
|
|
vol.Required(CONF_TYPE): "set_preset_mode",
|
|
|
|
vol.Required(CONF_ENTITY_ID): cv.entity_domain(DOMAIN),
|
|
|
|
vol.Required(const.ATTR_PRESET_MODE): str,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
ACTION_SCHEMA = vol.Any(SET_HVAC_MODE_SCHEMA, SET_PRESET_MODE_SCHEMA)
|
|
|
|
|
|
|
|
|
2021-03-17 22:43:55 +00:00
|
|
|
async def async_get_actions(hass: HomeAssistant, device_id: str) -> list[dict]:
|
2019-11-07 12:44:59 +00:00
|
|
|
"""List device actions for Climate devices."""
|
|
|
|
registry = await entity_registry.async_get_registry(hass)
|
|
|
|
actions = []
|
|
|
|
|
|
|
|
# Get all the integrations entities for this device
|
|
|
|
for entry in entity_registry.async_entries_for_device(registry, device_id):
|
|
|
|
if entry.domain != DOMAIN:
|
|
|
|
continue
|
|
|
|
|
|
|
|
state = hass.states.get(entry.entity_id)
|
|
|
|
|
|
|
|
# We need a state or else we can't populate the HVAC and preset modes.
|
|
|
|
if state is None:
|
|
|
|
continue
|
|
|
|
|
|
|
|
actions.append(
|
|
|
|
{
|
|
|
|
CONF_DEVICE_ID: device_id,
|
|
|
|
CONF_DOMAIN: DOMAIN,
|
|
|
|
CONF_ENTITY_ID: entry.entity_id,
|
|
|
|
CONF_TYPE: "set_hvac_mode",
|
|
|
|
}
|
|
|
|
)
|
2020-09-21 21:03:39 +00:00
|
|
|
if state.attributes[ATTR_SUPPORTED_FEATURES] & const.SUPPORT_PRESET_MODE:
|
2019-11-25 19:12:01 +00:00
|
|
|
actions.append(
|
|
|
|
{
|
|
|
|
CONF_DEVICE_ID: device_id,
|
|
|
|
CONF_DOMAIN: DOMAIN,
|
|
|
|
CONF_ENTITY_ID: entry.entity_id,
|
|
|
|
CONF_TYPE: "set_preset_mode",
|
|
|
|
}
|
|
|
|
)
|
2019-11-07 12:44:59 +00:00
|
|
|
|
|
|
|
return actions
|
|
|
|
|
|
|
|
|
|
|
|
async def async_call_action_from_config(
|
2021-03-17 22:43:55 +00:00
|
|
|
hass: HomeAssistant, config: dict, variables: dict, context: Context | None
|
2019-11-07 12:44:59 +00:00
|
|
|
) -> None:
|
|
|
|
"""Execute a device action."""
|
|
|
|
service_data = {ATTR_ENTITY_ID: config[CONF_ENTITY_ID]}
|
|
|
|
|
|
|
|
if config[CONF_TYPE] == "set_hvac_mode":
|
|
|
|
service = const.SERVICE_SET_HVAC_MODE
|
|
|
|
service_data[const.ATTR_HVAC_MODE] = config[const.ATTR_HVAC_MODE]
|
|
|
|
elif config[CONF_TYPE] == "set_preset_mode":
|
|
|
|
service = const.SERVICE_SET_PRESET_MODE
|
|
|
|
service_data[const.ATTR_PRESET_MODE] = config[const.ATTR_PRESET_MODE]
|
|
|
|
|
|
|
|
await hass.services.async_call(
|
|
|
|
DOMAIN, service, service_data, blocking=True, context=context
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
async def async_get_action_capabilities(hass, config):
|
|
|
|
"""List action capabilities."""
|
|
|
|
state = hass.states.get(config[CONF_ENTITY_ID])
|
|
|
|
action_type = config[CONF_TYPE]
|
|
|
|
|
|
|
|
fields = {}
|
|
|
|
|
|
|
|
if action_type == "set_hvac_mode":
|
|
|
|
hvac_modes = state.attributes[const.ATTR_HVAC_MODES] if state else []
|
|
|
|
fields[vol.Required(const.ATTR_HVAC_MODE)] = vol.In(hvac_modes)
|
|
|
|
elif action_type == "set_preset_mode":
|
|
|
|
if state:
|
|
|
|
preset_modes = state.attributes.get(const.ATTR_PRESET_MODES, [])
|
|
|
|
else:
|
|
|
|
preset_modes = []
|
|
|
|
fields[vol.Required(const.ATTR_PRESET_MODE)] = vol.In(preset_modes)
|
|
|
|
|
|
|
|
return {"extra_fields": vol.Schema(fields)}
|