core/homeassistant/helpers/script.py

406 lines
13 KiB
Python
Raw Normal View History

2016-04-21 22:52:20 +00:00
"""Helpers to execute scripts."""
2016-04-21 22:52:20 +00:00
import logging
from contextlib import suppress
from datetime import datetime
2016-04-21 22:52:20 +00:00
from itertools import islice
from typing import Optional, Sequence, Callable, Dict, List, Set, Tuple
import voluptuous as vol
from homeassistant.core import HomeAssistant, Context, callback, CALLBACK_TYPE
from homeassistant.const import CONF_CONDITION, CONF_DEVICE, CONF_DOMAIN, CONF_TIMEOUT
from homeassistant import exceptions
2016-08-09 03:42:25 +00:00
from homeassistant.helpers import (
2019-07-31 19:25:30 +00:00
service,
condition,
template as template,
config_validation as cv,
)
from homeassistant.helpers.event import (
2019-07-31 19:25:30 +00:00
async_track_point_in_utc_time,
async_track_template,
)
2016-08-09 03:42:25 +00:00
from homeassistant.helpers.typing import ConfigType
from homeassistant.loader import async_get_integration
2016-08-09 03:42:25 +00:00
import homeassistant.util.dt as date_util
2019-07-31 19:25:30 +00:00
from homeassistant.util.async_ import run_coroutine_threadsafe, run_callback_threadsafe
2016-04-21 22:52:20 +00:00
# mypy: allow-incomplete-defs, allow-untyped-calls, allow-untyped-defs
# mypy: no-check-untyped-defs
2016-04-21 22:52:20 +00:00
_LOGGER = logging.getLogger(__name__)
2019-07-31 19:25:30 +00:00
CONF_ALIAS = "alias"
CONF_SERVICE = "service"
CONF_SERVICE_DATA = "data"
CONF_SEQUENCE = "sequence"
CONF_EVENT = "event"
CONF_EVENT_DATA = "event_data"
CONF_EVENT_DATA_TEMPLATE = "event_data_template"
CONF_DELAY = "delay"
CONF_WAIT_TEMPLATE = "wait_template"
CONF_CONTINUE = "continue_on_timeout"
2016-04-21 22:52:20 +00:00
2019-07-31 19:25:30 +00:00
ACTION_DELAY = "delay"
ACTION_WAIT_TEMPLATE = "wait_template"
ACTION_CHECK_CONDITION = "condition"
ACTION_FIRE_EVENT = "event"
ACTION_CALL_SERVICE = "call_service"
ACTION_DEVICE_AUTOMATION = "device"
def _determine_action(action):
"""Determine action type."""
if CONF_DELAY in action:
return ACTION_DELAY
if CONF_WAIT_TEMPLATE in action:
return ACTION_WAIT_TEMPLATE
if CONF_CONDITION in action:
return ACTION_CHECK_CONDITION
if CONF_EVENT in action:
return ACTION_FIRE_EVENT
if CONF_DEVICE in action:
return ACTION_DEVICE_AUTOMATION
return ACTION_CALL_SERVICE
2019-07-31 19:25:30 +00:00
def call_from_config(
hass: HomeAssistant,
config: ConfigType,
variables: Optional[Sequence] = None,
context: Optional[Context] = None,
) -> None:
2016-04-21 22:52:20 +00:00
"""Call a script based on a config entry."""
Script(hass, cv.SCRIPT_SCHEMA(config)).run(variables, context)
2016-04-21 22:52:20 +00:00
class _StopScript(Exception):
"""Throw if script needs to stop."""
class _SuspendScript(Exception):
"""Throw if script needs to suspend."""
2019-07-31 19:25:30 +00:00
class Script:
2016-04-21 22:52:20 +00:00
"""Representation of a script."""
2019-07-31 19:25:30 +00:00
def __init__(
self,
hass: HomeAssistant,
sequence,
name: Optional[str] = None,
change_listener=None,
) -> None:
2016-04-21 22:52:20 +00:00
"""Initialize the script."""
self.hass = hass
self.sequence = sequence
template.attach(hass, self.sequence)
2016-04-21 22:52:20 +00:00
self.name = name
self._change_listener = change_listener
self._cur = -1
self._exception_step: Optional[int] = None
2016-04-21 22:52:20 +00:00
self.last_action = None
self.last_triggered: Optional[datetime] = None
2019-07-31 19:25:30 +00:00
self.can_cancel = any(
CONF_DELAY in action or CONF_WAIT_TEMPLATE in action
for action in self.sequence
)
self._async_listener: List[CALLBACK_TYPE] = []
self._config_cache: Dict[Set[Tuple], Callable[..., bool]] = {}
self._actions = {
ACTION_DELAY: self._async_delay,
ACTION_WAIT_TEMPLATE: self._async_wait_template,
ACTION_CHECK_CONDITION: self._async_check_condition,
ACTION_FIRE_EVENT: self._async_fire_event,
ACTION_CALL_SERVICE: self._async_call_service,
ACTION_DEVICE_AUTOMATION: self._async_device_automation,
}
2016-04-21 22:52:20 +00:00
@property
def is_running(self) -> bool:
2016-04-21 22:52:20 +00:00
"""Return true if script is on."""
return self._cur != -1
def run(self, variables=None, context=None):
2016-04-21 22:52:20 +00:00
"""Run script."""
2016-10-01 06:26:01 +00:00
run_coroutine_threadsafe(
2019-07-31 19:25:30 +00:00
self.async_run(variables, context), self.hass.loop
).result()
2016-10-01 06:26:01 +00:00
2019-07-31 19:25:30 +00:00
async def async_run(
self, variables: Optional[Sequence] = None, context: Optional[Context] = None
) -> None:
2016-10-01 06:26:01 +00:00
"""Run script.
This method is a coroutine.
2016-10-01 06:26:01 +00:00
"""
self.last_triggered = date_util.utcnow()
2016-10-01 06:26:01 +00:00
if self._cur == -1:
2019-07-31 19:25:30 +00:00
self._log("Running script")
2016-10-01 06:26:01 +00:00
self._cur = 0
# Unregister callback if we were in a delay or wait but turn on is
# called again. In that case we just continue execution.
2016-10-01 06:26:01 +00:00
self._async_remove_listener()
for cur, action in islice(enumerate(self.sequence), self._cur, None):
try:
await self._handle_action(action, variables, context)
except _SuspendScript:
# Store next step to take and notify change listeners
2016-10-01 06:26:01 +00:00
self._cur = cur + 1
if self._change_listener:
self.hass.async_add_job(self._change_listener)
2016-10-01 06:26:01 +00:00
return
except _StopScript:
break
2018-12-13 11:21:16 +00:00
except Exception:
# Store the step that had an exception
2018-12-13 11:21:16 +00:00
self._exception_step = cur
# Set script to not running
self._cur = -1
self.last_action = None
# Pass exception on.
raise
# Set script to not-running.
2016-10-01 06:26:01 +00:00
self._cur = -1
self.last_action = None
if self._change_listener:
self.hass.async_add_job(self._change_listener)
2016-04-21 22:52:20 +00:00
def stop(self) -> None:
2016-04-21 22:52:20 +00:00
"""Stop running script."""
2016-10-01 06:26:01 +00:00
run_callback_threadsafe(self.hass.loop, self.async_stop).result()
2016-04-21 22:52:20 +00:00
2016-10-01 06:26:01 +00:00
def async_stop(self) -> None:
"""Stop running script."""
if self._cur == -1:
return
2016-04-21 22:52:20 +00:00
2016-10-01 06:26:01 +00:00
self._cur = -1
self._async_remove_listener()
if self._change_listener:
self.hass.async_add_job(self._change_listener)
2016-10-01 06:26:01 +00:00
2018-12-13 11:21:16 +00:00
@callback
def async_log_exception(self, logger, message_base, exception):
"""Log an exception for this script.
Should only be called on exceptions raised by this scripts async_run.
"""
# pylint: disable=protected-access
step = self._exception_step
action = self.sequence[step]
action_type = _determine_action(action)
error = None
meth = logger.error
if isinstance(exception, vol.Invalid):
error_desc = "Invalid data"
elif isinstance(exception, exceptions.TemplateError):
error_desc = "Error rendering template"
elif isinstance(exception, exceptions.Unauthorized):
error_desc = "Unauthorized"
elif isinstance(exception, exceptions.ServiceNotFound):
error_desc = "Service not found"
else:
# Print the full stack trace, unknown error
2019-07-31 19:25:30 +00:00
error_desc = "Unknown error"
2018-12-13 11:21:16 +00:00
meth = logger.exception
error = ""
if error is None:
error = str(exception)
2019-07-31 19:25:30 +00:00
meth(
"%s. %s for %s at pos %s: %s",
message_base,
error_desc,
action_type,
step + 1,
error,
)
2018-12-13 11:21:16 +00:00
async def _handle_action(self, action, variables, context):
"""Handle an action."""
2019-07-31 19:25:30 +00:00
await self._actions[_determine_action(action)](action, variables, context)
async def _async_delay(self, action, variables, context):
"""Handle delay."""
# Call ourselves in the future to continue work
unsub = None
@callback
def async_script_delay(now):
"""Handle delay."""
# pylint: disable=cell-var-from-loop
with suppress(ValueError):
self._async_listener.remove(unsub)
2019-07-31 19:25:30 +00:00
self.hass.async_create_task(self.async_run(variables, context))
delay = action[CONF_DELAY]
try:
if isinstance(delay, template.Template):
2019-07-31 19:25:30 +00:00
delay = vol.All(cv.time_period, cv.positive_timedelta)(
delay.async_render(variables)
)
elif isinstance(delay, dict):
delay_data = {}
2019-07-31 19:25:30 +00:00
delay_data.update(template.render_complex(delay, variables))
delay = cv.time_period(delay_data)
except (exceptions.TemplateError, vol.Invalid) as ex:
2019-07-31 19:25:30 +00:00
_LOGGER.error("Error rendering '%s' delay template: %s", self.name, ex)
raise _StopScript
2019-07-31 19:25:30 +00:00
self.last_action = action.get(CONF_ALIAS, "delay {}".format(delay))
self._log("Executing step %s" % self.last_action)
unsub = async_track_point_in_utc_time(
2019-07-31 19:25:30 +00:00
self.hass, async_script_delay, date_util.utcnow() + delay
)
self._async_listener.append(unsub)
raise _SuspendScript
async def _async_wait_template(self, action, variables, context):
"""Handle a wait template."""
# Call ourselves in the future to continue work
wait_template = action[CONF_WAIT_TEMPLATE]
wait_template.hass = self.hass
2019-07-31 19:25:30 +00:00
self.last_action = action.get(CONF_ALIAS, "wait template")
self._log("Executing step %s" % self.last_action)
# check if condition already okay
2019-07-31 19:25:30 +00:00
if condition.async_template(self.hass, wait_template, variables):
return
@callback
def async_script_wait(entity_id, from_s, to_s):
"""Handle script after template condition is true."""
self._async_remove_listener()
2019-07-31 19:25:30 +00:00
self.hass.async_create_task(self.async_run(variables, context))
2019-07-31 19:25:30 +00:00
self._async_listener.append(
async_track_template(self.hass, wait_template, async_script_wait, variables)
)
if CONF_TIMEOUT in action:
self._async_set_timeout(
2019-07-31 19:25:30 +00:00
action, variables, context, action.get(CONF_CONTINUE, True)
)
raise _SuspendScript
async def _async_call_service(self, action, variables, context):
"""Call the service specified in the action.
This method is a coroutine.
"""
2019-07-31 19:25:30 +00:00
self.last_action = action.get(CONF_ALIAS, "call service")
self._log("Executing step %s" % self.last_action)
await service.async_call_from_config(
2019-07-31 19:25:30 +00:00
self.hass,
action,
blocking=True,
variables=variables,
validate_config=False,
2019-07-31 19:25:30 +00:00
context=context,
)
2016-04-21 22:52:20 +00:00
async def _async_device_automation(self, action, variables, context):
"""Perform the device automation specified in the action.
This method is a coroutine.
"""
self.last_action = action.get(CONF_ALIAS, "device automation")
self._log("Executing step %s" % self.last_action)
integration = await async_get_integration(self.hass, action[CONF_DOMAIN])
platform = integration.get_platform("device_automation")
await platform.async_call_action_from_config(
self.hass, action, variables, context
)
async def _async_fire_event(self, action, variables, context):
2016-04-21 22:52:20 +00:00
"""Fire an event."""
self.last_action = action.get(CONF_ALIAS, action[CONF_EVENT])
self._log("Executing step %s" % self.last_action)
event_data = dict(action.get(CONF_EVENT_DATA, {}))
if CONF_EVENT_DATA_TEMPLATE in action:
try:
2019-07-31 19:25:30 +00:00
event_data.update(
template.render_complex(action[CONF_EVENT_DATA_TEMPLATE], variables)
)
except exceptions.TemplateError as ex:
2019-07-31 19:25:30 +00:00
_LOGGER.error("Error rendering event data template: %s", ex)
2019-07-31 19:25:30 +00:00
self.hass.bus.async_fire(action[CONF_EVENT], event_data, context=context)
2016-04-21 22:52:20 +00:00
async def _async_check_condition(self, action, variables, context):
"""Test if condition is matching."""
config_cache_key = frozenset((k, str(v)) for k, v in action.items())
config = self._config_cache.get(config_cache_key)
if not config:
config = await condition.async_from_config(self.hass, action, False)
self._config_cache[config_cache_key] = config
self.last_action = action.get(CONF_ALIAS, action[CONF_CONDITION])
check = config(self.hass, variables)
2016-04-28 11:39:44 +00:00
self._log("Test condition {}: {}".format(self.last_action, check))
if not check:
raise _StopScript
2019-07-31 19:25:30 +00:00
def _async_set_timeout(self, action, variables, context, continue_on_timeout):
"""Schedule a timeout to abort or continue script."""
timeout = action[CONF_TIMEOUT]
unsub = None
@callback
def async_script_timeout(now):
"""Call after timeout is retrieve."""
with suppress(ValueError):
self._async_listener.remove(unsub)
# Check if we want to continue to execute
# the script after the timeout
if continue_on_timeout:
2019-07-31 19:25:30 +00:00
self.hass.async_create_task(self.async_run(variables, context))
else:
self._log("Timeout reached, abort script.")
self.async_stop()
unsub = async_track_point_in_utc_time(
2019-07-31 19:25:30 +00:00
self.hass, async_script_timeout, date_util.utcnow() + timeout
)
self._async_listener.append(unsub)
2016-10-01 06:26:01 +00:00
def _async_remove_listener(self):
2016-04-21 22:52:20 +00:00
"""Remove point in time listener, if any."""
for unsub in self._async_listener:
unsub()
self._async_listener.clear()
2016-04-21 22:52:20 +00:00
def _log(self, msg):
2016-04-21 22:52:20 +00:00
"""Logger helper."""
if self.name is not None:
msg = "Script {}: {}".format(self.name, msg)
2016-04-21 22:52:20 +00:00
_LOGGER.info(msg)