2015-08-19 00:25:05 +00:00
|
|
|
"""
|
2016-02-23 05:21:49 +00:00
|
|
|
Support for MQTT sensors.
|
2015-08-19 00:25:05 +00:00
|
|
|
|
2015-10-21 17:36:52 +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.mqtt/
|
2015-08-19 00:25:05 +00:00
|
|
|
"""
|
2017-03-23 21:55:07 +00:00
|
|
|
from datetime import timedelta
|
2019-01-27 17:54:52 +00:00
|
|
|
import json
|
|
|
|
import logging
|
2018-04-08 02:32:09 +00:00
|
|
|
from typing import Optional
|
2016-02-19 05:27:50 +00:00
|
|
|
|
2016-04-07 00:32:35 +00:00
|
|
|
import voluptuous as vol
|
|
|
|
|
2019-01-27 17:54:52 +00:00
|
|
|
from homeassistant.components import mqtt, sensor
|
2018-01-02 02:32:29 +00:00
|
|
|
from homeassistant.components.mqtt import (
|
2019-01-27 17:54:52 +00:00
|
|
|
ATTR_DISCOVERY_HASH, CONF_QOS, CONF_STATE_TOPIC, CONF_UNIQUE_ID,
|
|
|
|
MqttAttributes, MqttAvailability, MqttDiscoveryUpdate,
|
|
|
|
MqttEntityDeviceInfo, subscription)
|
2019-01-03 14:51:18 +00:00
|
|
|
from homeassistant.components.mqtt.discovery import (
|
2019-01-05 13:07:00 +00:00
|
|
|
MQTT_DISCOVERY_NEW, clear_discovery_hash)
|
2018-05-01 19:38:08 +00:00
|
|
|
from homeassistant.components.sensor import DEVICE_CLASSES_SCHEMA
|
2016-08-20 22:40:16 +00:00
|
|
|
from homeassistant.const import (
|
2019-01-27 17:54:52 +00:00
|
|
|
CONF_DEVICE, CONF_DEVICE_CLASS, CONF_FORCE_UPDATE, CONF_ICON, CONF_NAME,
|
|
|
|
CONF_UNIT_OF_MEASUREMENT, CONF_VALUE_TEMPLATE)
|
|
|
|
from homeassistant.core import callback
|
2016-09-09 06:37:30 +00:00
|
|
|
import homeassistant.helpers.config_validation as cv
|
2018-09-27 14:07:56 +00:00
|
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
2019-01-27 17:54:52 +00:00
|
|
|
from homeassistant.helpers.entity import Entity
|
2017-03-23 21:55:07 +00:00
|
|
|
from homeassistant.helpers.event import async_track_point_in_utc_time
|
2019-01-27 17:54:52 +00:00
|
|
|
from homeassistant.helpers.typing import ConfigType, HomeAssistantType
|
2017-03-23 21:55:07 +00:00
|
|
|
from homeassistant.util import dt as dt_util
|
2015-08-19 00:25:05 +00:00
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2017-03-23 21:55:07 +00:00
|
|
|
CONF_EXPIRE_AFTER = 'expire_after'
|
2018-01-08 16:07:39 +00:00
|
|
|
CONF_JSON_ATTRS = 'json_attributes'
|
2017-03-11 18:07:52 +00:00
|
|
|
|
2016-09-09 06:37:30 +00:00
|
|
|
DEFAULT_NAME = 'MQTT Sensor'
|
2017-03-11 18:07:52 +00:00
|
|
|
DEFAULT_FORCE_UPDATE = False
|
2016-04-07 00:32:35 +00:00
|
|
|
DEPENDENCIES = ['mqtt']
|
|
|
|
|
2016-04-07 01:35:46 +00:00
|
|
|
PLATFORM_SCHEMA = mqtt.MQTT_RO_PLATFORM_SCHEMA.extend({
|
2016-04-07 00:32:35 +00:00
|
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
|
|
|
vol.Optional(CONF_UNIT_OF_MEASUREMENT): cv.string,
|
2018-03-23 10:30:44 +00:00
|
|
|
vol.Optional(CONF_ICON): cv.icon,
|
2018-05-01 19:38:08 +00:00
|
|
|
vol.Optional(CONF_DEVICE_CLASS): DEVICE_CLASSES_SCHEMA,
|
2018-01-08 16:07:39 +00:00
|
|
|
vol.Optional(CONF_JSON_ATTRS, default=[]): cv.ensure_list_csv,
|
2017-03-23 21:55:07 +00:00
|
|
|
vol.Optional(CONF_EXPIRE_AFTER): cv.positive_int,
|
2017-03-11 18:07:52 +00:00
|
|
|
vol.Optional(CONF_FORCE_UPDATE, default=DEFAULT_FORCE_UPDATE): cv.boolean,
|
2018-11-30 15:53:56 +00:00
|
|
|
# Integrations should never expose unique_id through configuration.
|
|
|
|
# This is an exception because MQTT is a message transport, not a protocol.
|
2018-04-08 02:32:09 +00:00
|
|
|
vol.Optional(CONF_UNIQUE_ID): cv.string,
|
2018-10-08 10:53:30 +00:00
|
|
|
vol.Optional(CONF_DEVICE): mqtt.MQTT_ENTITY_DEVICE_INFO_SCHEMA,
|
2018-12-12 15:26:44 +00:00
|
|
|
}).extend(mqtt.MQTT_AVAILABILITY_SCHEMA.schema).extend(
|
|
|
|
mqtt.MQTT_JSON_ATTRS_SCHEMA.schema)
|
2015-08-19 00:25:05 +00:00
|
|
|
|
2015-08-20 22:05:51 +00:00
|
|
|
|
2018-04-28 23:26:20 +00:00
|
|
|
async def async_setup_platform(hass: HomeAssistantType, config: ConfigType,
|
2018-08-24 14:37:30 +00:00
|
|
|
async_add_entities, discovery_info=None):
|
2018-09-27 14:07:56 +00:00
|
|
|
"""Set up MQTT sensors through configuration.yaml."""
|
2018-11-27 10:23:47 +00:00
|
|
|
await _async_setup_entity(config, async_add_entities)
|
2018-09-27 14:07:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
|
|
"""Set up MQTT sensors dynamically through MQTT discovery."""
|
2018-09-28 14:57:17 +00:00
|
|
|
async def async_discover_sensor(discovery_payload):
|
2018-09-27 14:07:56 +00:00
|
|
|
"""Discover and add a discovered MQTT sensor."""
|
2019-01-03 14:51:18 +00:00
|
|
|
try:
|
2019-01-29 17:29:02 +00:00
|
|
|
discovery_hash = discovery_payload.pop(ATTR_DISCOVERY_HASH)
|
2019-01-03 14:51:18 +00:00
|
|
|
config = PLATFORM_SCHEMA(discovery_payload)
|
2019-01-26 18:48:18 +00:00
|
|
|
await _async_setup_entity(config, async_add_entities, config_entry,
|
2019-01-03 14:51:18 +00:00
|
|
|
discovery_hash)
|
2019-01-05 13:01:58 +00:00
|
|
|
except Exception:
|
2019-01-03 14:51:18 +00:00
|
|
|
if discovery_hash:
|
2019-01-05 13:07:00 +00:00
|
|
|
clear_discovery_hash(hass, discovery_hash)
|
2019-01-03 14:51:18 +00:00
|
|
|
raise
|
2018-09-27 14:07:56 +00:00
|
|
|
|
|
|
|
async_dispatcher_connect(hass,
|
|
|
|
MQTT_DISCOVERY_NEW.format(sensor.DOMAIN, 'mqtt'),
|
|
|
|
async_discover_sensor)
|
|
|
|
|
|
|
|
|
2018-11-27 10:23:47 +00:00
|
|
|
async def _async_setup_entity(config: ConfigType, async_add_entities,
|
2019-01-26 18:48:18 +00:00
|
|
|
config_entry=None, discovery_hash=None):
|
2018-09-28 14:57:17 +00:00
|
|
|
"""Set up MQTT sensor."""
|
2019-01-26 18:48:18 +00:00
|
|
|
async_add_entities([MqttSensor(config, config_entry, discovery_hash)])
|
2015-08-19 00:25:05 +00:00
|
|
|
|
|
|
|
|
2018-12-12 15:26:44 +00:00
|
|
|
class MqttSensor(MqttAttributes, MqttAvailability, MqttDiscoveryUpdate,
|
|
|
|
MqttEntityDeviceInfo, Entity):
|
2016-03-08 15:46:34 +00:00
|
|
|
"""Representation of a sensor that can be updated using MQTT."""
|
|
|
|
|
2019-01-26 18:48:18 +00:00
|
|
|
def __init__(self, config, config_entry, discovery_hash):
|
2016-03-08 15:46:34 +00:00
|
|
|
"""Initialize the sensor."""
|
2018-11-30 15:53:56 +00:00
|
|
|
self._config = config
|
|
|
|
self._unique_id = config.get(CONF_UNIQUE_ID)
|
2019-01-24 07:20:20 +00:00
|
|
|
self._state = None
|
2018-11-27 10:23:47 +00:00
|
|
|
self._sub_state = None
|
2017-03-23 21:55:07 +00:00
|
|
|
self._expiration_trigger = None
|
2018-01-08 16:07:39 +00:00
|
|
|
self._attributes = None
|
2018-11-27 10:23:47 +00:00
|
|
|
|
|
|
|
device_config = config.get(CONF_DEVICE)
|
|
|
|
|
2018-12-16 14:44:25 +00:00
|
|
|
if config.get(CONF_JSON_ATTRS):
|
2018-12-12 15:26:44 +00:00
|
|
|
_LOGGER.warning('configuration variable "json_attributes" is '
|
|
|
|
'deprecated, replace with "json_attributes_topic"')
|
|
|
|
|
|
|
|
MqttAttributes.__init__(self, config)
|
2019-01-15 22:26:37 +00:00
|
|
|
MqttAvailability.__init__(self, config)
|
2018-11-27 10:23:47 +00:00
|
|
|
MqttDiscoveryUpdate.__init__(self, discovery_hash,
|
|
|
|
self.discovery_update)
|
2019-01-26 18:48:18 +00:00
|
|
|
MqttEntityDeviceInfo.__init__(self, device_config, config_entry)
|
2017-02-22 08:43:22 +00:00
|
|
|
|
2018-04-28 23:26:20 +00:00
|
|
|
async def async_added_to_hass(self):
|
2018-01-02 02:32:29 +00:00
|
|
|
"""Subscribe to MQTT events."""
|
2018-11-28 12:16:43 +00:00
|
|
|
await super().async_added_to_hass()
|
2018-11-27 10:23:47 +00:00
|
|
|
await self._subscribe_topics()
|
|
|
|
|
|
|
|
async def discovery_update(self, discovery_payload):
|
|
|
|
"""Handle updated discovery message."""
|
|
|
|
config = PLATFORM_SCHEMA(discovery_payload)
|
2018-11-30 15:53:56 +00:00
|
|
|
self._config = config
|
2018-12-12 15:26:44 +00:00
|
|
|
await self.attributes_discovery_update(config)
|
2018-11-27 10:23:47 +00:00
|
|
|
await self.availability_discovery_update(config)
|
2019-01-26 18:48:18 +00:00
|
|
|
await self.device_info_discovery_update(config)
|
2018-11-27 10:23:47 +00:00
|
|
|
await self._subscribe_topics()
|
2019-03-12 21:46:48 +00:00
|
|
|
self.async_write_ha_state()
|
2018-11-27 10:23:47 +00:00
|
|
|
|
|
|
|
async def _subscribe_topics(self):
|
|
|
|
"""(Re)Subscribe to topics."""
|
2018-11-30 15:53:56 +00:00
|
|
|
template = self._config.get(CONF_VALUE_TEMPLATE)
|
|
|
|
if template is not None:
|
|
|
|
template.hass = self.hass
|
2015-08-19 00:25:05 +00:00
|
|
|
|
2016-11-17 15:34:46 +00:00
|
|
|
@callback
|
2019-03-13 19:58:20 +00:00
|
|
|
def message_received(msg):
|
2017-05-02 16:18:47 +00:00
|
|
|
"""Handle new MQTT messages."""
|
2019-03-13 19:58:20 +00:00
|
|
|
payload = msg.payload
|
2017-03-23 21:55:07 +00:00
|
|
|
# auto-expire enabled?
|
2018-11-30 15:53:56 +00:00
|
|
|
expire_after = self._config.get(CONF_EXPIRE_AFTER)
|
|
|
|
if expire_after is not None and expire_after > 0:
|
2017-03-23 21:55:07 +00:00
|
|
|
# Reset old trigger
|
|
|
|
if self._expiration_trigger:
|
|
|
|
self._expiration_trigger()
|
|
|
|
self._expiration_trigger = None
|
|
|
|
|
|
|
|
# Set new trigger
|
|
|
|
expiration_at = (
|
2018-11-30 15:53:56 +00:00
|
|
|
dt_util.utcnow() + timedelta(seconds=expire_after))
|
2017-03-23 21:55:07 +00:00
|
|
|
|
|
|
|
self._expiration_trigger = async_track_point_in_utc_time(
|
2017-05-02 16:18:47 +00:00
|
|
|
self.hass, self.value_is_expired, expiration_at)
|
2017-03-23 21:55:07 +00:00
|
|
|
|
2018-11-30 15:53:56 +00:00
|
|
|
json_attributes = set(self._config.get(CONF_JSON_ATTRS))
|
|
|
|
if json_attributes:
|
2018-01-08 16:07:39 +00:00
|
|
|
self._attributes = {}
|
|
|
|
try:
|
|
|
|
json_dict = json.loads(payload)
|
|
|
|
if isinstance(json_dict, dict):
|
|
|
|
attrs = {k: json_dict[k] for k in
|
2018-11-30 15:53:56 +00:00
|
|
|
json_attributes & json_dict.keys()}
|
2018-01-08 16:07:39 +00:00
|
|
|
self._attributes = attrs
|
|
|
|
else:
|
|
|
|
_LOGGER.warning("JSON result was not a dictionary")
|
|
|
|
except ValueError:
|
|
|
|
_LOGGER.warning("MQTT payload could not be parsed as JSON")
|
|
|
|
_LOGGER.debug("Erroneous JSON: %s", payload)
|
|
|
|
|
2018-11-30 15:53:56 +00:00
|
|
|
if template is not None:
|
|
|
|
payload = template.async_render_with_possible_json_value(
|
2016-10-13 17:39:49 +00:00
|
|
|
payload, self._state)
|
2015-12-11 05:39:01 +00:00
|
|
|
self._state = payload
|
2019-03-12 21:46:48 +00:00
|
|
|
self.async_write_ha_state()
|
2015-08-19 00:25:05 +00:00
|
|
|
|
2018-11-27 10:23:47 +00:00
|
|
|
self._sub_state = await subscription.async_subscribe_topics(
|
|
|
|
self.hass, self._sub_state,
|
2018-11-30 15:53:56 +00:00
|
|
|
{'state_topic': {'topic': self._config.get(CONF_STATE_TOPIC),
|
2018-11-27 10:23:47 +00:00
|
|
|
'msg_callback': message_received,
|
2018-11-30 15:53:56 +00:00
|
|
|
'qos': self._config.get(CONF_QOS)}})
|
2018-11-27 10:23:47 +00:00
|
|
|
|
|
|
|
async def async_will_remove_from_hass(self):
|
|
|
|
"""Unsubscribe when removed."""
|
2018-12-19 13:05:24 +00:00
|
|
|
self._sub_state = await subscription.async_unsubscribe_topics(
|
|
|
|
self.hass, self._sub_state)
|
2018-12-12 15:26:44 +00:00
|
|
|
await MqttAttributes.async_will_remove_from_hass(self)
|
2018-11-27 10:23:47 +00:00
|
|
|
await MqttAvailability.async_will_remove_from_hass(self)
|
2015-08-19 00:25:05 +00:00
|
|
|
|
2017-03-23 21:55:07 +00:00
|
|
|
@callback
|
|
|
|
def value_is_expired(self, *_):
|
|
|
|
"""Triggered when value is expired."""
|
|
|
|
self._expiration_trigger = None
|
2019-01-24 07:20:20 +00:00
|
|
|
self._state = None
|
2019-03-12 21:46:48 +00:00
|
|
|
self.async_write_ha_state()
|
2017-03-23 21:55:07 +00:00
|
|
|
|
2015-08-19 00:25:05 +00:00
|
|
|
@property
|
|
|
|
def should_poll(self):
|
2016-02-23 05:21:49 +00:00
|
|
|
"""No polling needed."""
|
2015-08-19 00:25:05 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
2016-03-08 15:46:34 +00:00
|
|
|
"""Return the name of the sensor."""
|
2018-11-30 15:53:56 +00:00
|
|
|
return self._config.get(CONF_NAME)
|
2015-08-19 00:25:05 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def unit_of_measurement(self):
|
2016-03-08 15:46:34 +00:00
|
|
|
"""Return the unit this state is expressed in."""
|
2018-11-30 15:53:56 +00:00
|
|
|
return self._config.get(CONF_UNIT_OF_MEASUREMENT)
|
2015-08-19 00:25:05 +00:00
|
|
|
|
2017-03-11 18:07:52 +00:00
|
|
|
@property
|
|
|
|
def force_update(self):
|
|
|
|
"""Force update."""
|
2018-11-30 15:53:56 +00:00
|
|
|
return self._config.get(CONF_FORCE_UPDATE)
|
2017-03-11 18:07:52 +00:00
|
|
|
|
2015-08-19 00:25:05 +00:00
|
|
|
@property
|
|
|
|
def state(self):
|
2016-03-08 15:46:34 +00:00
|
|
|
"""Return the state of the entity."""
|
2015-08-20 22:05:51 +00:00
|
|
|
return self._state
|
2018-01-08 16:07:39 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Return the state attributes."""
|
|
|
|
return self._attributes
|
2018-03-23 10:30:44 +00:00
|
|
|
|
2018-04-08 02:32:09 +00:00
|
|
|
@property
|
|
|
|
def unique_id(self):
|
|
|
|
"""Return a unique ID."""
|
|
|
|
return self._unique_id
|
|
|
|
|
2018-03-23 10:30:44 +00:00
|
|
|
@property
|
|
|
|
def icon(self):
|
|
|
|
"""Return the icon."""
|
2018-11-30 15:53:56 +00:00
|
|
|
return self._config.get(CONF_ICON)
|
2018-05-01 19:38:08 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def device_class(self) -> Optional[str]:
|
|
|
|
"""Return the device class of the sensor."""
|
2018-11-30 15:53:56 +00:00
|
|
|
return self._config.get(CONF_DEVICE_CLASS)
|