2019-04-03 15:40:03 +00:00
|
|
|
"""Support for MQTT discovery."""
|
2018-10-08 08:59:43 +00:00
|
|
|
import asyncio
|
2017-02-07 17:13:24 +00:00
|
|
|
import json
|
|
|
|
import logging
|
|
|
|
import re
|
|
|
|
|
2018-07-18 09:54:27 +00:00
|
|
|
from homeassistant.components import mqtt
|
2019-02-04 18:54:40 +00:00
|
|
|
from homeassistant.const import CONF_DEVICE, CONF_PLATFORM
|
2018-09-18 12:59:39 +00:00
|
|
|
from homeassistant.helpers.discovery import async_load_platform
|
2018-09-24 08:11:49 +00:00
|
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_send
|
2018-09-27 14:07:56 +00:00
|
|
|
from homeassistant.helpers.typing import HomeAssistantType
|
2017-02-07 17:13:24 +00:00
|
|
|
|
2019-08-07 00:32:15 +00:00
|
|
|
from .abbreviations import ABBREVIATIONS, DEVICE_ABBREVIATIONS
|
2019-04-09 22:42:44 +00:00
|
|
|
from .const import ATTR_DISCOVERY_HASH, CONF_STATE_TOPIC
|
2019-03-21 05:56:46 +00:00
|
|
|
|
2017-02-07 17:13:24 +00:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
TOPIC_MATCHER = re.compile(
|
2019-07-31 19:25:30 +00:00
|
|
|
r"(?P<component>\w+)/(?:(?P<node_id>[a-zA-Z0-9_-]+)/)"
|
|
|
|
r"?(?P<object_id>[a-zA-Z0-9_-]+)/config"
|
|
|
|
)
|
2017-02-14 07:54:13 +00:00
|
|
|
|
2017-11-15 04:19:15 +00:00
|
|
|
SUPPORTED_COMPONENTS = [
|
2019-07-31 19:25:30 +00:00
|
|
|
"alarm_control_panel",
|
|
|
|
"binary_sensor",
|
|
|
|
"camera",
|
|
|
|
"climate",
|
|
|
|
"cover",
|
|
|
|
"fan",
|
|
|
|
"light",
|
|
|
|
"lock",
|
|
|
|
"sensor",
|
|
|
|
"switch",
|
|
|
|
"vacuum",
|
2019-04-14 03:25:45 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
CONFIG_ENTRY_COMPONENTS = [
|
2019-07-31 19:25:30 +00:00
|
|
|
"alarm_control_panel",
|
|
|
|
"binary_sensor",
|
|
|
|
"camera",
|
|
|
|
"climate",
|
|
|
|
"cover",
|
|
|
|
"fan",
|
|
|
|
"light",
|
|
|
|
"lock",
|
|
|
|
"sensor",
|
|
|
|
"switch",
|
|
|
|
"vacuum",
|
2018-11-27 13:00:05 +00:00
|
|
|
]
|
2017-02-07 17:13:24 +00:00
|
|
|
|
2018-11-27 13:00:05 +00:00
|
|
|
DEPRECATED_PLATFORM_TO_SCHEMA = {
|
2019-07-31 19:25:30 +00:00
|
|
|
"light": {"mqtt_json": "json", "mqtt_template": "template"}
|
2018-09-27 14:07:56 +00:00
|
|
|
}
|
|
|
|
|
2019-04-14 03:25:45 +00:00
|
|
|
# These components require state_topic to be set.
|
|
|
|
# If not specified, infer state_topic from discovery topic.
|
2019-07-31 19:25:30 +00:00
|
|
|
IMPLICIT_STATE_TOPIC_COMPONENTS = ["alarm_control_panel", "binary_sensor", "sensor"]
|
2019-04-14 03:25:45 +00:00
|
|
|
|
2018-11-27 13:00:05 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
ALREADY_DISCOVERED = "mqtt_discovered_components"
|
|
|
|
DATA_CONFIG_ENTRY_LOCK = "mqtt_config_entry_lock"
|
|
|
|
CONFIG_ENTRY_IS_SETUP = "mqtt_config_entry_is_setup"
|
|
|
|
MQTT_DISCOVERY_UPDATED = "mqtt_discovery_updated_{}"
|
|
|
|
MQTT_DISCOVERY_NEW = "mqtt_discovery_new_{}_{}"
|
2017-05-23 18:08:12 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
TOPIC_BASE = "~"
|
2018-10-12 06:51:16 +00:00
|
|
|
|
2017-02-07 17:13:24 +00:00
|
|
|
|
2019-01-07 15:57:51 +00:00
|
|
|
def clear_discovery_hash(hass, discovery_hash):
|
|
|
|
"""Clear entry in ALREADY_DISCOVERED list."""
|
|
|
|
del hass.data[ALREADY_DISCOVERED][discovery_hash]
|
|
|
|
|
|
|
|
|
2019-04-29 20:45:53 +00:00
|
|
|
class MQTTConfig(dict):
|
|
|
|
"""Dummy class to allow adding attributes."""
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
async def async_start(
|
|
|
|
hass: HomeAssistantType, discovery_topic, hass_config, config_entry=None
|
|
|
|
) -> bool:
|
2017-05-02 16:18:47 +00:00
|
|
|
"""Initialize of MQTT Discovery."""
|
2019-07-31 19:25:30 +00:00
|
|
|
|
2019-03-13 19:58:20 +00:00
|
|
|
async def async_device_message_received(msg):
|
2017-02-07 17:13:24 +00:00
|
|
|
"""Process the received message."""
|
2019-03-13 19:58:20 +00:00
|
|
|
payload = msg.payload
|
|
|
|
topic = msg.topic
|
2019-09-03 19:14:00 +00:00
|
|
|
topic_trimmed = topic.replace(f"{discovery_topic}/", "", 1)
|
2019-07-01 17:23:01 +00:00
|
|
|
match = TOPIC_MATCHER.match(topic_trimmed)
|
2017-02-07 17:13:24 +00:00
|
|
|
|
|
|
|
if not match:
|
|
|
|
return
|
|
|
|
|
2019-07-01 17:23:01 +00:00
|
|
|
component, node_id, object_id = match.groups()
|
2017-02-07 17:13:24 +00:00
|
|
|
|
|
|
|
if component not in SUPPORTED_COMPONENTS:
|
2019-07-05 22:24:26 +00:00
|
|
|
_LOGGER.warning("Integration %s is not supported", component)
|
2017-02-07 17:13:24 +00:00
|
|
|
return
|
|
|
|
|
2018-10-12 06:51:16 +00:00
|
|
|
if payload:
|
|
|
|
try:
|
|
|
|
payload = json.loads(payload)
|
|
|
|
except ValueError:
|
2019-07-31 19:25:30 +00:00
|
|
|
_LOGGER.warning("Unable to parse JSON %s: '%s'", object_id, payload)
|
2018-10-12 06:51:16 +00:00
|
|
|
return
|
|
|
|
|
2019-04-29 20:45:53 +00:00
|
|
|
payload = MQTTConfig(payload)
|
2018-10-12 06:51:16 +00:00
|
|
|
|
|
|
|
for key in list(payload.keys()):
|
|
|
|
abbreviated_key = key
|
|
|
|
key = ABBREVIATIONS.get(key, key)
|
|
|
|
payload[key] = payload.pop(abbreviated_key)
|
|
|
|
|
2019-02-04 18:54:40 +00:00
|
|
|
if CONF_DEVICE in payload:
|
|
|
|
device = payload[CONF_DEVICE]
|
|
|
|
for key in list(device.keys()):
|
|
|
|
abbreviated_key = key
|
|
|
|
key = DEVICE_ABBREVIATIONS.get(key, key)
|
|
|
|
device[key] = device.pop(abbreviated_key)
|
|
|
|
|
2019-03-09 00:48:54 +00:00
|
|
|
if TOPIC_BASE in payload:
|
|
|
|
base = payload.pop(TOPIC_BASE)
|
2018-10-12 06:51:16 +00:00
|
|
|
for key, value in payload.items():
|
2018-12-24 13:21:58 +00:00
|
|
|
if isinstance(value, str) and value:
|
2019-07-31 19:25:30 +00:00
|
|
|
if value[0] == TOPIC_BASE and key.endswith("_topic"):
|
2018-11-19 08:59:07 +00:00
|
|
|
payload[key] = "{}{}".format(base, value[1:])
|
2019-07-31 19:25:30 +00:00
|
|
|
if value[-1] == TOPIC_BASE and key.endswith("_topic"):
|
2018-11-19 08:59:07 +00:00
|
|
|
payload[key] = "{}{}".format(value[:-1], base)
|
2018-10-12 06:51:16 +00:00
|
|
|
|
2018-11-30 12:57:17 +00:00
|
|
|
# If present, the node_id will be included in the discovered object id
|
2019-07-31 19:25:30 +00:00
|
|
|
discovery_id = " ".join((node_id, object_id)) if node_id else object_id
|
2018-09-24 08:11:49 +00:00
|
|
|
discovery_hash = (component, discovery_id)
|
2017-05-23 18:08:12 +00:00
|
|
|
|
2018-11-19 15:49:04 +00:00
|
|
|
if payload:
|
2019-04-29 20:45:53 +00:00
|
|
|
# Attach MQTT topic to the payload, used for debug prints
|
2019-09-03 19:14:00 +00:00
|
|
|
setattr(payload, "__configuration_source__", f"MQTT (topic: '{topic}')")
|
2019-04-29 20:45:53 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
if CONF_PLATFORM in payload and "schema" not in payload:
|
2018-11-27 13:00:05 +00:00
|
|
|
platform = payload[CONF_PLATFORM]
|
2019-07-31 19:25:30 +00:00
|
|
|
if (
|
|
|
|
component in DEPRECATED_PLATFORM_TO_SCHEMA
|
|
|
|
and platform in DEPRECATED_PLATFORM_TO_SCHEMA[component]
|
|
|
|
):
|
2018-12-24 13:28:26 +00:00
|
|
|
schema = DEPRECATED_PLATFORM_TO_SCHEMA[component][platform]
|
2019-07-31 19:25:30 +00:00
|
|
|
payload["schema"] = schema
|
|
|
|
_LOGGER.warning(
|
|
|
|
'"platform": "%s" is deprecated, ' 'replace with "schema":"%s"',
|
|
|
|
platform,
|
|
|
|
schema,
|
|
|
|
)
|
|
|
|
payload[CONF_PLATFORM] = "mqtt"
|
|
|
|
|
|
|
|
if (
|
|
|
|
CONF_STATE_TOPIC not in payload
|
|
|
|
and component in IMPLICIT_STATE_TOPIC_COMPONENTS
|
|
|
|
):
|
2019-04-14 03:25:45 +00:00
|
|
|
# state_topic not specified, infer from discovery topic
|
2019-07-31 19:25:30 +00:00
|
|
|
payload[CONF_STATE_TOPIC] = "{}/{}/{}{}/state".format(
|
|
|
|
discovery_topic,
|
|
|
|
component,
|
|
|
|
"%s/" % node_id if node_id else "",
|
|
|
|
object_id,
|
|
|
|
)
|
|
|
|
_LOGGER.warning(
|
|
|
|
'implicit %s is deprecated, add "%s":"%s" to '
|
|
|
|
"%s discovery message",
|
|
|
|
CONF_STATE_TOPIC,
|
|
|
|
CONF_STATE_TOPIC,
|
|
|
|
payload[CONF_STATE_TOPIC],
|
|
|
|
topic,
|
|
|
|
)
|
2018-09-24 08:11:49 +00:00
|
|
|
|
|
|
|
payload[ATTR_DISCOVERY_HASH] = discovery_hash
|
|
|
|
|
2018-11-19 15:49:04 +00:00
|
|
|
if ALREADY_DISCOVERED not in hass.data:
|
|
|
|
hass.data[ALREADY_DISCOVERED] = {}
|
|
|
|
if discovery_hash in hass.data[ALREADY_DISCOVERED]:
|
|
|
|
# Dispatch update
|
|
|
|
_LOGGER.info(
|
|
|
|
"Component has already been discovered: %s %s, sending update",
|
2019-07-31 19:25:30 +00:00
|
|
|
component,
|
|
|
|
discovery_id,
|
|
|
|
)
|
2018-11-19 15:49:04 +00:00
|
|
|
async_dispatcher_send(
|
2019-07-31 19:25:30 +00:00
|
|
|
hass, MQTT_DISCOVERY_UPDATED.format(discovery_hash), payload
|
|
|
|
)
|
2018-11-19 15:49:04 +00:00
|
|
|
elif payload:
|
|
|
|
# Add component
|
2018-09-24 08:11:49 +00:00
|
|
|
_LOGGER.info("Found new component: %s %s", component, discovery_id)
|
2018-11-19 15:49:04 +00:00
|
|
|
hass.data[ALREADY_DISCOVERED][discovery_hash] = None
|
2018-09-24 08:11:49 +00:00
|
|
|
|
2018-11-27 13:00:05 +00:00
|
|
|
if component not in CONFIG_ENTRY_COMPONENTS:
|
2019-07-31 19:25:30 +00:00
|
|
|
await async_load_platform(hass, component, "mqtt", payload, hass_config)
|
2018-09-27 14:07:56 +00:00
|
|
|
return
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
config_entries_key = "{}.{}".format(component, "mqtt")
|
2018-10-08 08:59:43 +00:00
|
|
|
async with hass.data[DATA_CONFIG_ENTRY_LOCK]:
|
|
|
|
if config_entries_key not in hass.data[CONFIG_ENTRY_IS_SETUP]:
|
|
|
|
await hass.config_entries.async_forward_entry_setup(
|
2019-07-31 19:25:30 +00:00
|
|
|
config_entry, component
|
|
|
|
)
|
2018-10-08 08:59:43 +00:00
|
|
|
hass.data[CONFIG_ENTRY_IS_SETUP].add(config_entries_key)
|
2018-09-27 14:07:56 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
async_dispatcher_send(
|
|
|
|
hass, MQTT_DISCOVERY_NEW.format(component, "mqtt"), payload
|
|
|
|
)
|
2018-09-27 14:07:56 +00:00
|
|
|
|
2018-10-08 08:59:43 +00:00
|
|
|
hass.data[DATA_CONFIG_ENTRY_LOCK] = asyncio.Lock()
|
2018-09-27 14:07:56 +00:00
|
|
|
hass.data[CONFIG_ENTRY_IS_SETUP] = set()
|
2017-02-07 17:13:24 +00:00
|
|
|
|
2018-03-17 03:27:05 +00:00
|
|
|
await mqtt.async_subscribe(
|
2019-07-31 19:25:30 +00:00
|
|
|
hass, discovery_topic + "/#", async_device_message_received, 0
|
|
|
|
)
|
2017-02-07 17:13:24 +00:00
|
|
|
|
|
|
|
return True
|