core/homeassistant/components/notify/slack.py

90 lines
2.8 KiB
Python
Raw Normal View History

2015-07-31 20:45:41 +00:00
"""
Slack platform for notify component.
2015-10-13 20:45:36 +00:00
For more details about this platform, please refer to the documentation at
2015-11-09 17:33:11 +00:00
https://home-assistant.io/components/notify.slack/
2015-07-31 20:45:41 +00:00
"""
import logging
import voluptuous as vol
from homeassistant.components.notify import (
ATTR_TARGET, PLATFORM_SCHEMA, BaseNotificationService)
from homeassistant.const import (
CONF_API_KEY, CONF_USERNAME, CONF_ICON)
import homeassistant.helpers.config_validation as cv
2015-07-31 20:45:41 +00:00
2016-10-24 20:00:02 +00:00
REQUIREMENTS = ['slacker==0.9.29']
2015-07-31 20:45:41 +00:00
_LOGGER = logging.getLogger(__name__)
CONF_CHANNEL = 'default_channel'
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_API_KEY): cv.string,
vol.Required(CONF_CHANNEL): cv.string,
vol.Optional(CONF_USERNAME): cv.string,
vol.Optional(CONF_ICON): cv.string,
})
2015-07-31 20:45:41 +00:00
# pylint: disable=unused-variable
def get_service(hass, config):
2016-03-08 10:46:32 +00:00
"""Get the Slack notification service."""
2015-11-09 06:15:34 +00:00
import slacker
2015-07-31 20:45:41 +00:00
try:
return SlackNotificationService(
config[CONF_CHANNEL],
config[CONF_API_KEY],
config.get(CONF_USERNAME, None),
config.get(CONF_ICON, None))
2015-07-31 20:45:41 +00:00
2015-11-09 06:15:34 +00:00
except slacker.Error:
2016-07-02 18:15:39 +00:00
_LOGGER.exception("Slack authentication failed")
2015-11-09 06:15:34 +00:00
return None
2015-07-31 20:45:41 +00:00
# pylint: disable=too-few-public-methods
class SlackNotificationService(BaseNotificationService):
2016-03-08 10:46:32 +00:00
"""Implement the notification service for Slack."""
2015-07-31 20:45:41 +00:00
def __init__(self, default_channel, api_token, username, icon):
2016-03-08 10:46:32 +00:00
"""Initialize the service."""
2015-07-31 20:45:41 +00:00
from slacker import Slacker
self._default_channel = default_channel
self._api_token = api_token
self._username = username
self._icon = icon
if self._username or self._icon:
self._as_user = False
else:
self._as_user = True
2015-07-31 20:45:41 +00:00
self.slack = Slacker(self._api_token)
self.slack.auth.test()
def send_message(self, message="", **kwargs):
2016-03-08 10:46:32 +00:00
"""Send a message to a user."""
2015-11-09 06:15:34 +00:00
import slacker
2015-07-31 20:45:41 +00:00
2016-10-12 04:16:11 +00:00
if kwargs.get(ATTR_TARGET) is None:
targets = [self._default_channel]
else:
targets = kwargs.get(ATTR_TARGET)
data = kwargs.get('data')
attachments = data.get('attachments') if data else None
for target in targets:
try:
self.slack.chat.post_message(target, message,
as_user=self._as_user,
username=self._username,
icon_emoji=self._icon,
attachments=attachments,
link_names=True)
except slacker.Error as err:
_LOGGER.error("Could not send slack notification. Error: %s",
err)