core/homeassistant/components/notify/pushetta.py

63 lines
2.0 KiB
Python
Raw Normal View History

2015-11-10 13:12:03 +00:00
"""
Pushetta platform for notify component.
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/notify.pushetta/
"""
import logging
import voluptuous as vol
2015-11-10 13:12:03 +00:00
from homeassistant.components.notify import (
ATTR_TITLE, ATTR_TITLE_DEFAULT, PLATFORM_SCHEMA, BaseNotificationService)
2015-11-10 13:12:03 +00:00
from homeassistant.const import CONF_API_KEY
import homeassistant.helpers.config_validation as cv
2015-11-10 13:12:03 +00:00
_LOGGER = logging.getLogger(__name__)
REQUIREMENTS = ['pushetta==1.0.15']
CONF_CHANNEL_NAME = 'channel_name'
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_API_KEY): cv.string,
vol.Required(CONF_CHANNEL_NAME): cv.string,
})
2015-11-10 13:12:03 +00:00
def get_service(hass, config):
2016-03-08 10:46:32 +00:00
"""Get the Pushetta notification service."""
2015-11-10 13:12:03 +00:00
from pushetta import Pushetta, exceptions
try:
pushetta = Pushetta(config[CONF_API_KEY])
pushetta.pushMessage(config[CONF_CHANNEL_NAME],
"Home Assistant started")
2015-11-10 13:12:03 +00:00
except exceptions.TokenValidationError:
_LOGGER.error("Please check your access token")
return None
except exceptions.ChannelNotFoundError:
_LOGGER.error("Channel '%s' not found", config[CONF_CHANNEL_NAME])
2015-11-10 13:12:03 +00:00
return None
return PushettaNotificationService(config[CONF_API_KEY],
config[CONF_CHANNEL_NAME])
2015-11-10 13:12:03 +00:00
# pylint: disable=too-few-public-methods
class PushettaNotificationService(BaseNotificationService):
2016-03-08 10:46:32 +00:00
"""Implement the notification service for Pushetta."""
2015-11-10 13:12:03 +00:00
def __init__(self, api_key, channel_name):
2016-03-08 10:46:32 +00:00
"""Initialize the service."""
2015-11-10 13:12:03 +00:00
from pushetta import Pushetta
self._api_key = api_key
self._channel_name = channel_name
self.pushetta = Pushetta(self._api_key)
def send_message(self, message="", **kwargs):
2016-03-08 10:46:32 +00:00
"""Send a message to a user."""
title = kwargs.get(ATTR_TITLE, ATTR_TITLE_DEFAULT)
2015-11-10 13:12:03 +00:00
self.pushetta.pushMessage(self._channel_name,
"{} {}".format(title, message))