2015-09-13 20:41:16 +00:00
|
|
|
"""
|
|
|
|
homeassistant.components.sensor.rest
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2015-12-12 21:19:00 +00:00
|
|
|
The rest sensor will consume responses sent by an exposed REST API.
|
2015-09-13 20:41:16 +00:00
|
|
|
|
|
|
|
For more details about this platform, please refer to the documentation at
|
2015-11-09 12:12:18 +00:00
|
|
|
https://home-assistant.io/components/sensor.rest/
|
2015-09-13 20:41:16 +00:00
|
|
|
"""
|
2015-11-29 21:49:05 +00:00
|
|
|
from datetime import timedelta
|
2015-09-13 20:41:16 +00:00
|
|
|
import logging
|
2015-09-22 23:15:16 +00:00
|
|
|
import requests
|
2015-09-13 20:41:16 +00:00
|
|
|
|
2015-12-19 09:06:54 +00:00
|
|
|
from homeassistant.const import (CONF_VALUE_TEMPLATE, STATE_UNKNOWN)
|
2015-12-11 22:19:49 +00:00
|
|
|
from homeassistant.util import template, Throttle
|
2015-09-13 20:41:16 +00:00
|
|
|
from homeassistant.helpers.entity import Entity
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2015-09-22 23:15:16 +00:00
|
|
|
DEFAULT_NAME = 'REST Sensor'
|
|
|
|
DEFAULT_METHOD = 'GET'
|
2015-09-13 20:41:16 +00:00
|
|
|
|
|
|
|
# Return cached results if last scan was less then this time ago
|
|
|
|
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=60)
|
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=unused-variable
|
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
|
|
""" Get the REST sensor. """
|
|
|
|
|
2015-09-22 23:15:16 +00:00
|
|
|
use_get = False
|
|
|
|
use_post = False
|
|
|
|
|
2015-09-13 20:41:16 +00:00
|
|
|
resource = config.get('resource', None)
|
2015-09-22 23:15:16 +00:00
|
|
|
method = config.get('method', DEFAULT_METHOD)
|
|
|
|
payload = config.get('payload', None)
|
2015-10-01 06:17:08 +00:00
|
|
|
verify_ssl = config.get('verify_ssl', True)
|
2015-09-22 23:15:16 +00:00
|
|
|
|
|
|
|
if method == 'GET':
|
|
|
|
use_get = True
|
|
|
|
elif method == 'POST':
|
|
|
|
use_post = True
|
2015-09-13 20:41:16 +00:00
|
|
|
|
|
|
|
try:
|
2015-09-22 23:15:16 +00:00
|
|
|
if use_get:
|
2015-10-01 03:45:48 +00:00
|
|
|
response = requests.get(resource, timeout=10, verify=verify_ssl)
|
2015-09-22 23:15:16 +00:00
|
|
|
elif use_post:
|
2015-10-01 03:45:48 +00:00
|
|
|
response = requests.post(resource, data=payload, timeout=10,
|
|
|
|
verify=verify_ssl)
|
2015-09-14 08:06:40 +00:00
|
|
|
if not response.ok:
|
2015-12-19 09:06:54 +00:00
|
|
|
_LOGGER.error("Response status is '%s'", response.status_code)
|
2015-09-22 18:11:28 +00:00
|
|
|
return False
|
2015-09-22 23:15:16 +00:00
|
|
|
except requests.exceptions.MissingSchema:
|
2015-12-19 09:06:54 +00:00
|
|
|
_LOGGER.error("Missing resource or schema in configuration. "
|
|
|
|
"Add http:// or https:// to your URL")
|
2015-09-13 20:41:16 +00:00
|
|
|
return False
|
2015-09-22 23:15:16 +00:00
|
|
|
except requests.exceptions.ConnectionError:
|
2015-12-19 13:14:09 +00:00
|
|
|
_LOGGER.error("No route to resource/endpoint: %s", resource)
|
2015-09-14 08:06:40 +00:00
|
|
|
return False
|
|
|
|
|
2015-09-22 23:15:16 +00:00
|
|
|
if use_get:
|
2015-10-01 03:45:48 +00:00
|
|
|
rest = RestDataGet(resource, verify_ssl)
|
2015-09-22 23:15:16 +00:00
|
|
|
elif use_post:
|
2015-10-01 03:45:48 +00:00
|
|
|
rest = RestDataPost(resource, payload, verify_ssl)
|
2015-09-13 20:41:16 +00:00
|
|
|
|
2015-12-11 22:19:49 +00:00
|
|
|
add_devices([RestSensor(hass,
|
|
|
|
rest,
|
2015-09-13 20:41:16 +00:00
|
|
|
config.get('name', DEFAULT_NAME),
|
2015-09-22 23:15:16 +00:00
|
|
|
config.get('unit_of_measurement'),
|
2015-12-11 22:19:49 +00:00
|
|
|
config.get(CONF_VALUE_TEMPLATE))])
|
2015-09-13 20:41:16 +00:00
|
|
|
|
|
|
|
|
2015-09-22 23:15:16 +00:00
|
|
|
# pylint: disable=too-many-arguments
|
2015-09-13 20:41:16 +00:00
|
|
|
class RestSensor(Entity):
|
|
|
|
""" Implements a REST sensor. """
|
|
|
|
|
2015-12-11 22:19:49 +00:00
|
|
|
def __init__(self, hass, rest, name, unit_of_measurement, value_template):
|
|
|
|
self._hass = hass
|
2015-09-13 20:41:16 +00:00
|
|
|
self.rest = rest
|
|
|
|
self._name = name
|
2015-12-19 09:06:54 +00:00
|
|
|
self._state = STATE_UNKNOWN
|
2015-09-13 20:41:16 +00:00
|
|
|
self._unit_of_measurement = unit_of_measurement
|
2015-12-11 22:19:49 +00:00
|
|
|
self._value_template = value_template
|
2015-09-13 20:41:16 +00:00
|
|
|
self.update()
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
""" The name of the sensor. """
|
|
|
|
return self._name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def unit_of_measurement(self):
|
|
|
|
""" Unit the value is expressed in. """
|
|
|
|
return self._unit_of_measurement
|
|
|
|
|
|
|
|
@property
|
|
|
|
def state(self):
|
|
|
|
""" Returns the state of the device. """
|
|
|
|
return self._state
|
|
|
|
|
|
|
|
def update(self):
|
|
|
|
""" Gets the latest data from REST API and updates the state. """
|
|
|
|
self.rest.update()
|
|
|
|
value = self.rest.data
|
|
|
|
|
2015-12-25 21:34:30 +00:00
|
|
|
if value is None:
|
|
|
|
value = STATE_UNKNOWN
|
|
|
|
elif self._value_template is not None:
|
|
|
|
value = template.render_with_possible_json_value(
|
|
|
|
self._hass, self._value_template, value, STATE_UNKNOWN)
|
|
|
|
|
|
|
|
self._state = value
|
2015-09-13 20:41:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=too-few-public-methods
|
2015-09-22 23:15:16 +00:00
|
|
|
class RestDataGet(object):
|
|
|
|
""" Class for handling the data retrieval with GET method. """
|
2015-09-13 20:41:16 +00:00
|
|
|
|
2015-10-01 03:45:48 +00:00
|
|
|
def __init__(self, resource, verify_ssl):
|
2015-09-22 23:15:16 +00:00
|
|
|
self._resource = resource
|
2015-10-01 03:45:48 +00:00
|
|
|
self._verify_ssl = verify_ssl
|
2015-12-25 21:34:30 +00:00
|
|
|
self.data = None
|
2015-09-22 23:15:16 +00:00
|
|
|
|
|
|
|
@Throttle(MIN_TIME_BETWEEN_UPDATES)
|
|
|
|
def update(self):
|
|
|
|
""" Gets the latest data from REST service with GET method. """
|
|
|
|
try:
|
2015-10-01 03:45:48 +00:00
|
|
|
response = requests.get(self._resource, timeout=10,
|
|
|
|
verify=self._verify_ssl)
|
2015-12-11 22:19:49 +00:00
|
|
|
self.data = response.text
|
2015-09-22 23:15:16 +00:00
|
|
|
except requests.exceptions.ConnectionError:
|
2015-12-19 09:06:54 +00:00
|
|
|
_LOGGER.error("No route to resource/endpoint: %s", self._resource)
|
2015-12-25 21:34:30 +00:00
|
|
|
self.data = None
|
2015-09-22 23:15:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=too-few-public-methods
|
|
|
|
class RestDataPost(object):
|
|
|
|
""" Class for handling the data retrieval with POST method. """
|
|
|
|
|
2015-10-01 03:45:48 +00:00
|
|
|
def __init__(self, resource, payload, verify_ssl):
|
2015-09-22 23:15:16 +00:00
|
|
|
self._resource = resource
|
|
|
|
self._payload = payload
|
2015-10-01 03:45:48 +00:00
|
|
|
self._verify_ssl = verify_ssl
|
2015-12-25 21:34:30 +00:00
|
|
|
self.data = None
|
2015-09-13 20:41:16 +00:00
|
|
|
|
|
|
|
@Throttle(MIN_TIME_BETWEEN_UPDATES)
|
|
|
|
def update(self):
|
2015-09-22 23:15:16 +00:00
|
|
|
""" Gets the latest data from REST service with POST method. """
|
2015-09-13 20:41:16 +00:00
|
|
|
try:
|
2015-09-22 23:15:16 +00:00
|
|
|
response = requests.post(self._resource, data=self._payload,
|
2015-10-01 03:45:48 +00:00
|
|
|
timeout=10, verify=self._verify_ssl)
|
2015-12-11 22:19:49 +00:00
|
|
|
self.data = response.text
|
2015-09-22 23:15:16 +00:00
|
|
|
except requests.exceptions.ConnectionError:
|
2015-12-19 09:06:54 +00:00
|
|
|
_LOGGER.error("No route to resource/endpoint: %s", self._resource)
|
2015-12-25 21:34:30 +00:00
|
|
|
self.data = None
|