113 lines
2.6 KiB
Python
113 lines
2.6 KiB
Python
"""Constants used by multiple MQTT modules."""
|
|
from homeassistant.const import CONF_PAYLOAD, Platform
|
|
|
|
ATTR_DISCOVERY_HASH = "discovery_hash"
|
|
ATTR_DISCOVERY_PAYLOAD = "discovery_payload"
|
|
ATTR_DISCOVERY_TOPIC = "discovery_topic"
|
|
ATTR_PAYLOAD = "payload"
|
|
ATTR_QOS = "qos"
|
|
ATTR_RETAIN = "retain"
|
|
ATTR_TOPIC = "topic"
|
|
|
|
CONF_AVAILABILITY = "availability"
|
|
CONF_BROKER = "broker"
|
|
CONF_BIRTH_MESSAGE = "birth_message"
|
|
CONF_COMMAND_TEMPLATE = "command_template"
|
|
CONF_COMMAND_TOPIC = "command_topic"
|
|
CONF_DISCOVERY_PREFIX = "discovery_prefix"
|
|
CONF_ENCODING = "encoding"
|
|
CONF_KEEPALIVE = "keepalive"
|
|
CONF_QOS = ATTR_QOS
|
|
CONF_RETAIN = ATTR_RETAIN
|
|
CONF_STATE_TOPIC = "state_topic"
|
|
CONF_STATE_VALUE_TEMPLATE = "state_value_template"
|
|
CONF_TOPIC = "topic"
|
|
CONF_WILL_MESSAGE = "will_message"
|
|
|
|
CONF_CERTIFICATE = "certificate"
|
|
CONF_CLIENT_KEY = "client_key"
|
|
CONF_CLIENT_CERT = "client_cert"
|
|
CONF_TLS_INSECURE = "tls_insecure"
|
|
CONF_TLS_VERSION = "tls_version"
|
|
|
|
DATA_MQTT = "mqtt"
|
|
MQTT_DATA_DEVICE_TRACKER_LEGACY = "mqtt_device_tracker_legacy"
|
|
|
|
DEFAULT_PREFIX = "homeassistant"
|
|
DEFAULT_BIRTH_WILL_TOPIC = DEFAULT_PREFIX + "/status"
|
|
DEFAULT_DISCOVERY = True
|
|
DEFAULT_ENCODING = "utf-8"
|
|
DEFAULT_QOS = 0
|
|
DEFAULT_PAYLOAD_AVAILABLE = "online"
|
|
DEFAULT_PAYLOAD_NOT_AVAILABLE = "offline"
|
|
DEFAULT_PORT = 1883
|
|
DEFAULT_RETAIN = False
|
|
|
|
DEFAULT_BIRTH = {
|
|
ATTR_TOPIC: DEFAULT_BIRTH_WILL_TOPIC,
|
|
CONF_PAYLOAD: DEFAULT_PAYLOAD_AVAILABLE,
|
|
ATTR_QOS: DEFAULT_QOS,
|
|
ATTR_RETAIN: DEFAULT_RETAIN,
|
|
}
|
|
|
|
DEFAULT_WILL = {
|
|
ATTR_TOPIC: DEFAULT_BIRTH_WILL_TOPIC,
|
|
CONF_PAYLOAD: DEFAULT_PAYLOAD_NOT_AVAILABLE,
|
|
ATTR_QOS: DEFAULT_QOS,
|
|
ATTR_RETAIN: DEFAULT_RETAIN,
|
|
}
|
|
|
|
DOMAIN = "mqtt"
|
|
|
|
MQTT_CONNECTED = "mqtt_connected"
|
|
MQTT_DISCONNECTED = "mqtt_disconnected"
|
|
|
|
PAYLOAD_EMPTY_JSON = "{}"
|
|
PAYLOAD_NONE = "None"
|
|
|
|
PROTOCOL_31 = "3.1"
|
|
PROTOCOL_311 = "3.1.1"
|
|
|
|
DEFAULT_PROTOCOL = PROTOCOL_311
|
|
|
|
PLATFORMS = [
|
|
Platform.ALARM_CONTROL_PANEL,
|
|
Platform.BINARY_SENSOR,
|
|
Platform.BUTTON,
|
|
Platform.CAMERA,
|
|
Platform.CLIMATE,
|
|
Platform.DEVICE_TRACKER,
|
|
Platform.COVER,
|
|
Platform.FAN,
|
|
Platform.HUMIDIFIER,
|
|
Platform.LIGHT,
|
|
Platform.LOCK,
|
|
Platform.NUMBER,
|
|
Platform.SELECT,
|
|
Platform.SCENE,
|
|
Platform.SENSOR,
|
|
Platform.SIREN,
|
|
Platform.SWITCH,
|
|
Platform.VACUUM,
|
|
]
|
|
|
|
RELOADABLE_PLATFORMS = [
|
|
Platform.ALARM_CONTROL_PANEL,
|
|
Platform.BINARY_SENSOR,
|
|
Platform.BUTTON,
|
|
Platform.CAMERA,
|
|
Platform.CLIMATE,
|
|
Platform.COVER,
|
|
Platform.FAN,
|
|
Platform.HUMIDIFIER,
|
|
Platform.LIGHT,
|
|
Platform.LOCK,
|
|
Platform.NUMBER,
|
|
Platform.SCENE,
|
|
Platform.SELECT,
|
|
Platform.SENSOR,
|
|
Platform.SIREN,
|
|
Platform.SWITCH,
|
|
Platform.VACUUM,
|
|
]
|