core/homeassistant/components/binary_sensor/rest.py

87 lines
2.6 KiB
Python
Raw Normal View History

2015-12-16 23:47:12 +00:00
"""
2016-03-07 19:21:08 +00:00
Support for RESTful binary sensors.
2015-12-16 23:47:12 +00:00
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/binary_sensor.rest/
"""
import logging
2016-03-25 17:34:58 +00:00
from homeassistant.components.binary_sensor import (BinarySensorDevice,
SENSOR_CLASSES)
2016-02-19 05:27:50 +00:00
from homeassistant.components.sensor.rest import RestData
2015-12-16 23:47:12 +00:00
from homeassistant.const import CONF_VALUE_TEMPLATE
2016-02-23 20:06:50 +00:00
from homeassistant.helpers import template
2015-12-16 23:47:12 +00:00
_LOGGER = logging.getLogger(__name__)
DEFAULT_NAME = 'REST Binary Sensor'
DEFAULT_METHOD = 'GET'
2015-12-22 21:33:20 +00:00
# pylint: disable=unused-variable
2015-12-16 23:47:12 +00:00
def setup_platform(hass, config, add_devices, discovery_info=None):
2016-03-25 17:34:58 +00:00
"""Setup the REST binary sensor."""
2015-12-16 23:47:12 +00:00
resource = config.get('resource', None)
method = config.get('method', DEFAULT_METHOD)
payload = config.get('payload', None)
verify_ssl = config.get('verify_ssl', True)
2016-03-25 17:34:58 +00:00
sensor_class = config.get('sensor_class')
if sensor_class not in SENSOR_CLASSES:
_LOGGER.warning('Unknown sensor class: %s', sensor_class)
sensor_class = None
2016-01-02 21:29:33 +00:00
rest = RestData(method, resource, payload, verify_ssl)
rest.update()
2015-12-16 23:47:12 +00:00
2016-01-02 21:29:33 +00:00
if rest.data is None:
_LOGGER.error('Unable to fetch Rest data')
return False
2015-12-16 23:47:12 +00:00
2016-01-02 21:29:33 +00:00
add_devices([RestBinarySensor(
2016-03-25 17:34:58 +00:00
hass,
rest,
config.get('name', DEFAULT_NAME),
sensor_class,
2016-01-02 21:29:33 +00:00
config.get(CONF_VALUE_TEMPLATE))])
2015-12-16 23:47:12 +00:00
# pylint: disable=too-many-arguments
class RestBinarySensor(BinarySensorDevice):
2016-03-25 17:34:58 +00:00
"""Representation of a REST binary sensor."""
2015-12-16 23:47:12 +00:00
2016-03-25 17:34:58 +00:00
def __init__(self, hass, rest, name, sensor_class, value_template):
"""Initialize a REST binary sensor."""
2015-12-16 23:47:12 +00:00
self._hass = hass
self.rest = rest
self._name = name
2016-03-25 17:34:58 +00:00
self._sensor_class = sensor_class
2015-12-16 23:47:12 +00:00
self._state = False
self._value_template = value_template
self.update()
@property
def name(self):
2016-03-07 19:21:08 +00:00
"""Return the name of the binary sensor."""
2015-12-16 23:47:12 +00:00
return self._name
2016-03-25 17:34:58 +00:00
@property
def sensor_class(self):
"""Return the class of this sensor."""
return self._sensor_class
2015-12-16 23:47:12 +00:00
@property
def is_on(self):
"""Return true if the binary sensor is on."""
2016-01-02 21:29:33 +00:00
if self.rest.data is None:
2015-12-16 23:47:12 +00:00
return False
2016-01-02 21:29:33 +00:00
if self._value_template is not None:
self.rest.data = template.render_with_possible_json_value(
self._hass, self._value_template, self.rest.data, False)
return bool(int(self.rest.data))
2015-12-16 23:47:12 +00:00
def update(self):
"""Get the latest data from REST API and updates the state."""
2016-01-02 21:29:33 +00:00
self.rest.update()