2017-12-13 09:17:12 +00:00
|
|
|
"""Provide configuration end points for Automations."""
|
2018-04-30 13:56:42 +00:00
|
|
|
import uuid
|
2017-05-10 01:44:00 +00:00
|
|
|
|
2020-11-12 10:58:28 +00:00
|
|
|
from homeassistant.components.automation.config import (
|
|
|
|
DOMAIN,
|
|
|
|
PLATFORM_SCHEMA,
|
|
|
|
async_validate_config_item,
|
|
|
|
)
|
2019-10-15 23:15:26 +00:00
|
|
|
from homeassistant.config import AUTOMATION_CONFIG_PATH
|
2019-12-08 16:57:28 +00:00
|
|
|
from homeassistant.const import CONF_ID, SERVICE_RELOAD
|
2020-01-27 07:01:35 +00:00
|
|
|
from homeassistant.helpers import config_validation as cv, entity_registry
|
2017-05-10 01:44:00 +00:00
|
|
|
|
2020-01-27 07:01:35 +00:00
|
|
|
from . import ACTION_DELETE, EditIdBasedConfigView
|
2019-03-21 05:56:46 +00:00
|
|
|
|
2017-05-10 01:44:00 +00:00
|
|
|
|
2018-10-01 06:50:05 +00:00
|
|
|
async def async_setup(hass):
|
2017-05-10 01:44:00 +00:00
|
|
|
"""Set up the Automation config API."""
|
2019-07-31 19:25:30 +00:00
|
|
|
|
2020-01-27 07:01:35 +00:00
|
|
|
async def hook(action, config_key):
|
2018-09-27 21:14:09 +00:00
|
|
|
"""post_write_hook for Config View that reloads automations."""
|
|
|
|
await hass.services.async_call(DOMAIN, SERVICE_RELOAD)
|
|
|
|
|
2020-01-27 07:01:35 +00:00
|
|
|
if action != ACTION_DELETE:
|
|
|
|
return
|
|
|
|
|
2022-05-02 11:15:19 +00:00
|
|
|
ent_reg = entity_registry.async_get(hass)
|
2020-01-27 07:01:35 +00:00
|
|
|
|
|
|
|
entity_id = ent_reg.async_get_entity_id(DOMAIN, DOMAIN, config_key)
|
|
|
|
|
|
|
|
if entity_id is None:
|
|
|
|
return
|
|
|
|
|
|
|
|
ent_reg.async_remove(entity_id)
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
hass.http.register_view(
|
|
|
|
EditAutomationConfigView(
|
|
|
|
DOMAIN,
|
|
|
|
"config",
|
2019-10-15 23:15:26 +00:00
|
|
|
AUTOMATION_CONFIG_PATH,
|
2019-07-31 19:25:30 +00:00
|
|
|
cv.string,
|
|
|
|
PLATFORM_SCHEMA,
|
|
|
|
post_write_hook=hook,
|
2019-09-27 15:48:48 +00:00
|
|
|
data_validator=async_validate_config_item,
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
|
|
|
)
|
2017-05-10 01:44:00 +00:00
|
|
|
return True
|
2018-04-23 17:47:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
class EditAutomationConfigView(EditIdBasedConfigView):
|
|
|
|
"""Edit automation config."""
|
|
|
|
|
|
|
|
def _write_value(self, hass, data, config_key, new_value):
|
|
|
|
"""Set value."""
|
2022-02-01 17:45:08 +00:00
|
|
|
updated_value = {CONF_ID: config_key}
|
2018-04-23 17:47:06 +00:00
|
|
|
|
|
|
|
# Iterate through some keys that we want to have ordered in the output
|
2022-02-01 17:45:08 +00:00
|
|
|
for key in ("alias", "description", "trigger", "condition", "action"):
|
2018-04-23 17:47:06 +00:00
|
|
|
if key in new_value:
|
|
|
|
updated_value[key] = new_value[key]
|
|
|
|
|
|
|
|
# We cover all current fields above, but just in case we start
|
|
|
|
# supporting more fields in the future.
|
|
|
|
updated_value.update(new_value)
|
2022-02-01 17:45:08 +00:00
|
|
|
|
|
|
|
updated = False
|
|
|
|
for index, cur_value in enumerate(data):
|
|
|
|
# When people copy paste their automations to the config file,
|
|
|
|
# they sometimes forget to add IDs. Fix it here.
|
|
|
|
if CONF_ID not in cur_value:
|
|
|
|
cur_value[CONF_ID] = uuid.uuid4().hex
|
|
|
|
|
|
|
|
elif cur_value[CONF_ID] == config_key:
|
|
|
|
data[index] = updated_value
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
if not updated:
|
|
|
|
data.append(updated_value)
|