121 lines
3.5 KiB
Python
121 lines
3.5 KiB
Python
"""Provides device automations for Media player."""
|
|
from typing import Dict, List
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.const import (
|
|
ATTR_ENTITY_ID,
|
|
CONF_CONDITION,
|
|
CONF_DEVICE_ID,
|
|
CONF_DOMAIN,
|
|
CONF_ENTITY_ID,
|
|
CONF_TYPE,
|
|
STATE_IDLE,
|
|
STATE_OFF,
|
|
STATE_ON,
|
|
STATE_PAUSED,
|
|
STATE_PLAYING,
|
|
)
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers import condition, config_validation as cv, entity_registry
|
|
from homeassistant.helpers.config_validation import DEVICE_CONDITION_BASE_SCHEMA
|
|
from homeassistant.helpers.typing import ConfigType, TemplateVarsType
|
|
|
|
from . import DOMAIN
|
|
|
|
CONDITION_TYPES = {"is_on", "is_off", "is_idle", "is_paused", "is_playing"}
|
|
|
|
CONDITION_SCHEMA = DEVICE_CONDITION_BASE_SCHEMA.extend(
|
|
{
|
|
vol.Required(CONF_ENTITY_ID): cv.entity_id,
|
|
vol.Required(CONF_TYPE): vol.In(CONDITION_TYPES),
|
|
}
|
|
)
|
|
|
|
|
|
async def async_get_conditions(
|
|
hass: HomeAssistant, device_id: str
|
|
) -> List[Dict[str, str]]:
|
|
"""List device conditions for Media player 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
|
|
|
|
# Add conditions for each entity that belongs to this integration
|
|
conditions.append(
|
|
{
|
|
CONF_CONDITION: "device",
|
|
CONF_DEVICE_ID: device_id,
|
|
CONF_DOMAIN: DOMAIN,
|
|
CONF_ENTITY_ID: entry.entity_id,
|
|
CONF_TYPE: "is_on",
|
|
}
|
|
)
|
|
conditions.append(
|
|
{
|
|
CONF_CONDITION: "device",
|
|
CONF_DEVICE_ID: device_id,
|
|
CONF_DOMAIN: DOMAIN,
|
|
CONF_ENTITY_ID: entry.entity_id,
|
|
CONF_TYPE: "is_off",
|
|
}
|
|
)
|
|
conditions.append(
|
|
{
|
|
CONF_CONDITION: "device",
|
|
CONF_DEVICE_ID: device_id,
|
|
CONF_DOMAIN: DOMAIN,
|
|
CONF_ENTITY_ID: entry.entity_id,
|
|
CONF_TYPE: "is_idle",
|
|
}
|
|
)
|
|
conditions.append(
|
|
{
|
|
CONF_CONDITION: "device",
|
|
CONF_DEVICE_ID: device_id,
|
|
CONF_DOMAIN: DOMAIN,
|
|
CONF_ENTITY_ID: entry.entity_id,
|
|
CONF_TYPE: "is_paused",
|
|
}
|
|
)
|
|
conditions.append(
|
|
{
|
|
CONF_CONDITION: "device",
|
|
CONF_DEVICE_ID: device_id,
|
|
CONF_DOMAIN: DOMAIN,
|
|
CONF_ENTITY_ID: entry.entity_id,
|
|
CONF_TYPE: "is_playing",
|
|
}
|
|
)
|
|
|
|
return conditions
|
|
|
|
|
|
@callback
|
|
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_playing":
|
|
state = STATE_PLAYING
|
|
elif config[CONF_TYPE] == "is_idle":
|
|
state = STATE_IDLE
|
|
elif config[CONF_TYPE] == "is_paused":
|
|
state = STATE_PAUSED
|
|
elif config[CONF_TYPE] == "is_on":
|
|
state = STATE_ON
|
|
else:
|
|
state = STATE_OFF
|
|
|
|
def test_is_state(hass: HomeAssistant, variables: TemplateVarsType) -> bool:
|
|
"""Test if an entity is a certain state."""
|
|
return condition.state(hass, config[ATTR_ENTITY_ID], state)
|
|
|
|
return test_is_state
|