core/homeassistant/components/sensor/arest.py

187 lines
6.7 KiB
Python
Raw Normal View History

2015-09-05 11:09:55 +00:00
"""
The arest sensor will consume an exposed aREST API of a device.
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.arest/
2015-09-05 11:09:55 +00:00
"""
import logging
2016-02-19 05:27:50 +00:00
from datetime import timedelta
2015-11-29 21:49:05 +00:00
2015-10-09 06:50:04 +00:00
import requests
2015-09-05 11:09:55 +00:00
2016-02-19 05:27:50 +00:00
from homeassistant.const import (
ATTR_UNIT_OF_MEASUREMENT, CONF_VALUE_TEMPLATE, DEVICE_DEFAULT_NAME)
from homeassistant.exceptions import TemplateError
2015-11-29 21:49:05 +00:00
from homeassistant.helpers.entity import Entity
2016-02-23 20:06:50 +00:00
from homeassistant.helpers import template
from homeassistant.util import Throttle
2015-09-05 11:09:55 +00:00
_LOGGER = logging.getLogger(__name__)
2016-02-23 20:06:50 +00:00
# Return cached results if last scan was less then this time ago.
2015-10-17 22:41:12 +00:00
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=30)
2015-10-09 06:50:04 +00:00
CONF_RESOURCE = 'resource'
CONF_MONITORED_VARIABLES = 'monitored_variables'
2015-09-05 11:09:55 +00:00
def setup_platform(hass, config, add_devices, discovery_info=None):
2016-03-08 15:46:34 +00:00
"""Setup the aREST sensor."""
2015-10-09 06:50:04 +00:00
resource = config.get(CONF_RESOURCE)
var_conf = config.get(CONF_MONITORED_VARIABLES)
2015-10-27 22:51:16 +00:00
pins = config.get('pins', None)
if resource is None:
2015-10-09 06:50:04 +00:00
_LOGGER.error('Not all required config keys present: %s',
2015-10-27 22:51:16 +00:00
CONF_RESOURCE)
2015-10-09 06:50:04 +00:00
return False
2015-09-05 11:09:55 +00:00
try:
2015-10-09 06:50:04 +00:00
response = requests.get(resource, timeout=10).json()
except requests.exceptions.MissingSchema:
2015-09-05 11:26:29 +00:00
_LOGGER.error("Missing resource or schema in configuration. "
2015-09-05 11:09:55 +00:00
"Add http:// to your URL.")
return False
2015-10-09 06:50:04 +00:00
except requests.exceptions.ConnectionError:
2015-10-18 16:05:25 +00:00
_LOGGER.error("No route to device at %s. "
"Please check the IP address in the configuration file.",
resource)
2015-09-05 11:09:55 +00:00
return False
2015-10-09 06:50:04 +00:00
arest = ArestData(resource)
2015-09-05 11:09:55 +00:00
2015-12-15 21:16:52 +00:00
def make_renderer(value_template):
2016-03-08 15:46:34 +00:00
"""Create a renderer based on variable_template value."""
2015-12-15 21:16:52 +00:00
if value_template is None:
return lambda value: value
def _render(value):
try:
return template.render(hass, value_template, {'value': value})
except TemplateError:
_LOGGER.exception('Error parsing value')
return value
return _render
2015-12-15 21:16:52 +00:00
2015-09-05 11:09:55 +00:00
dev = []
2015-10-18 16:05:25 +00:00
2015-10-27 22:51:16 +00:00
if var_conf is not None:
2015-12-15 21:16:52 +00:00
for variable in var_conf:
2015-10-27 22:51:16 +00:00
if variable['name'] not in response['variables']:
_LOGGER.error('Variable: "%s" does not exist',
variable['name'])
continue
2015-12-15 21:16:52 +00:00
renderer = make_renderer(variable.get(CONF_VALUE_TEMPLATE))
2015-10-27 22:51:16 +00:00
dev.append(ArestSensor(arest,
resource,
config.get('name', response['name']),
variable['name'],
variable=variable['name'],
unit_of_measurement=variable.get(
2015-12-15 21:16:52 +00:00
ATTR_UNIT_OF_MEASUREMENT),
renderer=renderer))
2015-10-27 22:51:16 +00:00
if pins is not None:
for pinnum, pin in pins.items():
2015-12-15 21:16:52 +00:00
renderer = make_renderer(pin.get(CONF_VALUE_TEMPLATE))
2015-10-27 22:51:16 +00:00
dev.append(ArestSensor(ArestData(resource, pinnum),
resource,
config.get('name', response['name']),
pin.get('name'),
pin=pinnum,
unit_of_measurement=pin.get(
2015-12-15 21:16:52 +00:00
ATTR_UNIT_OF_MEASUREMENT),
renderer=renderer))
2015-09-05 11:09:55 +00:00
add_devices(dev)
2015-10-18 16:05:25 +00:00
# pylint: disable=too-many-instance-attributes, too-many-arguments
2015-09-05 11:09:55 +00:00
class ArestSensor(Entity):
2016-03-08 15:46:34 +00:00
"""Implementation of an aREST sensor for exposed variables."""
2015-09-05 11:09:55 +00:00
2015-10-18 16:05:25 +00:00
def __init__(self, arest, resource, location, name, variable=None,
2015-12-15 21:16:52 +00:00
pin=None, unit_of_measurement=None, renderer=None):
2016-03-08 15:46:34 +00:00
"""Initialize the sensor."""
2015-10-09 06:50:04 +00:00
self.arest = arest
2015-10-18 16:05:25 +00:00
self._resource = resource
self._name = '{} {}'.format(location.title(), name.title()) \
or DEVICE_DEFAULT_NAME
2015-09-05 11:09:55 +00:00
self._variable = variable
2015-10-18 16:05:25 +00:00
self._pin = pin
2015-09-05 11:09:55 +00:00
self._state = 'n/a'
self._unit_of_measurement = unit_of_measurement
2015-12-15 21:16:52 +00:00
self._renderer = renderer
2015-09-05 11:09:55 +00:00
self.update()
2015-10-18 16:05:25 +00:00
if self._pin is not None:
request = requests.get('{}/mode/{}/i'.format
(self._resource, self._pin), timeout=10)
if request.status_code is not 200:
_LOGGER.error("Can't set mode. Is device offline?")
2015-09-05 11:09:55 +00:00
@property
def name(self):
2016-03-08 15:46:34 +00:00
"""Return the name of the sensor."""
2015-09-05 11:09:55 +00:00
return self._name
@property
def unit_of_measurement(self):
2016-03-08 15:46:34 +00:00
"""Return the unit the value is expressed in."""
2015-09-05 11:09:55 +00:00
return self._unit_of_measurement
@property
def state(self):
2016-03-08 15:46:34 +00:00
"""Return the state of the sensor."""
2015-10-09 06:50:04 +00:00
values = self.arest.data
if 'error' in values:
2015-10-09 06:50:04 +00:00
return values['error']
2015-12-15 21:16:52 +00:00
value = self._renderer(values.get('value',
values.get(self._variable,
'N/A')))
return value
2015-10-09 06:50:04 +00:00
def update(self):
2016-03-08 15:46:34 +00:00
"""Get the latest data from aREST API."""
2015-10-09 06:50:04 +00:00
self.arest.update()
2015-09-05 11:09:55 +00:00
# pylint: disable=too-few-public-methods
class ArestData(object):
2016-03-08 15:46:34 +00:00
"""The Class for handling the data retrieval for variables."""
2015-09-05 11:09:55 +00:00
2015-10-18 16:05:25 +00:00
def __init__(self, resource, pin=None):
2016-03-08 15:46:34 +00:00
"""Initialize the data object."""
2015-10-18 16:05:25 +00:00
self._resource = resource
self._pin = pin
2015-10-09 06:50:04 +00:00
self.data = {}
2015-09-05 11:09:55 +00:00
@Throttle(MIN_TIME_BETWEEN_UPDATES)
2015-09-05 11:09:55 +00:00
def update(self):
2016-03-08 15:46:34 +00:00
"""Get the latest data from aREST device."""
2015-09-05 11:09:55 +00:00
try:
2015-10-18 16:05:25 +00:00
if self._pin is None:
response = requests.get(self._resource, timeout=10)
self.data = response.json()['variables']
else:
try:
if str(self._pin[0]) == 'A':
response = requests.get('{}/analog/{}'.format(
self._resource, self._pin[1:]), timeout=10)
self.data = {'value': response.json()['return_value']}
else:
_LOGGER.error("Wrong pin naming. "
"Please check your configuration file.")
except TypeError:
response = requests.get('{}/digital/{}'.format(
self._resource, self._pin), timeout=10)
self.data = {'value': response.json()['return_value']}
2015-10-09 06:50:04 +00:00
except requests.exceptions.ConnectionError:
2015-10-18 16:05:25 +00:00
_LOGGER.error("No route to device %s. Is device offline?",
self._resource)
2015-10-09 06:50:04 +00:00
self.data = {'error': 'error fetching'}