2019-11-07 16:03:06 +00:00
|
|
|
"""Provide the device automations for Climate."""
|
|
|
|
from typing import Dict, List
|
2019-12-08 16:55:01 +00:00
|
|
|
|
2019-11-07 16:03:06 +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 16:03:06 +00:00
|
|
|
CONF_CONDITION,
|
|
|
|
CONF_DEVICE_ID,
|
2019-12-08 16:55:01 +00:00
|
|
|
CONF_DOMAIN,
|
2019-11-07 16:03:06 +00:00
|
|
|
CONF_ENTITY_ID,
|
2019-12-08 16:55:01 +00:00
|
|
|
CONF_TYPE,
|
2019-11-07 16:03:06 +00:00
|
|
|
)
|
2020-01-29 21:59:45 +00:00
|
|
|
from homeassistant.core import HomeAssistant, callback
|
2019-11-07 16:03:06 +00:00
|
|
|
from homeassistant.helpers import condition, config_validation as cv, entity_registry
|
|
|
|
from homeassistant.helpers.config_validation import DEVICE_CONDITION_BASE_SCHEMA
|
2019-12-08 16:55:01 +00:00
|
|
|
from homeassistant.helpers.typing import ConfigType, TemplateVarsType
|
|
|
|
|
2019-11-07 16:03:06 +00:00
|
|
|
from . import DOMAIN, const
|
|
|
|
|
|
|
|
CONDITION_TYPES = {"is_hvac_mode", "is_preset_mode"}
|
|
|
|
|
|
|
|
HVAC_MODE_CONDITION = DEVICE_CONDITION_BASE_SCHEMA.extend(
|
|
|
|
{
|
|
|
|
vol.Required(CONF_ENTITY_ID): cv.entity_id,
|
|
|
|
vol.Required(CONF_TYPE): "is_hvac_mode",
|
|
|
|
vol.Required(const.ATTR_HVAC_MODE): vol.In(const.HVAC_MODES),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
PRESET_MODE_CONDITION = DEVICE_CONDITION_BASE_SCHEMA.extend(
|
|
|
|
{
|
|
|
|
vol.Required(CONF_ENTITY_ID): cv.entity_id,
|
|
|
|
vol.Required(CONF_TYPE): "is_preset_mode",
|
|
|
|
vol.Required(const.ATTR_PRESET_MODE): str,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
CONDITION_SCHEMA = vol.Any(HVAC_MODE_CONDITION, PRESET_MODE_CONDITION)
|
|
|
|
|
|
|
|
|
|
|
|
async def async_get_conditions(
|
|
|
|
hass: HomeAssistant, device_id: str
|
|
|
|
) -> List[Dict[str, str]]:
|
|
|
|
"""List device conditions for Climate devices."""
|
|
|
|
registry = await entity_registry.async_get_registry(hass)
|
|
|
|
conditions = []
|
|
|
|
|
|
|
|
# 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)
|
|
|
|
|
|
|
|
conditions.append(
|
|
|
|
{
|
|
|
|
CONF_CONDITION: "device",
|
|
|
|
CONF_DEVICE_ID: device_id,
|
|
|
|
CONF_DOMAIN: DOMAIN,
|
|
|
|
CONF_ENTITY_ID: entry.entity_id,
|
|
|
|
CONF_TYPE: "is_hvac_mode",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2020-09-21 21:03:39 +00:00
|
|
|
if (
|
|
|
|
state
|
|
|
|
and state.attributes[ATTR_SUPPORTED_FEATURES] & const.SUPPORT_PRESET_MODE
|
|
|
|
):
|
2019-11-07 16:03:06 +00:00
|
|
|
conditions.append(
|
|
|
|
{
|
|
|
|
CONF_CONDITION: "device",
|
|
|
|
CONF_DEVICE_ID: device_id,
|
|
|
|
CONF_DOMAIN: DOMAIN,
|
|
|
|
CONF_ENTITY_ID: entry.entity_id,
|
|
|
|
CONF_TYPE: "is_preset_mode",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
return conditions
|
|
|
|
|
|
|
|
|
2020-01-29 21:59:45 +00:00
|
|
|
@callback
|
2019-11-07 16:03:06 +00:00
|
|
|
def async_condition_from_config(
|
|
|
|
config: ConfigType, config_validation: bool
|
|
|
|
) -> condition.ConditionCheckerType:
|
|
|
|
"""Create a function to test a device condition."""
|
|
|
|
if config_validation:
|
|
|
|
config = CONDITION_SCHEMA(config)
|
|
|
|
|
|
|
|
if config[CONF_TYPE] == "is_hvac_mode":
|
|
|
|
attribute = const.ATTR_HVAC_MODE
|
|
|
|
else:
|
|
|
|
attribute = const.ATTR_PRESET_MODE
|
|
|
|
|
|
|
|
def test_is_state(hass: HomeAssistant, variables: TemplateVarsType) -> bool:
|
|
|
|
"""Test if an entity is a certain state."""
|
|
|
|
state = hass.states.get(config[ATTR_ENTITY_ID])
|
|
|
|
return state and state.attributes.get(attribute) == config[attribute]
|
|
|
|
|
|
|
|
return test_is_state
|
|
|
|
|
|
|
|
|
|
|
|
async def async_get_condition_capabilities(hass, config):
|
|
|
|
"""List condition capabilities."""
|
|
|
|
state = hass.states.get(config[CONF_ENTITY_ID])
|
|
|
|
condition_type = config[CONF_TYPE]
|
|
|
|
|
|
|
|
fields = {}
|
|
|
|
|
|
|
|
if condition_type == "is_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 condition_type == "is_preset_mode":
|
|
|
|
if state:
|
|
|
|
preset_modes = state.attributes.get(const.ATTR_PRESET_MODES, [])
|
|
|
|
else:
|
|
|
|
preset_modes = []
|
|
|
|
|
|
|
|
fields[vol.Required(const.ATTR_PRESET_MODES)] = vol.In(preset_modes)
|
|
|
|
|
|
|
|
return {"extra_fields": vol.Schema(fields)}
|