73 lines
1.7 KiB
Python
73 lines
1.7 KiB
Python
"""
|
|
Support for links to external web pages.
|
|
|
|
For more details about this component, please refer to the documentation at
|
|
https://home-assistant.io/components/weblink/
|
|
"""
|
|
import logging
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.const import (CONF_NAME, CONF_ICON, CONF_URL)
|
|
from homeassistant.helpers.entity import Entity
|
|
from homeassistant.util import slugify
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
CONF_ENTITIES = 'entities'
|
|
|
|
DOMAIN = 'weblink'
|
|
|
|
ENTITIES_SCHEMA = vol.Schema({
|
|
# pylint: disable=no-value-for-parameter
|
|
vol.Required(CONF_URL): vol.Url(),
|
|
vol.Required(CONF_NAME): cv.string,
|
|
vol.Optional(CONF_ICON): cv.icon,
|
|
})
|
|
|
|
CONFIG_SCHEMA = vol.Schema({
|
|
DOMAIN: vol.Schema({
|
|
vol.Required(CONF_ENTITIES): [ENTITIES_SCHEMA],
|
|
}),
|
|
}, extra=vol.ALLOW_EXTRA)
|
|
|
|
|
|
def setup(hass, config):
|
|
"""Setup weblink component."""
|
|
links = config.get(DOMAIN)
|
|
|
|
for link in links.get(CONF_ENTITIES):
|
|
Link(hass, link.get(CONF_NAME), link.get(CONF_URL),
|
|
link.get(CONF_ICON))
|
|
|
|
return True
|
|
|
|
|
|
class Link(Entity):
|
|
"""Representation of a link."""
|
|
|
|
def __init__(self, hass, name, url, icon):
|
|
"""Initialize the link."""
|
|
self.hass = hass
|
|
self._name = name
|
|
self._url = url
|
|
self._icon = icon
|
|
self.entity_id = DOMAIN + '.%s' % slugify(name)
|
|
self.update_ha_state()
|
|
|
|
@property
|
|
def icon(self):
|
|
"""Return the icon to use in the frontend, if any."""
|
|
return self._icon
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the URL."""
|
|
return self._name
|
|
|
|
@property
|
|
def state(self):
|
|
"""Return the URL."""
|
|
return self._url
|