mirror of https://github.com/home-assistant/core
413 lines
15 KiB
Python
413 lines
15 KiB
Python
"""Support for MQTT valve devices."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from contextlib import suppress
|
|
import logging
|
|
from typing import Any
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components import valve
|
|
from homeassistant.components.valve import (
|
|
DEVICE_CLASSES_SCHEMA,
|
|
ValveEntity,
|
|
ValveEntityFeature,
|
|
ValveState,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import (
|
|
CONF_DEVICE_CLASS,
|
|
CONF_NAME,
|
|
CONF_OPTIMISTIC,
|
|
CONF_VALUE_TEMPLATE,
|
|
)
|
|
from homeassistant.core import HomeAssistant, callback
|
|
import homeassistant.helpers.config_validation as cv
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import ConfigType, VolSchemaType
|
|
from homeassistant.util.json import JSON_DECODE_EXCEPTIONS, json_loads
|
|
from homeassistant.util.percentage import (
|
|
percentage_to_ranged_value,
|
|
ranged_value_to_percentage,
|
|
)
|
|
|
|
from . import subscription
|
|
from .config import MQTT_BASE_SCHEMA
|
|
from .const import (
|
|
CONF_COMMAND_TEMPLATE,
|
|
CONF_COMMAND_TOPIC,
|
|
CONF_PAYLOAD_CLOSE,
|
|
CONF_PAYLOAD_OPEN,
|
|
CONF_PAYLOAD_STOP,
|
|
CONF_POSITION_CLOSED,
|
|
CONF_POSITION_OPEN,
|
|
CONF_RETAIN,
|
|
CONF_STATE_CLOSED,
|
|
CONF_STATE_CLOSING,
|
|
CONF_STATE_OPEN,
|
|
CONF_STATE_OPENING,
|
|
CONF_STATE_TOPIC,
|
|
DEFAULT_OPTIMISTIC,
|
|
DEFAULT_PAYLOAD_CLOSE,
|
|
DEFAULT_PAYLOAD_OPEN,
|
|
DEFAULT_POSITION_CLOSED,
|
|
DEFAULT_POSITION_OPEN,
|
|
DEFAULT_RETAIN,
|
|
PAYLOAD_NONE,
|
|
)
|
|
from .entity import MqttEntity, async_setup_entity_entry_helper
|
|
from .models import MqttCommandTemplate, MqttValueTemplate, ReceiveMessage
|
|
from .schemas import MQTT_ENTITY_COMMON_SCHEMA
|
|
from .util import valid_publish_topic, valid_subscribe_topic
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
PARALLEL_UPDATES = 0
|
|
|
|
CONF_REPORTS_POSITION = "reports_position"
|
|
|
|
DEFAULT_NAME = "MQTT Valve"
|
|
|
|
MQTT_VALVE_ATTRIBUTES_BLOCKED = frozenset(
|
|
{
|
|
valve.ATTR_CURRENT_POSITION,
|
|
}
|
|
)
|
|
|
|
NO_POSITION_KEYS = (
|
|
CONF_PAYLOAD_CLOSE,
|
|
CONF_PAYLOAD_OPEN,
|
|
CONF_STATE_CLOSED,
|
|
CONF_STATE_OPEN,
|
|
)
|
|
|
|
DEFAULTS = {
|
|
CONF_PAYLOAD_CLOSE: DEFAULT_PAYLOAD_CLOSE,
|
|
CONF_PAYLOAD_OPEN: DEFAULT_PAYLOAD_OPEN,
|
|
CONF_STATE_OPEN: ValveState.OPEN,
|
|
CONF_STATE_CLOSED: ValveState.CLOSED,
|
|
}
|
|
|
|
RESET_CLOSING_OPENING = "reset_opening_closing"
|
|
|
|
|
|
def _validate_and_add_defaults(config: ConfigType) -> ConfigType:
|
|
"""Validate config options and set defaults."""
|
|
if config[CONF_REPORTS_POSITION] and any(key in config for key in NO_POSITION_KEYS):
|
|
raise vol.Invalid(
|
|
"Options `payload_open`, `payload_close`, `state_open` and "
|
|
"`state_closed` are not allowed if the valve reports a position."
|
|
)
|
|
return {**DEFAULTS, **config}
|
|
|
|
|
|
_PLATFORM_SCHEMA_BASE = MQTT_BASE_SCHEMA.extend(
|
|
{
|
|
vol.Optional(CONF_COMMAND_TOPIC): valid_publish_topic,
|
|
vol.Optional(CONF_COMMAND_TEMPLATE): cv.template,
|
|
vol.Optional(CONF_DEVICE_CLASS): vol.Any(DEVICE_CLASSES_SCHEMA, None),
|
|
vol.Optional(CONF_NAME): vol.Any(cv.string, None),
|
|
vol.Optional(CONF_OPTIMISTIC, default=DEFAULT_OPTIMISTIC): cv.boolean,
|
|
vol.Optional(CONF_PAYLOAD_CLOSE): vol.Any(cv.string, None),
|
|
vol.Optional(CONF_PAYLOAD_OPEN): vol.Any(cv.string, None),
|
|
vol.Optional(CONF_PAYLOAD_STOP): vol.Any(cv.string, None),
|
|
vol.Optional(CONF_POSITION_CLOSED, default=DEFAULT_POSITION_CLOSED): int,
|
|
vol.Optional(CONF_POSITION_OPEN, default=DEFAULT_POSITION_OPEN): int,
|
|
vol.Optional(CONF_REPORTS_POSITION, default=False): cv.boolean,
|
|
vol.Optional(CONF_RETAIN, default=DEFAULT_RETAIN): cv.boolean,
|
|
vol.Optional(CONF_STATE_CLOSED): cv.string,
|
|
vol.Optional(CONF_STATE_CLOSING, default=ValveState.CLOSING): cv.string,
|
|
vol.Optional(CONF_STATE_OPEN): cv.string,
|
|
vol.Optional(CONF_STATE_OPENING, default=ValveState.OPENING): cv.string,
|
|
vol.Optional(CONF_STATE_TOPIC): valid_subscribe_topic,
|
|
vol.Optional(CONF_VALUE_TEMPLATE): cv.template,
|
|
}
|
|
).extend(MQTT_ENTITY_COMMON_SCHEMA.schema)
|
|
|
|
PLATFORM_SCHEMA_MODERN = vol.All(_PLATFORM_SCHEMA_BASE, _validate_and_add_defaults)
|
|
|
|
DISCOVERY_SCHEMA = vol.All(
|
|
_PLATFORM_SCHEMA_BASE.extend({}, extra=vol.REMOVE_EXTRA),
|
|
_validate_and_add_defaults,
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up MQTT valve through YAML and through MQTT discovery."""
|
|
async_setup_entity_entry_helper(
|
|
hass,
|
|
config_entry,
|
|
MqttValve,
|
|
valve.DOMAIN,
|
|
async_add_entities,
|
|
DISCOVERY_SCHEMA,
|
|
PLATFORM_SCHEMA_MODERN,
|
|
)
|
|
|
|
|
|
class MqttValve(MqttEntity, ValveEntity):
|
|
"""Representation of a valve that can be controlled using MQTT."""
|
|
|
|
_attr_is_closed: bool | None = None
|
|
_attributes_extra_blocked: frozenset[str] = MQTT_VALVE_ATTRIBUTES_BLOCKED
|
|
_default_name = DEFAULT_NAME
|
|
_entity_id_format: str = valve.ENTITY_ID_FORMAT
|
|
_optimistic: bool
|
|
_range: tuple[int, int]
|
|
_tilt_optimistic: bool
|
|
|
|
@staticmethod
|
|
def config_schema() -> VolSchemaType:
|
|
"""Return the config schema."""
|
|
return DISCOVERY_SCHEMA
|
|
|
|
def _setup_from_config(self, config: ConfigType) -> None:
|
|
"""Set up valve from config."""
|
|
self._attr_reports_position = config[CONF_REPORTS_POSITION]
|
|
self._range = (
|
|
self._config[CONF_POSITION_CLOSED] + 1,
|
|
self._config[CONF_POSITION_OPEN],
|
|
)
|
|
no_state_topic = config.get(CONF_STATE_TOPIC) is None
|
|
self._optimistic = config[CONF_OPTIMISTIC] or no_state_topic
|
|
self._attr_assumed_state = self._optimistic
|
|
|
|
template_config_attributes = {
|
|
"position_open": config[CONF_POSITION_OPEN],
|
|
"position_closed": config[CONF_POSITION_CLOSED],
|
|
}
|
|
|
|
self._value_template = MqttValueTemplate(
|
|
config.get(CONF_VALUE_TEMPLATE), entity=self
|
|
).async_render_with_possible_json_value
|
|
|
|
self._command_template = MqttCommandTemplate(
|
|
config.get(CONF_COMMAND_TEMPLATE), entity=self
|
|
).async_render
|
|
|
|
self._value_template = MqttValueTemplate(
|
|
config.get(CONF_VALUE_TEMPLATE),
|
|
entity=self,
|
|
config_attributes=template_config_attributes,
|
|
).async_render_with_possible_json_value
|
|
|
|
self._attr_device_class = config.get(CONF_DEVICE_CLASS)
|
|
|
|
supported_features = ValveEntityFeature(0)
|
|
if CONF_COMMAND_TOPIC in config:
|
|
if config[CONF_PAYLOAD_OPEN] is not None:
|
|
supported_features |= ValveEntityFeature.OPEN
|
|
if config[CONF_PAYLOAD_CLOSE] is not None:
|
|
supported_features |= ValveEntityFeature.CLOSE
|
|
|
|
if config[CONF_REPORTS_POSITION]:
|
|
supported_features |= ValveEntityFeature.SET_POSITION
|
|
if config.get(CONF_PAYLOAD_STOP) is not None:
|
|
supported_features |= ValveEntityFeature.STOP
|
|
|
|
self._attr_supported_features = supported_features
|
|
|
|
@callback
|
|
def _update_state(self, state: str | None) -> None:
|
|
"""Update the valve state properties."""
|
|
self._attr_is_opening = state == ValveState.OPENING
|
|
self._attr_is_closing = state == ValveState.CLOSING
|
|
if self.reports_position:
|
|
return
|
|
if state is None:
|
|
self._attr_is_closed = None
|
|
else:
|
|
self._attr_is_closed = state == ValveState.CLOSED
|
|
|
|
@callback
|
|
def _process_binary_valve_update(
|
|
self, msg: ReceiveMessage, state_payload: str
|
|
) -> None:
|
|
"""Process an update for a valve that does not report the position."""
|
|
state: str | None = None
|
|
if state_payload == self._config[CONF_STATE_OPENING]:
|
|
state = ValveState.OPENING
|
|
elif state_payload == self._config[CONF_STATE_CLOSING]:
|
|
state = ValveState.CLOSING
|
|
elif state_payload == self._config[CONF_STATE_OPEN]:
|
|
state = ValveState.OPEN
|
|
elif state_payload == self._config[CONF_STATE_CLOSED]:
|
|
state = ValveState.CLOSED
|
|
elif state_payload == PAYLOAD_NONE:
|
|
state = None
|
|
else:
|
|
_LOGGER.warning(
|
|
"Payload received on topic '%s' is not one of "
|
|
"[open, closed, opening, closing], got: %s",
|
|
msg.topic,
|
|
state_payload,
|
|
)
|
|
return
|
|
self._update_state(state)
|
|
|
|
@callback
|
|
def _process_position_valve_update(
|
|
self, msg: ReceiveMessage, position_payload: str, state_payload: str
|
|
) -> None:
|
|
"""Process an update for a valve that reports the position."""
|
|
state: str | None = None
|
|
position_set: bool = False
|
|
if state_payload == self._config[CONF_STATE_OPENING]:
|
|
state = ValveState.OPENING
|
|
elif state_payload == self._config[CONF_STATE_CLOSING]:
|
|
state = ValveState.CLOSING
|
|
elif state_payload == PAYLOAD_NONE:
|
|
self._attr_current_valve_position = None
|
|
return
|
|
if state is None or position_payload != state_payload:
|
|
try:
|
|
percentage_payload = ranged_value_to_percentage(
|
|
self._range, float(position_payload)
|
|
)
|
|
except ValueError:
|
|
_LOGGER.warning(
|
|
"Ignoring non numeric payload '%s' received on topic '%s'",
|
|
position_payload,
|
|
msg.topic,
|
|
)
|
|
else:
|
|
percentage_payload = min(max(percentage_payload, 0), 100)
|
|
self._attr_current_valve_position = percentage_payload
|
|
# Reset closing and opening if the valve is fully opened or fully closed
|
|
if state is None and percentage_payload in (0, 100):
|
|
state = RESET_CLOSING_OPENING
|
|
position_set = True
|
|
if state_payload and state is None and not position_set:
|
|
_LOGGER.warning(
|
|
"Payload received on topic '%s' is not one of "
|
|
"[opening, closing], got: %s",
|
|
msg.topic,
|
|
state_payload,
|
|
)
|
|
return
|
|
if state is None:
|
|
return
|
|
self._update_state(state)
|
|
|
|
@callback
|
|
def _state_message_received(self, msg: ReceiveMessage) -> None:
|
|
"""Handle new MQTT state messages."""
|
|
payload = self._value_template(msg.payload)
|
|
payload_dict: Any = None
|
|
position_payload: Any = payload
|
|
state_payload: Any = payload
|
|
|
|
if not payload:
|
|
_LOGGER.debug("Ignoring empty state message from '%s'", msg.topic)
|
|
return
|
|
|
|
with suppress(*JSON_DECODE_EXCEPTIONS):
|
|
payload_dict = json_loads(payload)
|
|
if isinstance(payload_dict, dict):
|
|
if self.reports_position and "position" not in payload_dict:
|
|
_LOGGER.warning(
|
|
"Missing required `position` attribute in json payload "
|
|
"on topic '%s', got: %s",
|
|
msg.topic,
|
|
payload,
|
|
)
|
|
return
|
|
if not self.reports_position and "state" not in payload_dict:
|
|
_LOGGER.warning(
|
|
"Missing required `state` attribute in json payload "
|
|
" on topic '%s', got: %s",
|
|
msg.topic,
|
|
payload,
|
|
)
|
|
return
|
|
position_payload = payload_dict.get("position")
|
|
state_payload = payload_dict.get("state")
|
|
|
|
if self._config[CONF_REPORTS_POSITION]:
|
|
self._process_position_valve_update(msg, position_payload, state_payload)
|
|
else:
|
|
self._process_binary_valve_update(msg, state_payload)
|
|
|
|
@callback
|
|
def _prepare_subscribe_topics(self) -> None:
|
|
"""(Re)Subscribe to topics."""
|
|
self.add_subscription(
|
|
CONF_STATE_TOPIC,
|
|
self._state_message_received,
|
|
{
|
|
"_attr_current_valve_position",
|
|
"_attr_is_closed",
|
|
"_attr_is_closing",
|
|
"_attr_is_opening",
|
|
},
|
|
)
|
|
|
|
async def _subscribe_topics(self) -> None:
|
|
"""(Re)Subscribe to topics."""
|
|
subscription.async_subscribe_topics_internal(self.hass, self._sub_state)
|
|
|
|
async def async_open_valve(self) -> None:
|
|
"""Move the valve up.
|
|
|
|
This method is a coroutine.
|
|
"""
|
|
payload = self._command_template(
|
|
self._config.get(CONF_PAYLOAD_OPEN, DEFAULT_PAYLOAD_OPEN)
|
|
)
|
|
await self.async_publish_with_config(self._config[CONF_COMMAND_TOPIC], payload)
|
|
if self._optimistic:
|
|
# Optimistically assume that valve has changed state.
|
|
self._update_state(ValveState.OPEN)
|
|
self.async_write_ha_state()
|
|
|
|
async def async_close_valve(self) -> None:
|
|
"""Move the valve down.
|
|
|
|
This method is a coroutine.
|
|
"""
|
|
payload = self._command_template(
|
|
self._config.get(CONF_PAYLOAD_CLOSE, DEFAULT_PAYLOAD_CLOSE)
|
|
)
|
|
await self.async_publish_with_config(self._config[CONF_COMMAND_TOPIC], payload)
|
|
if self._optimistic:
|
|
# Optimistically assume that valve has changed state.
|
|
self._update_state(ValveState.CLOSED)
|
|
self.async_write_ha_state()
|
|
|
|
async def async_stop_valve(self) -> None:
|
|
"""Stop valve positioning.
|
|
|
|
This method is a coroutine.
|
|
"""
|
|
payload = self._command_template(self._config[CONF_PAYLOAD_STOP])
|
|
await self.async_publish_with_config(self._config[CONF_COMMAND_TOPIC], payload)
|
|
|
|
async def async_set_valve_position(self, position: int) -> None:
|
|
"""Move the valve to a specific position."""
|
|
percentage_position = position
|
|
scaled_position = round(
|
|
percentage_to_ranged_value(self._range, percentage_position)
|
|
)
|
|
variables = {
|
|
"position": percentage_position,
|
|
"position_open": self._config[CONF_POSITION_OPEN],
|
|
"position_closed": self._config[CONF_POSITION_CLOSED],
|
|
}
|
|
rendered_position = self._command_template(scaled_position, variables=variables)
|
|
await self.async_publish_with_config(
|
|
self._config[CONF_COMMAND_TOPIC], rendered_position
|
|
)
|
|
if self._optimistic:
|
|
self._update_state(
|
|
ValveState.CLOSED
|
|
if percentage_position == self._config[CONF_POSITION_CLOSED]
|
|
else ValveState.OPEN
|
|
)
|
|
self._attr_current_valve_position = percentage_position
|
|
self.async_write_ha_state()
|