* Copy google_sheets to google_assistant_sdk This is to improve diff of the next commit with the actual implementation. Commands used: cp -r homeassistant/components/google_sheets/ homeassistant/components/google_assistant_sdk/ cp -r tests/components/google_sheets/ tests/components/google_assistant_sdk/ find homeassistant/components/google_assistant_sdk/ tests/components/google_assistant_sdk/ -type f | xargs sed -i \ -e 's@google_sheets@google_assistant_sdk@g' \ -e 's@Google Sheets@Google Assistant SDK@g' \ -e 's@tkdrob@tronikos@g' * Google Assistant SDK integration Allows sending commands and broadcast messages to Google Assistant. * Remove unnecessary async_entry_has_scopes check * Bump gassist-text to fix protobuf dependency
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
"""Support for Google Assistant SDK broadcast notifications."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.notify import ATTR_TARGET, BaseNotificationService
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
|
|
|
from .helpers import async_send_text_commands
|
|
|
|
|
|
async def async_get_service(
|
|
hass: HomeAssistant,
|
|
config: ConfigType,
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
) -> BaseNotificationService:
|
|
"""Get the broadcast notification service."""
|
|
return BroadcastNotificationService(hass)
|
|
|
|
|
|
class BroadcastNotificationService(BaseNotificationService):
|
|
"""Implement broadcast notification service."""
|
|
|
|
def __init__(self, hass: HomeAssistant) -> None:
|
|
"""Initialize the service."""
|
|
self.hass = hass
|
|
|
|
async def async_send_message(self, message: str = "", **kwargs: Any) -> None:
|
|
"""Send a message."""
|
|
if not message:
|
|
return
|
|
|
|
commands = []
|
|
targets = kwargs.get(ATTR_TARGET)
|
|
if not targets:
|
|
commands.append(f"broadcast {message}")
|
|
else:
|
|
for target in targets:
|
|
commands.append(f"broadcast to {target} {message}")
|
|
await async_send_text_commands(commands, self.hass)
|