core/homeassistant/components/shiftr/__init__.py

83 lines
2.1 KiB
Python
Raw Normal View History

"""Support for Shiftr.io."""
import logging
import voluptuous as vol
import homeassistant.helpers.config_validation as cv
from homeassistant.const import (
2019-07-31 19:25:30 +00:00
CONF_PASSWORD,
CONF_USERNAME,
EVENT_STATE_CHANGED,
EVENT_HOMEASSISTANT_STOP,
)
from homeassistant.helpers import state as state_helper
_LOGGER = logging.getLogger(__name__)
2019-07-31 19:25:30 +00:00
DOMAIN = "shiftr"
2019-07-31 19:25:30 +00:00
SHIFTR_BROKER = "broker.shiftr.io"
2019-07-31 19:25:30 +00:00
CONFIG_SCHEMA = vol.Schema(
{
DOMAIN: vol.Schema(
{
vol.Required(CONF_USERNAME): cv.string,
vol.Required(CONF_PASSWORD): cv.string,
}
)
},
extra=vol.ALLOW_EXTRA,
)
def setup(hass, config):
"""Initialize the Shiftr.io MQTT consumer."""
import paho.mqtt.client as mqtt
2019-07-31 19:25:30 +00:00
conf = config[DOMAIN]
username = conf.get(CONF_USERNAME)
password = conf.get(CONF_PASSWORD)
2019-07-31 19:25:30 +00:00
client_id = "HomeAssistant"
port = 1883
keepalive = 600
mqttc = mqtt.Client(client_id, protocol=mqtt.MQTTv311)
mqttc.username_pw_set(username, password=password)
mqttc.connect(SHIFTR_BROKER, port=port, keepalive=keepalive)
def stop_shiftr(event):
"""Stop the Shiftr.io MQTT component."""
mqttc.disconnect()
hass.bus.listen_once(EVENT_HOMEASSISTANT_STOP, stop_shiftr)
def shiftr_event_listener(event):
"""Listen for new messages on the bus and sends them to Shiftr.io."""
2019-07-31 19:25:30 +00:00
state = event.data.get("new_state")
topic = state.entity_id.replace(".", "/")
try:
_state = state_helper.state_as_number(state)
except ValueError:
_state = state.state
try:
mqttc.publish(topic, _state, qos=0, retain=False)
if state.attributes:
for attribute, data in state.attributes.items():
mqttc.publish(
2019-07-31 19:25:30 +00:00
"/{}/{}".format(topic, attribute),
str(data),
qos=0,
retain=False,
)
except RuntimeError:
pass
hass.bus.listen(EVENT_STATE_CHANGED, shiftr_event_listener)
return True