31 lines
992 B
Python
31 lines
992 B
Python
"""Describe logbook events."""
|
|
from homeassistant.core import callback
|
|
|
|
from .const import DOMAIN, EVENT_COMMAND_RECEIVED, SOURCE_CLOUD
|
|
|
|
COMMON_COMMAND_PREFIX = "action.devices.commands."
|
|
|
|
|
|
@callback
|
|
def async_describe_events(hass, async_describe_event):
|
|
"""Describe logbook events."""
|
|
|
|
@callback
|
|
def async_describe_logbook_event(event):
|
|
"""Describe a logbook event."""
|
|
commands = []
|
|
|
|
for command_payload in event.data["execution"]:
|
|
command = command_payload["command"]
|
|
if command.startswith(COMMON_COMMAND_PREFIX):
|
|
command = command[len(COMMON_COMMAND_PREFIX) :]
|
|
commands.append(command)
|
|
|
|
message = f"sent command {', '.join(commands)}"
|
|
if event.data["source"] != SOURCE_CLOUD:
|
|
message += f" (via {event.data['source']})"
|
|
|
|
return {"name": "Google Assistant", "message": message}
|
|
|
|
async_describe_event(DOMAIN, EVENT_COMMAND_RECEIVED, async_describe_logbook_event)
|