core/homeassistant/components/mqtt/sensor.py

263 lines
8.7 KiB
Python
Raw Normal View History

"""Support for MQTT sensors."""
from datetime import timedelta
import json
import logging
from typing import Optional
2016-02-19 05:27:50 +00:00
import voluptuous as vol
from homeassistant.components import mqtt, sensor
from homeassistant.components.sensor import DEVICE_CLASSES_SCHEMA
from homeassistant.const import (
2019-07-31 19:25:30 +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
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.dispatcher import async_dispatcher_connect
from homeassistant.helpers.entity import Entity
from homeassistant.helpers.event import async_track_point_in_utc_time
from homeassistant.helpers.typing import ConfigType, HomeAssistantType
from homeassistant.util import dt as dt_util
2015-08-19 00:25:05 +00:00
from . import (
2019-07-31 19:25:30 +00:00
ATTR_DISCOVERY_HASH,
CONF_QOS,
CONF_STATE_TOPIC,
CONF_UNIQUE_ID,
MqttAttributes,
MqttAvailability,
MqttDiscoveryUpdate,
MqttEntityDeviceInfo,
subscription,
)
from .discovery import MQTT_DISCOVERY_NEW, clear_discovery_hash
2015-08-19 00:25:05 +00:00
_LOGGER = logging.getLogger(__name__)
2019-07-31 19:25:30 +00:00
CONF_EXPIRE_AFTER = "expire_after"
CONF_JSON_ATTRS = "json_attributes"
2019-07-31 19:25:30 +00:00
DEFAULT_NAME = "MQTT Sensor"
DEFAULT_FORCE_UPDATE = False
2019-07-31 19:25:30 +00:00
PLATFORM_SCHEMA = (
mqtt.MQTT_RO_PLATFORM_SCHEMA.extend(
{
vol.Optional(CONF_DEVICE): mqtt.MQTT_ENTITY_DEVICE_INFO_SCHEMA,
vol.Optional(CONF_DEVICE_CLASS): DEVICE_CLASSES_SCHEMA,
vol.Optional(CONF_EXPIRE_AFTER): cv.positive_int,
vol.Optional(CONF_FORCE_UPDATE, default=DEFAULT_FORCE_UPDATE): cv.boolean,
vol.Optional(CONF_ICON): cv.icon,
vol.Optional(CONF_JSON_ATTRS, default=[]): cv.ensure_list_csv,
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
vol.Optional(CONF_UNIQUE_ID): cv.string,
vol.Optional(CONF_UNIT_OF_MEASUREMENT): cv.string,
}
)
.extend(mqtt.MQTT_AVAILABILITY_SCHEMA.schema)
.extend(mqtt.MQTT_JSON_ATTRS_SCHEMA.schema)
)
async def async_setup_platform(
hass: HomeAssistantType, config: ConfigType, async_add_entities, discovery_info=None
):
"""Set up MQTT sensors through configuration.yaml."""
await _async_setup_entity(config, async_add_entities)
async def async_setup_entry(hass, config_entry, async_add_entities):
"""Set up MQTT sensors dynamically through MQTT discovery."""
2019-07-31 19:25:30 +00:00
async def async_discover_sensor(discovery_payload):
"""Discover and add a discovered MQTT sensor."""
try:
discovery_hash = discovery_payload.pop(ATTR_DISCOVERY_HASH)
config = PLATFORM_SCHEMA(discovery_payload)
2019-07-31 19:25:30 +00:00
await _async_setup_entity(
config, async_add_entities, config_entry, discovery_hash
)
2019-01-05 13:01:58 +00:00
except Exception:
if discovery_hash:
clear_discovery_hash(hass, discovery_hash)
raise
2019-07-31 19:25:30 +00:00
async_dispatcher_connect(
hass, MQTT_DISCOVERY_NEW.format(sensor.DOMAIN, "mqtt"), async_discover_sensor
)
2019-07-31 19:25:30 +00:00
async def _async_setup_entity(
config: ConfigType, async_add_entities, config_entry=None, discovery_hash=None
):
"""Set up MQTT sensor."""
async_add_entities([MqttSensor(config, config_entry, discovery_hash)])
2015-08-19 00:25:05 +00:00
2019-07-31 19:25:30 +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."""
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)
self._state = None
self._sub_state = None
self._expiration_trigger = None
self._attributes = None
device_config = config.get(CONF_DEVICE)
if config.get(CONF_JSON_ATTRS):
2019-07-31 19:25:30 +00:00
_LOGGER.warning(
'configuration variable "json_attributes" is '
'deprecated, replace with "json_attributes_topic"'
)
MqttAttributes.__init__(self, config)
MqttAvailability.__init__(self, config)
2019-07-31 19:25:30 +00:00
MqttDiscoveryUpdate.__init__(self, discovery_hash, self.discovery_update)
MqttEntityDeviceInfo.__init__(self, device_config, config_entry)
async def async_added_to_hass(self):
"""Subscribe to MQTT events."""
await super().async_added_to_hass()
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
await self.attributes_discovery_update(config)
await self.availability_discovery_update(config)
await self.device_info_discovery_update(config)
await self._subscribe_topics()
self.async_write_ha_state()
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
@callback
def message_received(msg):
"""Handle new MQTT messages."""
payload = msg.payload
# 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:
# Reset old trigger
if self._expiration_trigger:
self._expiration_trigger()
self._expiration_trigger = None
# Set new trigger
2019-07-31 19:25:30 +00:00
expiration_at = dt_util.utcnow() + timedelta(seconds=expire_after)
self._expiration_trigger = async_track_point_in_utc_time(
2019-07-31 19:25:30 +00:00
self.hass, self.value_is_expired, expiration_at
)
json_attributes = set(self._config[CONF_JSON_ATTRS])
2018-11-30 15:53:56 +00:00
if json_attributes:
self._attributes = {}
try:
json_dict = json.loads(payload)
if isinstance(json_dict, dict):
2019-07-31 19:25:30 +00:00
attrs = {
k: json_dict[k] for k in json_attributes & json_dict.keys()
}
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(
2019-07-31 19:25:30 +00:00
payload, self._state
)
self._state = payload
self.async_write_ha_state()
2015-08-19 00:25:05 +00:00
self._sub_state = await subscription.async_subscribe_topics(
2019-07-31 19:25:30 +00:00
self.hass,
self._sub_state,
{
"state_topic": {
"topic": self._config[CONF_STATE_TOPIC],
"msg_callback": message_received,
"qos": self._config[CONF_QOS],
}
},
)
async def async_will_remove_from_hass(self):
"""Unsubscribe when removed."""
self._sub_state = await subscription.async_unsubscribe_topics(
2019-07-31 19:25:30 +00:00
self.hass, self._sub_state
)
await MqttAttributes.async_will_remove_from_hass(self)
await MqttAvailability.async_will_remove_from_hass(self)
2015-08-19 00:25:05 +00:00
@callback
def value_is_expired(self, *_):
"""Triggered when value is expired."""
self._expiration_trigger = None
self._state = None
self.async_write_ha_state()
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."""
return self._config[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
@property
def force_update(self):
"""Force update."""
return self._config[CONF_FORCE_UPDATE]
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
@property
def device_state_attributes(self):
"""Return the state attributes."""
return self._attributes
@property
def unique_id(self):
"""Return a unique ID."""
return self._unique_id
@property
def icon(self):
"""Return the icon."""
2018-11-30 15:53:56 +00:00
return self._config.get(CONF_ICON)
@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)