core/homeassistant/components/netio/switch.py

194 lines
5.3 KiB
Python
Raw Normal View History

"""The Netio switch component."""
import logging
from collections import namedtuple
from datetime import timedelta
2016-09-11 07:22:08 +00:00
import voluptuous as vol
from homeassistant.core import callback
from homeassistant import util
from homeassistant.components.http import HomeAssistantView
2016-09-11 07:22:08 +00:00
from homeassistant.const import (
2019-07-31 19:25:30 +00:00
CONF_HOST,
CONF_PORT,
CONF_USERNAME,
CONF_PASSWORD,
EVENT_HOMEASSISTANT_STOP,
STATE_ON,
)
from homeassistant.components.switch import SwitchDevice, PLATFORM_SCHEMA
2016-09-11 07:22:08 +00:00
import homeassistant.helpers.config_validation as cv
_LOGGER = logging.getLogger(__name__)
2019-07-31 19:25:30 +00:00
ATTR_START_DATE = "start_date"
ATTR_TOTAL_CONSUMPTION_KWH = "total_energy_kwh"
2019-07-31 19:25:30 +00:00
CONF_OUTLETS = "outlets"
2016-09-11 07:22:08 +00:00
DEFAULT_PORT = 1234
2019-07-31 19:25:30 +00:00
DEFAULT_USERNAME = "admin"
Device = namedtuple("device", ["netio", "entities"])
DEVICES = {}
2016-09-11 07:22:08 +00:00
MIN_TIME_BETWEEN_SCANS = timedelta(seconds=10)
2016-09-11 07:22:08 +00:00
REQ_CONF = [CONF_HOST, CONF_OUTLETS]
2019-07-31 19:25:30 +00:00
URL_API_NETIO_EP = "/api/netio/{host}"
2016-09-11 07:22:08 +00:00
2019-07-31 19:25:30 +00:00
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
{
vol.Required(CONF_HOST): cv.string,
vol.Required(CONF_PORT, default=DEFAULT_PORT): cv.port,
vol.Required(CONF_USERNAME, default=DEFAULT_USERNAME): cv.string,
vol.Required(CONF_PASSWORD): cv.string,
vol.Optional(CONF_OUTLETS): {cv.string: cv.string},
}
)
2016-09-11 07:22:08 +00:00
def setup_platform(hass, config, add_entities, discovery_info=None):
"""Set up the Netio platform."""
from pynetio import Netio
2016-09-11 07:22:08 +00:00
host = config.get(CONF_HOST)
username = config.get(CONF_USERNAME)
password = config.get(CONF_PASSWORD)
port = config.get(CONF_PORT)
if not DEVICES:
hass.http.register_view(NetioApiView)
2016-09-11 07:22:08 +00:00
dev = Netio(host, port, username, password)
2016-09-11 07:22:08 +00:00
DEVICES[host] = Device(dev, [])
# Throttle the update for all Netio switches of one Netio
2016-09-11 07:22:08 +00:00
dev.update = util.Throttle(MIN_TIME_BETWEEN_SCANS)(dev.update)
2016-09-11 07:22:08 +00:00
for key in config[CONF_OUTLETS]:
2019-07-31 19:25:30 +00:00
switch = NetioSwitch(DEVICES[host].netio, key, config[CONF_OUTLETS][key])
2016-09-11 07:22:08 +00:00
DEVICES[host].entities.append(switch)
add_entities(DEVICES[host].entities)
hass.bus.listen_once(EVENT_HOMEASSISTANT_STOP, dispose)
return True
def dispose(event):
"""Close connections to Netio Devices."""
for _, value in DEVICES.items():
value.netio.stop()
class NetioApiView(HomeAssistantView):
"""WSGI handler class."""
url = URL_API_NETIO_EP
2019-07-31 19:25:30 +00:00
name = "api:netio"
@callback
def get(self, request, host):
"""Request handler."""
2019-07-31 19:25:30 +00:00
hass = request.app["hass"]
data = request.query
2019-07-31 19:25:30 +00:00
states, consumptions, cumulated_consumptions, start_dates = [], [], [], []
for i in range(1, 5):
2019-07-31 19:25:30 +00:00
out = "output%d" % i
states.append(data.get("%s_state" % out) == STATE_ON)
consumptions.append(float(data.get("%s_consumption" % out, 0)))
cumulated_consumptions.append(
2019-07-31 19:25:30 +00:00
float(data.get("%s_cumulatedConsumption" % out, 0)) / 1000
)
start_dates.append(data.get("%s_consumptionStart" % out, ""))
_LOGGER.debug(
"%s: %s, %s, %s since %s",
host,
states,
consumptions,
cumulated_consumptions,
start_dates,
)
ndev = DEVICES[host].netio
ndev.consumptions = consumptions
ndev.cumulated_consumptions = cumulated_consumptions
ndev.states = states
ndev.start_dates = start_dates
for dev in DEVICES[host].entities:
hass.async_create_task(dev.async_update_ha_state())
return self.json(True)
class NetioSwitch(SwitchDevice):
"""Provide a Netio linked switch."""
def __init__(self, netio, outlet, name):
2017-05-03 08:11:39 +00:00
"""Initialize the Netio switch."""
self._name = name
self.outlet = outlet
self.netio = netio
@property
def name(self):
"""Return the device's name."""
return self._name
@property
def available(self):
"""Return true if entity is available."""
2019-07-31 19:25:30 +00:00
return not hasattr(self, "telnet")
def turn_on(self, **kwargs):
"""Turn switch on."""
self._set(True)
def turn_off(self, **kwargs):
"""Turn switch off."""
self._set(False)
def _set(self, value):
2019-07-31 19:25:30 +00:00
val = list("uuuu")
val[int(self.outlet) - 1] = "1" if value else "0"
self.netio.get("port list %s" % "".join(val))
self.netio.states[int(self.outlet) - 1] = value
self.schedule_update_ha_state()
@property
def is_on(self):
"""Return the switch's status."""
return self.netio.states[int(self.outlet) - 1]
def update(self):
"""Update the state."""
self.netio.update()
@property
def state_attributes(self):
"""Return optional state attributes."""
2016-09-11 07:22:08 +00:00
return {
ATTR_TOTAL_CONSUMPTION_KWH: self.cumulated_consumption_kwh,
2019-07-31 19:25:30 +00:00
ATTR_START_DATE: self.start_date.split("|")[0],
2016-09-11 07:22:08 +00:00
}
@property
def current_power_w(self):
"""Return actual power."""
return self.netio.consumptions[int(self.outlet) - 1]
@property
def cumulated_consumption_kwh(self):
"""Return the total enerygy consumption since start_date."""
return self.netio.cumulated_consumptions[int(self.outlet) - 1]
@property
def start_date(self):
"""Point in time when the energy accumulation started."""
return self.netio.start_dates[int(self.outlet) - 1]