2019-04-03 17:40:03 +02:00
|
|
|
"""Support for MQTT sensors."""
|
2017-03-23 22:55:07 +01:00
|
|
|
from datetime import timedelta
|
2021-01-09 14:37:33 +01:00
|
|
|
import functools
|
2018-04-08 04:32:09 +02:00
|
|
|
from typing import Optional
|
2016-02-18 21:27:50 -08:00
|
|
|
|
2016-04-06 20:32:35 -04:00
|
|
|
import voluptuous as vol
|
|
|
|
|
2020-12-10 21:30:07 +01:00
|
|
|
from homeassistant.components import sensor
|
2018-05-01 21:38:08 +02:00
|
|
|
from homeassistant.components.sensor import DEVICE_CLASSES_SCHEMA
|
2016-08-21 00:40:16 +02:00
|
|
|
from homeassistant.const import (
|
2019-07-31 12:25:30 -07:00
|
|
|
CONF_DEVICE,
|
|
|
|
CONF_DEVICE_CLASS,
|
|
|
|
CONF_FORCE_UPDATE,
|
|
|
|
CONF_ICON,
|
|
|
|
CONF_NAME,
|
2020-08-09 23:00:14 +02:00
|
|
|
CONF_UNIQUE_ID,
|
2019-07-31 12:25:30 -07:00
|
|
|
CONF_UNIT_OF_MEASUREMENT,
|
|
|
|
CONF_VALUE_TEMPLATE,
|
|
|
|
)
|
2019-01-27 18:54:52 +01:00
|
|
|
from homeassistant.core import callback
|
2016-09-09 08:37:30 +02:00
|
|
|
import homeassistant.helpers.config_validation as cv
|
2019-01-27 18:54:52 +01:00
|
|
|
from homeassistant.helpers.entity import Entity
|
2017-03-23 22:55:07 +01:00
|
|
|
from homeassistant.helpers.event import async_track_point_in_utc_time
|
2020-09-02 20:16:21 -05:00
|
|
|
from homeassistant.helpers.reload import async_setup_reload_service
|
2019-01-27 18:54:52 +01:00
|
|
|
from homeassistant.helpers.typing import ConfigType, HomeAssistantType
|
2017-03-23 22:55:07 +01:00
|
|
|
from homeassistant.util import dt as dt_util
|
2015-08-19 01:25:05 +01:00
|
|
|
|
2021-01-09 00:47:17 +01:00
|
|
|
from . import CONF_QOS, CONF_STATE_TOPIC, DOMAIN, PLATFORMS, subscription
|
|
|
|
from .. import mqtt
|
|
|
|
from .debug_info import log_messages
|
|
|
|
from .mixins import (
|
|
|
|
MQTT_AVAILABILITY_SCHEMA,
|
|
|
|
MQTT_ENTITY_DEVICE_INFO_SCHEMA,
|
|
|
|
MQTT_JSON_ATTRS_SCHEMA,
|
2019-07-31 12:25:30 -07:00
|
|
|
MqttAvailability,
|
2021-01-09 17:46:53 +01:00
|
|
|
MqttEntity,
|
2021-01-09 14:37:33 +01:00
|
|
|
async_setup_entry_helper,
|
2019-07-31 12:25:30 -07:00
|
|
|
)
|
2019-03-20 22:56:46 -07:00
|
|
|
|
2019-07-31 12:25:30 -07:00
|
|
|
CONF_EXPIRE_AFTER = "expire_after"
|
2017-03-11 19:07:52 +01:00
|
|
|
|
2019-07-31 12:25:30 -07:00
|
|
|
DEFAULT_NAME = "MQTT Sensor"
|
2017-03-11 19:07:52 +01:00
|
|
|
DEFAULT_FORCE_UPDATE = False
|
2019-07-31 12:25:30 -07:00
|
|
|
PLATFORM_SCHEMA = (
|
|
|
|
mqtt.MQTT_RO_PLATFORM_SCHEMA.extend(
|
|
|
|
{
|
2021-01-09 00:47:17 +01:00
|
|
|
vol.Optional(CONF_DEVICE): MQTT_ENTITY_DEVICE_INFO_SCHEMA,
|
2019-07-31 12:25:30 -07:00
|
|
|
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_NAME, default=DEFAULT_NAME): cv.string,
|
|
|
|
vol.Optional(CONF_UNIQUE_ID): cv.string,
|
|
|
|
vol.Optional(CONF_UNIT_OF_MEASUREMENT): cv.string,
|
|
|
|
}
|
|
|
|
)
|
2021-01-09 00:47:17 +01:00
|
|
|
.extend(MQTT_AVAILABILITY_SCHEMA.schema)
|
|
|
|
.extend(MQTT_JSON_ATTRS_SCHEMA.schema)
|
2019-07-31 12:25:30 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_platform(
|
|
|
|
hass: HomeAssistantType, config: ConfigType, async_add_entities, discovery_info=None
|
|
|
|
):
|
2018-09-27 16:07:56 +02:00
|
|
|
"""Set up MQTT sensors through configuration.yaml."""
|
2020-09-02 20:16:21 -05:00
|
|
|
await async_setup_reload_service(hass, DOMAIN, PLATFORMS)
|
2021-01-09 14:37:33 +01:00
|
|
|
await _async_setup_entity(hass, async_add_entities, config)
|
2018-09-27 16:07:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
|
|
"""Set up MQTT sensors dynamically through MQTT discovery."""
|
2021-01-09 14:37:33 +01:00
|
|
|
setup = functools.partial(
|
|
|
|
_async_setup_entity, hass, async_add_entities, config_entry=config_entry
|
2019-07-31 12:25:30 -07:00
|
|
|
)
|
2021-01-09 14:37:33 +01:00
|
|
|
await async_setup_entry_helper(hass, sensor.DOMAIN, setup, PLATFORM_SCHEMA)
|
2018-09-27 16:07:56 +02:00
|
|
|
|
|
|
|
|
2019-07-31 12:25:30 -07:00
|
|
|
async def _async_setup_entity(
|
2021-01-09 14:37:33 +01:00
|
|
|
hass, async_add_entities, config: ConfigType, config_entry=None, discovery_data=None
|
2019-07-31 12:25:30 -07:00
|
|
|
):
|
2018-09-28 16:57:17 +02:00
|
|
|
"""Set up MQTT sensor."""
|
2020-09-10 20:52:23 +02:00
|
|
|
async_add_entities([MqttSensor(hass, config, config_entry, discovery_data)])
|
2015-08-19 01:25:05 +01:00
|
|
|
|
|
|
|
|
2021-01-09 17:46:53 +01:00
|
|
|
class MqttSensor(MqttEntity, Entity):
|
2016-03-08 16:46:34 +01:00
|
|
|
"""Representation of a sensor that can be updated using MQTT."""
|
|
|
|
|
2020-09-10 20:52:23 +02:00
|
|
|
def __init__(self, hass, config, config_entry, discovery_data):
|
2016-03-08 16:46:34 +01:00
|
|
|
"""Initialize the sensor."""
|
2019-01-24 08:20:20 +01:00
|
|
|
self._state = None
|
2017-03-23 22:55:07 +01:00
|
|
|
self._expiration_trigger = None
|
2018-11-27 11:23:47 +01:00
|
|
|
|
2020-07-09 01:20:19 +02:00
|
|
|
expire_after = config.get(CONF_EXPIRE_AFTER)
|
|
|
|
if expire_after is not None and expire_after > 0:
|
|
|
|
self._expired = True
|
|
|
|
else:
|
|
|
|
self._expired = None
|
2020-09-10 20:52:23 +02:00
|
|
|
|
2021-01-09 17:46:53 +01:00
|
|
|
MqttEntity.__init__(self, hass, config, config_entry, discovery_data)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def config_schema():
|
|
|
|
"""Return the config schema."""
|
|
|
|
return PLATFORM_SCHEMA
|
2018-11-27 11:23:47 +01:00
|
|
|
|
2020-09-10 20:52:23 +02:00
|
|
|
def _setup_from_config(self, config):
|
|
|
|
"""(Re)Setup the entity."""
|
|
|
|
self._config = config
|
2018-11-30 16:53:56 +01:00
|
|
|
template = self._config.get(CONF_VALUE_TEMPLATE)
|
|
|
|
if template is not None:
|
|
|
|
template.hass = self.hass
|
2015-08-19 01:25:05 +01:00
|
|
|
|
2020-09-10 20:52:23 +02:00
|
|
|
async def _subscribe_topics(self):
|
|
|
|
"""(Re)Subscribe to topics."""
|
|
|
|
|
2016-11-17 07:34:46 -08:00
|
|
|
@callback
|
2020-04-01 19:00:40 +02:00
|
|
|
@log_messages(self.hass, self.entity_id)
|
2019-03-13 20:58:20 +01:00
|
|
|
def message_received(msg):
|
2017-05-02 18:18:47 +02:00
|
|
|
"""Handle new MQTT messages."""
|
2019-03-13 20:58:20 +01:00
|
|
|
payload = msg.payload
|
2017-03-23 22:55:07 +01:00
|
|
|
# auto-expire enabled?
|
2018-11-30 16:53:56 +01:00
|
|
|
expire_after = self._config.get(CONF_EXPIRE_AFTER)
|
|
|
|
if expire_after is not None and expire_after > 0:
|
2020-07-09 01:20:19 +02:00
|
|
|
# When expire_after is set, and we receive a message, assume device is not expired since it has to be to receive the message
|
|
|
|
self._expired = False
|
|
|
|
|
2017-03-23 22:55:07 +01:00
|
|
|
# Reset old trigger
|
|
|
|
if self._expiration_trigger:
|
|
|
|
self._expiration_trigger()
|
|
|
|
self._expiration_trigger = None
|
|
|
|
|
|
|
|
# Set new trigger
|
2019-07-31 12:25:30 -07:00
|
|
|
expiration_at = dt_util.utcnow() + timedelta(seconds=expire_after)
|
2017-03-23 22:55:07 +01:00
|
|
|
|
|
|
|
self._expiration_trigger = async_track_point_in_utc_time(
|
2020-07-09 01:20:19 +02:00
|
|
|
self.hass, self._value_is_expired, expiration_at
|
2019-07-31 12:25:30 -07:00
|
|
|
)
|
2017-03-23 22:55:07 +01:00
|
|
|
|
2020-09-10 20:52:23 +02:00
|
|
|
template = self._config.get(CONF_VALUE_TEMPLATE)
|
2018-11-30 16:53:56 +01:00
|
|
|
if template is not None:
|
|
|
|
payload = template.async_render_with_possible_json_value(
|
2019-07-31 12:25:30 -07:00
|
|
|
payload, self._state
|
|
|
|
)
|
2015-12-10 21:39:01 -08:00
|
|
|
self._state = payload
|
2019-03-12 22:46:48 +01:00
|
|
|
self.async_write_ha_state()
|
2015-08-19 01:25:05 +01:00
|
|
|
|
2018-11-27 11:23:47 +01:00
|
|
|
self._sub_state = await subscription.async_subscribe_topics(
|
2019-07-31 12:25:30 -07:00
|
|
|
self.hass,
|
|
|
|
self._sub_state,
|
|
|
|
{
|
|
|
|
"state_topic": {
|
|
|
|
"topic": self._config[CONF_STATE_TOPIC],
|
|
|
|
"msg_callback": message_received,
|
|
|
|
"qos": self._config[CONF_QOS],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
2018-11-27 11:23:47 +01:00
|
|
|
|
2017-03-23 22:55:07 +01:00
|
|
|
@callback
|
2020-07-09 01:20:19 +02:00
|
|
|
def _value_is_expired(self, *_):
|
2017-03-23 22:55:07 +01:00
|
|
|
"""Triggered when value is expired."""
|
|
|
|
self._expiration_trigger = None
|
2020-07-09 01:20:19 +02:00
|
|
|
self._expired = True
|
2019-03-12 22:46:48 +01:00
|
|
|
self.async_write_ha_state()
|
2017-03-23 22:55:07 +01:00
|
|
|
|
2015-08-19 01:25:05 +01:00
|
|
|
@property
|
|
|
|
def name(self):
|
2016-03-08 16:46:34 +01:00
|
|
|
"""Return the name of the sensor."""
|
2019-04-07 16:09:43 +02:00
|
|
|
return self._config[CONF_NAME]
|
2015-08-19 01:25:05 +01:00
|
|
|
|
|
|
|
@property
|
|
|
|
def unit_of_measurement(self):
|
2016-03-08 16:46:34 +01:00
|
|
|
"""Return the unit this state is expressed in."""
|
2018-11-30 16:53:56 +01:00
|
|
|
return self._config.get(CONF_UNIT_OF_MEASUREMENT)
|
2015-08-19 01:25:05 +01:00
|
|
|
|
2017-03-11 19:07:52 +01:00
|
|
|
@property
|
|
|
|
def force_update(self):
|
|
|
|
"""Force update."""
|
2019-04-07 16:09:43 +02:00
|
|
|
return self._config[CONF_FORCE_UPDATE]
|
2017-03-11 19:07:52 +01:00
|
|
|
|
2015-08-19 01:25:05 +01:00
|
|
|
@property
|
|
|
|
def state(self):
|
2016-03-08 16:46:34 +01:00
|
|
|
"""Return the state of the entity."""
|
2015-08-20 23:05:51 +01:00
|
|
|
return self._state
|
2018-01-08 16:07:39 +00:00
|
|
|
|
2018-03-23 11:30:44 +01:00
|
|
|
@property
|
|
|
|
def icon(self):
|
|
|
|
"""Return the icon."""
|
2018-11-30 16:53:56 +01:00
|
|
|
return self._config.get(CONF_ICON)
|
2018-05-01 21:38:08 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def device_class(self) -> Optional[str]:
|
|
|
|
"""Return the device class of the sensor."""
|
2018-11-30 16:53:56 +01:00
|
|
|
return self._config.get(CONF_DEVICE_CLASS)
|
2020-07-09 01:20:19 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def available(self) -> bool:
|
|
|
|
"""Return true if the device is available and value has not expired."""
|
|
|
|
expire_after = self._config.get(CONF_EXPIRE_AFTER)
|
|
|
|
return MqttAvailability.available.fget(self) and (
|
|
|
|
expire_after is None or not self._expired
|
|
|
|
)
|