2016-04-19 15:53:58 +00:00
|
|
|
"""
|
|
|
|
LG WebOS TV notification service.
|
|
|
|
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
|
|
https://home-assistant.io/components/notify.webostv/
|
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
|
2016-09-02 13:59:38 +00:00
|
|
|
import voluptuous as vol
|
2016-04-19 15:53:58 +00:00
|
|
|
|
2016-09-02 13:59:38 +00:00
|
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
from homeassistant.components.notify import (BaseNotificationService,
|
|
|
|
PLATFORM_SCHEMA)
|
|
|
|
from homeassistant.const import CONF_HOST
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
2016-04-22 00:35:56 +00:00
|
|
|
REQUIREMENTS = ['https://github.com/TheRealLink/pylgtv'
|
|
|
|
'/archive/v0.1.2.zip'
|
|
|
|
'#pylgtv==0.1.2']
|
|
|
|
|
2016-09-02 13:59:38 +00:00
|
|
|
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
|
|
vol.Required(CONF_HOST): cv.string,
|
|
|
|
})
|
2016-04-19 15:53:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_service(hass, config):
|
|
|
|
"""Return the notify service."""
|
|
|
|
from pylgtv import WebOsClient
|
|
|
|
from pylgtv import PyLGTVPairException
|
|
|
|
|
2016-09-02 13:59:38 +00:00
|
|
|
client = WebOsClient(config.get(CONF_HOST))
|
2016-04-19 15:53:58 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
client.register()
|
|
|
|
except PyLGTVPairException:
|
|
|
|
_LOGGER.error('Pairing failed.')
|
|
|
|
return None
|
2016-04-22 00:35:56 +00:00
|
|
|
except OSError:
|
2016-04-19 15:53:58 +00:00
|
|
|
_LOGGER.error('Host unreachable.')
|
|
|
|
return None
|
|
|
|
|
|
|
|
return LgWebOSNotificationService(client)
|
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=too-few-public-methods
|
|
|
|
class LgWebOSNotificationService(BaseNotificationService):
|
|
|
|
"""Implement the notification service for LG WebOS TV."""
|
|
|
|
|
|
|
|
def __init__(self, client):
|
|
|
|
"""Initialize the service."""
|
|
|
|
self._client = client
|
|
|
|
|
|
|
|
def send_message(self, message="", **kwargs):
|
|
|
|
"""Send a message to the tv."""
|
|
|
|
from pylgtv import PyLGTVPairException
|
|
|
|
|
|
|
|
try:
|
|
|
|
self._client.send_message(message)
|
|
|
|
except PyLGTVPairException:
|
|
|
|
_LOGGER.error('Pairing failed.')
|
2016-04-22 00:35:56 +00:00
|
|
|
except OSError:
|
2016-04-19 15:53:58 +00:00
|
|
|
_LOGGER.error('Host unreachable.')
|