1
mirror of https://github.com/home-assistant/core synced 2024-09-12 15:16:21 +02:00
ha-core/homeassistant/components/notify/gntp.py

85 lines
2.7 KiB
Python
Raw Normal View History

2016-03-26 02:39:08 +01:00
"""
GNTP (aka Growl) notification service.
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/notify.gntp/
"""
import logging
import os
2016-09-07 00:16:21 +02:00
import voluptuous as vol
2016-03-26 02:39:08 +01:00
from homeassistant.components.notify import (
2016-09-07 00:16:21 +02:00
ATTR_TITLE, ATTR_TITLE_DEFAULT, PLATFORM_SCHEMA, BaseNotificationService)
from homeassistant.const import CONF_PASSWORD, CONF_PORT
import homeassistant.helpers.config_validation as cv
2016-03-26 02:39:08 +01:00
REQUIREMENTS = ['gntp==1.0.3']
_LOGGER = logging.getLogger(__name__)
_GNTP_LOGGER = logging.getLogger('gntp')
_GNTP_LOGGER.setLevel(logging.ERROR)
2016-09-07 00:16:21 +02:00
CONF_APP_NAME = 'app_name'
CONF_APP_ICON = 'app_icon'
CONF_HOSTNAME = 'hostname'
DEFAULT_APP_NAME = 'HomeAssistant'
DEFAULT_HOST = 'localhost'
DEFAULT_PORT = 23053
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Optional(CONF_APP_NAME, default=DEFAULT_APP_NAME): cv.string,
vol.Optional(CONF_APP_ICON): vol.Url,
vol.Optional(CONF_HOSTNAME, default=DEFAULT_HOST): cv.string,
vol.Optional(CONF_PASSWORD): cv.string,
vol.Optional(CONF_PORT, default=DEFAULT_PORT): cv.port,
})
def get_service(hass, config, discovery_info=None):
2016-03-26 02:39:08 +01:00
"""Get the GNTP notification service."""
2016-09-07 00:16:21 +02:00
if config.get(CONF_APP_ICON) is None:
2016-03-26 02:39:08 +01:00
icon_file = os.path.join(os.path.dirname(__file__), "..", "frontend",
"www_static", "icons", "favicon-192x192.png")
with open(icon_file, 'rb') as file:
app_icon = file.read()
2016-03-26 02:39:08 +01:00
else:
2016-09-07 00:16:21 +02:00
app_icon = config.get(CONF_APP_ICON)
2016-03-26 02:39:08 +01:00
2016-09-07 00:16:21 +02:00
return GNTPNotificationService(config.get(CONF_APP_NAME),
app_icon,
config.get(CONF_HOSTNAME),
config.get(CONF_PASSWORD),
config.get(CONF_PORT))
2016-03-26 02:39:08 +01:00
class GNTPNotificationService(BaseNotificationService):
"""Implement the notification service for GNTP."""
def __init__(self, app_name, app_icon, hostname, password, port):
"""Initialize the service."""
2016-05-18 01:51:32 +02:00
import gntp.notifier
import gntp.errors
self.gntp = gntp.notifier.GrowlNotifier(
2016-03-26 02:39:08 +01:00
applicationName=app_name,
notifications=["Notification"],
applicationIcon=app_icon,
hostname=hostname,
password=password,
port=port
)
2016-05-18 01:51:32 +02:00
try:
self.gntp.register()
except gntp.errors.NetworkError:
_LOGGER.error("Unable to register with the GNTP host")
2016-05-18 01:51:32 +02:00
return
2016-03-26 02:39:08 +01:00
def send_message(self, message="", **kwargs):
"""Send a message to a user."""
self.gntp.notify(noteType="Notification",
title=kwargs.get(ATTR_TITLE, ATTR_TITLE_DEFAULT),
2016-03-26 02:39:08 +01:00
description=message)