2019-10-25 17:51:35 +00:00
|
|
|
"""Provides device automations for Device tracker."""
|
|
|
|
from typing import Dict, List
|
2019-12-09 11:14:38 +00:00
|
|
|
|
2019-10-25 17:51:35 +00:00
|
|
|
import voluptuous as vol
|
|
|
|
|
|
|
|
from homeassistant.const import (
|
|
|
|
ATTR_ENTITY_ID,
|
|
|
|
CONF_CONDITION,
|
|
|
|
CONF_DEVICE_ID,
|
2019-12-09 11:14:38 +00:00
|
|
|
CONF_DOMAIN,
|
2019-10-25 17:51:35 +00:00
|
|
|
CONF_ENTITY_ID,
|
2019-12-09 11:14:38 +00:00
|
|
|
CONF_TYPE,
|
2019-10-25 17:51:35 +00:00
|
|
|
STATE_HOME,
|
2019-12-09 11:14:38 +00:00
|
|
|
STATE_NOT_HOME,
|
2019-10-25 17:51:35 +00:00
|
|
|
)
|
2020-01-29 21:59:45 +00:00
|
|
|
from homeassistant.core import HomeAssistant, callback
|
2019-10-25 17:51:35 +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-09 11:14:38 +00:00
|
|
|
from homeassistant.helpers.typing import ConfigType, TemplateVarsType
|
|
|
|
|
2019-10-25 17:51:35 +00:00
|
|
|
from . import DOMAIN
|
|
|
|
|
|
|
|
CONDITION_TYPES = {"is_home", "is_not_home"}
|
|
|
|
|
|
|
|
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 Device tracker 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_home",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
conditions.append(
|
|
|
|
{
|
|
|
|
CONF_CONDITION: "device",
|
|
|
|
CONF_DEVICE_ID: device_id,
|
|
|
|
CONF_DOMAIN: DOMAIN,
|
|
|
|
CONF_ENTITY_ID: entry.entity_id,
|
|
|
|
CONF_TYPE: "is_not_home",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
return conditions
|
|
|
|
|
|
|
|
|
2020-01-29 21:59:45 +00:00
|
|
|
@callback
|
2019-10-25 17:51:35 +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_home":
|
|
|
|
state = STATE_HOME
|
|
|
|
else:
|
|
|
|
state = STATE_NOT_HOME
|
|
|
|
|
2020-01-29 21:59:45 +00:00
|
|
|
@callback
|
2019-10-25 17:51:35 +00:00
|
|
|
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
|