41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
"""Support for Ecobee Send Message service."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.notify import ATTR_TARGET, BaseNotificationService
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
|
|
|
from .const import DOMAIN
|
|
|
|
|
|
def get_service(
|
|
hass: HomeAssistant,
|
|
config: ConfigType,
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
) -> EcobeeNotificationService | None:
|
|
"""Get the Ecobee notification service."""
|
|
if discovery_info is None:
|
|
return None
|
|
|
|
data = hass.data[DOMAIN]
|
|
return EcobeeNotificationService(data.ecobee)
|
|
|
|
|
|
class EcobeeNotificationService(BaseNotificationService):
|
|
"""Implement the notification service for the Ecobee thermostat."""
|
|
|
|
def __init__(self, ecobee):
|
|
"""Initialize the service."""
|
|
self.ecobee = ecobee
|
|
|
|
def send_message(self, message="", **kwargs):
|
|
"""Send a message."""
|
|
targets = kwargs.get(ATTR_TARGET)
|
|
|
|
if not targets:
|
|
raise ValueError("Missing required argument: target")
|
|
|
|
for target in targets:
|
|
thermostat_index = int(target)
|
|
self.ecobee.send_message(thermostat_index, message)
|