2015-01-04 09:01:49 +00:00
|
|
|
"""
|
|
|
|
Provides functionality to notify people.
|
2015-11-09 17:33:11 +00:00
|
|
|
|
|
|
|
For more details about this component, please refer to the documentation at
|
|
|
|
https://home-assistant.io/components/notify/
|
2015-01-04 09:01:49 +00:00
|
|
|
"""
|
2015-08-19 02:28:40 +00:00
|
|
|
from functools import partial
|
2015-01-04 09:01:49 +00:00
|
|
|
import logging
|
2015-09-27 06:17:04 +00:00
|
|
|
import os
|
2015-01-04 09:01:49 +00:00
|
|
|
|
2015-11-15 10:04:57 +00:00
|
|
|
import homeassistant.bootstrap as bootstrap
|
2015-09-27 06:17:04 +00:00
|
|
|
from homeassistant.config import load_yaml_config_file
|
2015-08-19 02:28:40 +00:00
|
|
|
from homeassistant.helpers import config_per_platform
|
2016-02-23 20:06:50 +00:00
|
|
|
from homeassistant.helpers import template
|
2015-01-04 09:01:49 +00:00
|
|
|
|
2015-08-19 02:49:27 +00:00
|
|
|
from homeassistant.const import CONF_NAME
|
2015-01-04 09:01:49 +00:00
|
|
|
|
|
|
|
DOMAIN = "notify"
|
|
|
|
|
|
|
|
# Title of notification
|
|
|
|
ATTR_TITLE = "title"
|
2015-01-04 22:20:16 +00:00
|
|
|
ATTR_TITLE_DEFAULT = "Home Assistant"
|
2015-01-04 09:01:49 +00:00
|
|
|
|
2015-11-15 17:50:36 +00:00
|
|
|
# Target of the notification (user, device, etc)
|
|
|
|
ATTR_TARGET = 'target'
|
|
|
|
|
2015-01-04 09:01:49 +00:00
|
|
|
# Text to notify user of
|
|
|
|
ATTR_MESSAGE = "message"
|
|
|
|
|
|
|
|
SERVICE_NOTIFY = "notify"
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2015-12-10 07:46:50 +00:00
|
|
|
def send_message(hass, message, title=None):
|
2016-02-23 20:06:50 +00:00
|
|
|
"""Send a notification message."""
|
2015-12-10 07:46:50 +00:00
|
|
|
data = {
|
|
|
|
ATTR_MESSAGE: message
|
|
|
|
}
|
|
|
|
|
|
|
|
if title is not None:
|
|
|
|
data[ATTR_TITLE] = title
|
|
|
|
|
|
|
|
hass.services.call(DOMAIN, SERVICE_NOTIFY, data)
|
2015-01-04 09:01:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
def setup(hass, config):
|
2016-03-08 10:46:32 +00:00
|
|
|
"""Setup the notify services."""
|
2015-08-19 02:28:40 +00:00
|
|
|
success = False
|
2015-01-04 09:01:49 +00:00
|
|
|
|
2015-09-27 06:17:04 +00:00
|
|
|
descriptions = load_yaml_config_file(
|
|
|
|
os.path.join(os.path.dirname(__file__), 'services.yaml'))
|
|
|
|
|
2015-08-19 02:28:40 +00:00
|
|
|
for platform, p_config in config_per_platform(config, DOMAIN, _LOGGER):
|
2015-11-15 10:04:57 +00:00
|
|
|
notify_implementation = bootstrap.prepare_setup_platform(
|
|
|
|
hass, config, DOMAIN, platform)
|
2015-01-04 09:01:49 +00:00
|
|
|
|
2015-08-19 02:28:40 +00:00
|
|
|
if notify_implementation is None:
|
|
|
|
_LOGGER.error("Unknown notification service specified.")
|
|
|
|
continue
|
2015-01-04 09:01:49 +00:00
|
|
|
|
2015-11-09 06:15:34 +00:00
|
|
|
notify_service = notify_implementation.get_service(hass, p_config)
|
2015-01-04 09:01:49 +00:00
|
|
|
|
2015-08-19 02:28:40 +00:00
|
|
|
if notify_service is None:
|
|
|
|
_LOGGER.error("Failed to initialize notification service %s",
|
|
|
|
platform)
|
|
|
|
continue
|
2015-01-04 09:01:49 +00:00
|
|
|
|
2015-08-19 02:28:40 +00:00
|
|
|
def notify_message(notify_service, call):
|
2016-02-23 20:06:50 +00:00
|
|
|
"""Handle sending notification message service calls."""
|
2015-08-19 02:28:40 +00:00
|
|
|
message = call.data.get(ATTR_MESSAGE)
|
2015-01-04 09:01:49 +00:00
|
|
|
|
2015-08-19 02:28:40 +00:00
|
|
|
if message is None:
|
2016-03-18 12:33:52 +00:00
|
|
|
_LOGGER.error(
|
|
|
|
'Received call to %s without attribute %s',
|
|
|
|
call.service, ATTR_MESSAGE)
|
2015-08-19 02:28:40 +00:00
|
|
|
return
|
2015-01-04 09:01:49 +00:00
|
|
|
|
2015-12-10 07:46:50 +00:00
|
|
|
title = template.render(
|
|
|
|
hass, call.data.get(ATTR_TITLE, ATTR_TITLE_DEFAULT))
|
2015-11-15 17:50:36 +00:00
|
|
|
target = call.data.get(ATTR_TARGET)
|
2015-12-10 07:46:50 +00:00
|
|
|
message = template.render(hass, message)
|
2015-01-04 09:01:49 +00:00
|
|
|
|
2015-11-15 17:50:36 +00:00
|
|
|
notify_service.send_message(message, title=title, target=target)
|
2015-01-04 09:01:49 +00:00
|
|
|
|
2015-08-19 02:28:40 +00:00
|
|
|
service_call_handler = partial(notify_message, notify_service)
|
|
|
|
service_notify = p_config.get(CONF_NAME, SERVICE_NOTIFY)
|
2015-09-27 06:17:04 +00:00
|
|
|
hass.services.register(DOMAIN, service_notify, service_call_handler,
|
2016-02-22 11:13:57 +00:00
|
|
|
descriptions.get(SERVICE_NOTIFY))
|
2015-08-19 02:28:40 +00:00
|
|
|
success = True
|
2015-01-04 09:01:49 +00:00
|
|
|
|
2015-08-19 02:28:40 +00:00
|
|
|
return success
|
2015-01-04 09:01:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=too-few-public-methods
|
|
|
|
class BaseNotificationService(object):
|
2016-03-08 10:46:32 +00:00
|
|
|
"""An abstract class for notification services."""
|
2015-01-04 09:01:49 +00:00
|
|
|
|
|
|
|
def send_message(self, message, **kwargs):
|
2016-03-08 10:46:32 +00:00
|
|
|
"""Send a message.
|
|
|
|
|
2015-01-04 09:01:49 +00:00
|
|
|
kwargs can contain ATTR_TITLE to specify a title.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|