2019-04-03 15:40:03 +00:00
|
|
|
"""Support for MQTT locks."""
|
2016-02-28 17:25:28 +00:00
|
|
|
import logging
|
|
|
|
|
2016-04-06 03:34:04 +00:00
|
|
|
import voluptuous as vol
|
|
|
|
|
2019-01-27 17:54:52 +00:00
|
|
|
from homeassistant.components import lock, mqtt
|
2016-02-28 17:25:28 +00:00
|
|
|
from homeassistant.components.lock import LockDevice
|
2019-01-27 17:54:52 +00:00
|
|
|
from homeassistant.const import (
|
2019-07-31 19:25:30 +00:00
|
|
|
CONF_DEVICE,
|
|
|
|
CONF_NAME,
|
|
|
|
CONF_OPTIMISTIC,
|
|
|
|
CONF_VALUE_TEMPLATE,
|
|
|
|
)
|
2019-01-27 17:54:52 +00:00
|
|
|
from homeassistant.core import callback
|
2016-04-06 03:34:04 +00:00
|
|
|
import homeassistant.helpers.config_validation as cv
|
2018-11-06 15:09:46 +00:00
|
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
2019-01-27 17:54:52 +00:00
|
|
|
from homeassistant.helpers.typing import ConfigType, HomeAssistantType
|
2016-02-28 17:25:28 +00:00
|
|
|
|
2019-03-21 05:56:46 +00:00
|
|
|
from . import (
|
2019-07-31 19:25:30 +00:00
|
|
|
ATTR_DISCOVERY_HASH,
|
|
|
|
CONF_COMMAND_TOPIC,
|
|
|
|
CONF_QOS,
|
|
|
|
CONF_RETAIN,
|
|
|
|
CONF_STATE_TOPIC,
|
|
|
|
CONF_UNIQUE_ID,
|
|
|
|
MqttAttributes,
|
|
|
|
MqttAvailability,
|
|
|
|
MqttDiscoveryUpdate,
|
|
|
|
MqttEntityDeviceInfo,
|
|
|
|
subscription,
|
|
|
|
)
|
2020-04-01 18:48:32 +00:00
|
|
|
from .debug_info import log_messages
|
2019-03-21 05:56:46 +00:00
|
|
|
from .discovery import MQTT_DISCOVERY_NEW, clear_discovery_hash
|
|
|
|
|
2016-02-28 17:25:28 +00:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
CONF_PAYLOAD_LOCK = "payload_lock"
|
|
|
|
CONF_PAYLOAD_UNLOCK = "payload_unlock"
|
2016-04-06 03:34:04 +00:00
|
|
|
|
2019-12-31 14:24:09 +00:00
|
|
|
CONF_STATE_LOCKED = "state_locked"
|
|
|
|
CONF_STATE_UNLOCKED = "state_unlocked"
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
DEFAULT_NAME = "MQTT Lock"
|
2016-09-09 00:34:55 +00:00
|
|
|
DEFAULT_OPTIMISTIC = False
|
2019-07-31 19:25:30 +00:00
|
|
|
DEFAULT_PAYLOAD_LOCK = "LOCK"
|
|
|
|
DEFAULT_PAYLOAD_UNLOCK = "UNLOCK"
|
2019-12-31 14:24:09 +00:00
|
|
|
DEFAULT_STATE_LOCKED = "LOCKED"
|
|
|
|
DEFAULT_STATE_UNLOCKED = "UNLOCKED"
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
PLATFORM_SCHEMA = (
|
|
|
|
mqtt.MQTT_RW_PLATFORM_SCHEMA.extend(
|
|
|
|
{
|
|
|
|
vol.Optional(CONF_DEVICE): mqtt.MQTT_ENTITY_DEVICE_INFO_SCHEMA,
|
|
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
|
|
|
vol.Optional(CONF_OPTIMISTIC, default=DEFAULT_OPTIMISTIC): cv.boolean,
|
|
|
|
vol.Optional(CONF_PAYLOAD_LOCK, default=DEFAULT_PAYLOAD_LOCK): cv.string,
|
|
|
|
vol.Optional(
|
|
|
|
CONF_PAYLOAD_UNLOCK, default=DEFAULT_PAYLOAD_UNLOCK
|
|
|
|
): cv.string,
|
2019-12-31 14:24:09 +00:00
|
|
|
vol.Optional(CONF_STATE_LOCKED, default=DEFAULT_STATE_LOCKED): cv.string,
|
|
|
|
vol.Optional(
|
|
|
|
CONF_STATE_UNLOCKED, default=DEFAULT_STATE_UNLOCKED
|
|
|
|
): cv.string,
|
2019-07-31 19:25:30 +00:00
|
|
|
vol.Optional(CONF_UNIQUE_ID): 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
|
|
|
|
):
|
2018-11-06 15:09:46 +00:00
|
|
|
"""Set up MQTT lock panel through configuration.yaml."""
|
2019-01-14 20:01:42 +00:00
|
|
|
await _async_setup_entity(config, async_add_entities)
|
2018-03-18 16:26:07 +00:00
|
|
|
|
2018-11-06 15:09:46 +00:00
|
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
|
|
"""Set up MQTT lock dynamically through MQTT discovery."""
|
2019-07-31 19:25:30 +00:00
|
|
|
|
2018-11-06 15:09:46 +00:00
|
|
|
async def async_discover(discovery_payload):
|
|
|
|
"""Discover and add an MQTT lock."""
|
2020-02-25 04:46:02 +00:00
|
|
|
discovery_data = discovery_payload.discovery_data
|
2019-01-08 15:45:38 +00:00
|
|
|
try:
|
|
|
|
config = PLATFORM_SCHEMA(discovery_payload)
|
2019-07-31 19:25:30 +00:00
|
|
|
await _async_setup_entity(
|
2020-02-25 04:46:02 +00:00
|
|
|
config, async_add_entities, config_entry, discovery_data
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
2019-01-08 15:45:38 +00:00
|
|
|
except Exception:
|
2020-02-25 04:46:02 +00:00
|
|
|
clear_discovery_hash(hass, discovery_data[ATTR_DISCOVERY_HASH])
|
2019-01-08 15:45:38 +00:00
|
|
|
raise
|
2018-11-06 15:09:46 +00:00
|
|
|
|
|
|
|
async_dispatcher_connect(
|
2019-07-31 19:25:30 +00:00
|
|
|
hass, MQTT_DISCOVERY_NEW.format(lock.DOMAIN, "mqtt"), async_discover
|
|
|
|
)
|
2018-11-06 15:09:46 +00:00
|
|
|
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
async def _async_setup_entity(
|
2020-02-25 04:46:02 +00:00
|
|
|
config, async_add_entities, config_entry=None, discovery_data=None
|
2019-07-31 19:25:30 +00:00
|
|
|
):
|
2018-11-06 15:09:46 +00:00
|
|
|
"""Set up the MQTT Lock platform."""
|
2020-02-25 04:46:02 +00:00
|
|
|
async_add_entities([MqttLock(config, config_entry, discovery_data)])
|
2016-02-28 17:25:28 +00:00
|
|
|
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
class MqttLock(
|
|
|
|
MqttAttributes,
|
|
|
|
MqttAvailability,
|
|
|
|
MqttDiscoveryUpdate,
|
|
|
|
MqttEntityDeviceInfo,
|
|
|
|
LockDevice,
|
|
|
|
):
|
2017-05-02 16:18:47 +00:00
|
|
|
"""Representation of a lock that can be toggled using MQTT."""
|
2016-03-07 21:13:18 +00:00
|
|
|
|
2020-02-25 04:46:02 +00:00
|
|
|
def __init__(self, config, config_entry, discovery_data):
|
2016-03-07 21:13:18 +00:00
|
|
|
"""Initialize the lock."""
|
2019-01-14 20:01:42 +00:00
|
|
|
self._unique_id = config.get(CONF_UNIQUE_ID)
|
|
|
|
self._state = False
|
|
|
|
self._sub_state = None
|
|
|
|
self._optimistic = False
|
|
|
|
|
2019-04-10 20:56:34 +00:00
|
|
|
# Load config
|
|
|
|
self._setup_from_config(config)
|
|
|
|
|
2019-01-14 20:01:42 +00:00
|
|
|
device_config = config.get(CONF_DEVICE)
|
|
|
|
|
2019-01-21 00:41:50 +00:00
|
|
|
MqttAttributes.__init__(self, config)
|
2019-01-15 22:26:37 +00:00
|
|
|
MqttAvailability.__init__(self, config)
|
2020-02-25 04:46:02 +00:00
|
|
|
MqttDiscoveryUpdate.__init__(self, discovery_data, self.discovery_update)
|
2019-01-27 16:42:45 +00:00
|
|
|
MqttEntityDeviceInfo.__init__(self, device_config, config_entry)
|
2017-02-22 08:43:22 +00:00
|
|
|
|
2018-10-01 06:56:50 +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()
|
2019-01-14 20:01:42 +00:00
|
|
|
await self._subscribe_topics()
|
|
|
|
|
|
|
|
async def discovery_update(self, discovery_payload):
|
|
|
|
"""Handle updated discovery message."""
|
|
|
|
config = PLATFORM_SCHEMA(discovery_payload)
|
2019-04-10 20:56:34 +00:00
|
|
|
self._setup_from_config(config)
|
2019-01-21 00:41:50 +00:00
|
|
|
await self.attributes_discovery_update(config)
|
2019-01-14 20:01:42 +00:00
|
|
|
await self.availability_discovery_update(config)
|
2019-01-27 16:42:45 +00:00
|
|
|
await self.device_info_discovery_update(config)
|
2019-01-14 20:01:42 +00:00
|
|
|
await self._subscribe_topics()
|
2019-03-12 21:46:48 +00:00
|
|
|
self.async_write_ha_state()
|
2019-01-14 20:01:42 +00:00
|
|
|
|
2019-04-10 20:56:34 +00:00
|
|
|
def _setup_from_config(self, config):
|
|
|
|
"""(Re)Setup the entity."""
|
|
|
|
self._config = config
|
|
|
|
|
|
|
|
self._optimistic = config[CONF_OPTIMISTIC]
|
|
|
|
|
2019-01-14 20:01:42 +00:00
|
|
|
async def _subscribe_topics(self):
|
|
|
|
"""(Re)Subscribe to topics."""
|
|
|
|
value_template = self._config.get(CONF_VALUE_TEMPLATE)
|
|
|
|
if value_template is not None:
|
|
|
|
value_template.hass = self.hass
|
2016-02-28 17:25:28 +00:00
|
|
|
|
2017-02-22 08:43:22 +00:00
|
|
|
@callback
|
2020-04-01 18:48:32 +00:00
|
|
|
@log_messages(self.hass, self.entity_id)
|
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
|
2019-01-14 20:01:42 +00:00
|
|
|
if value_template is not None:
|
2019-07-31 19:25:30 +00:00
|
|
|
payload = value_template.async_render_with_possible_json_value(payload)
|
2019-12-31 14:24:09 +00:00
|
|
|
if payload == self._config[CONF_STATE_LOCKED]:
|
2016-02-28 17:25:28 +00:00
|
|
|
self._state = True
|
2019-12-31 14:24:09 +00:00
|
|
|
elif payload == self._config[CONF_STATE_UNLOCKED]:
|
2016-02-28 17:25:28 +00:00
|
|
|
self._state = False
|
2017-02-22 08:43:22 +00:00
|
|
|
|
2019-03-12 21:46:48 +00:00
|
|
|
self.async_write_ha_state()
|
2016-02-28 17:25:28 +00:00
|
|
|
|
2019-01-14 20:01:42 +00:00
|
|
|
if self._config.get(CONF_STATE_TOPIC) is None:
|
2016-02-28 17:25:28 +00:00
|
|
|
# Force into optimistic mode.
|
|
|
|
self._optimistic = True
|
|
|
|
else:
|
2019-01-14 20:01:42 +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.get(CONF_STATE_TOPIC),
|
|
|
|
"msg_callback": message_received,
|
|
|
|
"qos": self._config[CONF_QOS],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
2019-01-14 20:01:42 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
)
|
2019-01-21 00:41:50 +00:00
|
|
|
await MqttAttributes.async_will_remove_from_hass(self)
|
2019-01-14 20:01:42 +00:00
|
|
|
await MqttAvailability.async_will_remove_from_hass(self)
|
2020-02-25 04:46:02 +00:00
|
|
|
await MqttDiscoveryUpdate.async_will_remove_from_hass(self)
|
2016-02-28 17:25:28 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def should_poll(self):
|
|
|
|
"""No polling needed."""
|
|
|
|
return False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
2017-05-02 16:18:47 +00:00
|
|
|
"""Return the name of the lock."""
|
2019-01-14 20:01:42 +00:00
|
|
|
return self._config[CONF_NAME]
|
2016-02-28 17:25:28 +00:00
|
|
|
|
2018-12-19 18:26:07 +00:00
|
|
|
@property
|
|
|
|
def unique_id(self):
|
|
|
|
"""Return a unique ID."""
|
|
|
|
return self._unique_id
|
|
|
|
|
2016-02-28 17:25:28 +00:00
|
|
|
@property
|
|
|
|
def is_locked(self):
|
|
|
|
"""Return true if lock is locked."""
|
|
|
|
return self._state
|
|
|
|
|
|
|
|
@property
|
|
|
|
def assumed_state(self):
|
|
|
|
"""Return true if we do optimistic updates."""
|
|
|
|
return self._optimistic
|
|
|
|
|
2018-10-01 06:56:50 +00:00
|
|
|
async def async_lock(self, **kwargs):
|
2017-02-22 08:43:22 +00:00
|
|
|
"""Lock the device.
|
|
|
|
|
|
|
|
This method is a coroutine.
|
|
|
|
"""
|
|
|
|
mqtt.async_publish(
|
2019-07-31 19:25:30 +00:00
|
|
|
self.hass,
|
|
|
|
self._config[CONF_COMMAND_TOPIC],
|
2019-01-14 20:01:42 +00:00
|
|
|
self._config[CONF_PAYLOAD_LOCK],
|
|
|
|
self._config[CONF_QOS],
|
2019-07-31 19:25:30 +00:00
|
|
|
self._config[CONF_RETAIN],
|
|
|
|
)
|
2016-02-28 17:25:28 +00:00
|
|
|
if self._optimistic:
|
2019-03-12 21:46:48 +00:00
|
|
|
# Optimistically assume that the lock has changed state.
|
2016-02-28 17:25:28 +00:00
|
|
|
self._state = True
|
2019-03-12 21:46:48 +00:00
|
|
|
self.async_write_ha_state()
|
2017-02-22 08:43:22 +00:00
|
|
|
|
2018-10-01 06:56:50 +00:00
|
|
|
async def async_unlock(self, **kwargs):
|
2017-02-22 08:43:22 +00:00
|
|
|
"""Unlock the device.
|
2016-02-28 17:25:28 +00:00
|
|
|
|
2017-02-22 08:43:22 +00:00
|
|
|
This method is a coroutine.
|
|
|
|
"""
|
|
|
|
mqtt.async_publish(
|
2019-07-31 19:25:30 +00:00
|
|
|
self.hass,
|
|
|
|
self._config[CONF_COMMAND_TOPIC],
|
2019-01-14 20:01:42 +00:00
|
|
|
self._config[CONF_PAYLOAD_UNLOCK],
|
|
|
|
self._config[CONF_QOS],
|
2019-07-31 19:25:30 +00:00
|
|
|
self._config[CONF_RETAIN],
|
|
|
|
)
|
2016-02-28 17:25:28 +00:00
|
|
|
if self._optimistic:
|
2019-03-12 21:46:48 +00:00
|
|
|
# Optimistically assume that the lock has changed state.
|
2016-02-28 17:25:28 +00:00
|
|
|
self._state = False
|
2019-03-12 21:46:48 +00:00
|
|
|
self.async_write_ha_state()
|