2016-03-15 09:17:09 +00:00
|
|
|
"""
|
|
|
|
Support for Vera devices.
|
|
|
|
|
|
|
|
For more details about this component, please refer to the documentation at
|
|
|
|
https://home-assistant.io/components/vera/
|
|
|
|
"""
|
|
|
|
import logging
|
|
|
|
from collections import defaultdict
|
2016-06-12 00:43:13 +00:00
|
|
|
|
2016-03-15 09:17:09 +00:00
|
|
|
from requests.exceptions import RequestException
|
|
|
|
|
2016-07-20 02:13:33 +00:00
|
|
|
|
|
|
|
from homeassistant.util.dt import utc_from_timestamp
|
|
|
|
from homeassistant.util import convert
|
2016-06-12 00:43:13 +00:00
|
|
|
from homeassistant.helpers import discovery
|
2016-07-20 02:13:33 +00:00
|
|
|
from homeassistant.const import (
|
|
|
|
ATTR_ARMED, ATTR_BATTERY_LEVEL, ATTR_LAST_TRIP_TIME, ATTR_TRIPPED,
|
|
|
|
EVENT_HOMEASSISTANT_STOP)
|
2016-03-15 09:17:09 +00:00
|
|
|
from homeassistant.helpers.entity import Entity
|
|
|
|
|
2016-07-20 02:13:33 +00:00
|
|
|
REQUIREMENTS = ['pyvera==0.2.15']
|
2016-03-15 09:17:09 +00:00
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
DOMAIN = 'vera'
|
|
|
|
|
|
|
|
VERA_CONTROLLER = None
|
|
|
|
|
|
|
|
CONF_EXCLUDE = 'exclude'
|
|
|
|
CONF_LIGHTS = 'lights'
|
|
|
|
|
2016-07-20 02:13:33 +00:00
|
|
|
ATTR_CURRENT_POWER_MWH = "current_power_mwh"
|
2016-03-15 09:17:09 +00:00
|
|
|
|
|
|
|
VERA_DEVICES = defaultdict(list)
|
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=unused-argument, too-many-function-args
|
|
|
|
def setup(hass, base_config):
|
|
|
|
"""Common setup for Vera devices."""
|
|
|
|
global VERA_CONTROLLER
|
|
|
|
import pyvera as veraApi
|
|
|
|
|
|
|
|
config = base_config.get(DOMAIN)
|
|
|
|
base_url = config.get('vera_controller_url')
|
|
|
|
if not base_url:
|
|
|
|
_LOGGER.error(
|
|
|
|
"The required parameter 'vera_controller_url'"
|
|
|
|
" was not found in config"
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
VERA_CONTROLLER, _ = veraApi.init_controller(base_url)
|
|
|
|
|
|
|
|
def stop_subscription(event):
|
|
|
|
"""Shutdown Vera subscriptions and subscription thread on exit."""
|
|
|
|
_LOGGER.info("Shutting down subscriptions.")
|
|
|
|
VERA_CONTROLLER.stop()
|
|
|
|
|
|
|
|
hass.bus.listen_once(EVENT_HOMEASSISTANT_STOP, stop_subscription)
|
|
|
|
|
|
|
|
try:
|
2016-07-20 02:13:33 +00:00
|
|
|
all_devices = VERA_CONTROLLER.get_devices()
|
2016-03-15 09:17:09 +00:00
|
|
|
except RequestException:
|
|
|
|
# There was a network related error connecting to the vera controller.
|
|
|
|
_LOGGER.exception("Error communicating with Vera API")
|
|
|
|
return False
|
|
|
|
|
|
|
|
exclude = config.get(CONF_EXCLUDE, [])
|
|
|
|
if not isinstance(exclude, list):
|
|
|
|
_LOGGER.error("'exclude' must be a list of device_ids")
|
|
|
|
return False
|
|
|
|
|
|
|
|
lights_ids = config.get(CONF_LIGHTS, [])
|
|
|
|
if not isinstance(lights_ids, list):
|
|
|
|
_LOGGER.error("'lights' must be a list of device_ids")
|
|
|
|
return False
|
|
|
|
|
|
|
|
for device in all_devices:
|
|
|
|
if device.device_id in exclude:
|
|
|
|
continue
|
2016-07-20 02:13:33 +00:00
|
|
|
dev_type = map_vera_device(device, lights_ids)
|
2016-03-15 09:17:09 +00:00
|
|
|
if dev_type is None:
|
|
|
|
continue
|
|
|
|
VERA_DEVICES[dev_type].append(device)
|
|
|
|
|
2016-06-30 00:28:20 +00:00
|
|
|
for component in 'binary_sensor', 'sensor', 'light', 'switch', 'lock':
|
2016-06-15 05:51:46 +00:00
|
|
|
discovery.load_platform(hass, component, DOMAIN, {}, base_config)
|
2016-06-12 00:43:13 +00:00
|
|
|
|
2016-03-15 09:17:09 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
2016-07-20 02:13:33 +00:00
|
|
|
def map_vera_device(vera_device, remap):
|
|
|
|
"""Map vera classes to HA types."""
|
|
|
|
# pylint: disable=too-many-return-statements
|
|
|
|
import pyvera as veraApi
|
|
|
|
if isinstance(vera_device, veraApi.VeraDimmer):
|
|
|
|
return 'light'
|
|
|
|
if isinstance(vera_device, veraApi.VeraBinarySensor):
|
|
|
|
return 'binary_sensor'
|
|
|
|
if isinstance(vera_device, veraApi.VeraSensor):
|
|
|
|
return 'sensor'
|
|
|
|
if isinstance(vera_device, veraApi.VeraArmableDevice):
|
|
|
|
return 'switch'
|
|
|
|
if isinstance(vera_device, veraApi.VeraLock):
|
|
|
|
return 'lock'
|
|
|
|
if isinstance(vera_device, veraApi.VeraSwitch):
|
|
|
|
if vera_device.device_id in remap:
|
|
|
|
return 'light'
|
|
|
|
else:
|
|
|
|
return 'switch'
|
|
|
|
# VeraCurtain: NOT SUPPORTED YET
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2016-03-15 09:17:09 +00:00
|
|
|
class VeraDevice(Entity):
|
|
|
|
"""Representation of a Vera devicetity."""
|
|
|
|
|
|
|
|
def __init__(self, vera_device, controller):
|
|
|
|
"""Initialize the device."""
|
|
|
|
self.vera_device = vera_device
|
|
|
|
self.controller = controller
|
|
|
|
self._name = self.vera_device.name
|
|
|
|
|
|
|
|
self.controller.register(vera_device, self._update_callback)
|
|
|
|
self.update()
|
|
|
|
|
|
|
|
def _update_callback(self, _device):
|
|
|
|
self.update_ha_state(True)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
"""Return the name of the device."""
|
|
|
|
return self._name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def should_poll(self):
|
|
|
|
"""No polling needed."""
|
|
|
|
return False
|
2016-07-20 02:13:33 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Return the state attributes of the device."""
|
|
|
|
attr = {}
|
|
|
|
|
|
|
|
if self.vera_device.has_battery:
|
|
|
|
attr[ATTR_BATTERY_LEVEL] = self.vera_device.battery_level + '%'
|
|
|
|
|
|
|
|
if self.vera_device.is_armable:
|
|
|
|
armed = self.vera_device.is_armed
|
|
|
|
attr[ATTR_ARMED] = 'True' if armed else 'False'
|
|
|
|
|
|
|
|
if self.vera_device.is_trippable:
|
|
|
|
last_tripped = self.vera_device.last_trip
|
|
|
|
if last_tripped is not None:
|
|
|
|
utc_time = utc_from_timestamp(int(last_tripped))
|
|
|
|
attr[ATTR_LAST_TRIP_TIME] = utc_time.isoformat()
|
|
|
|
else:
|
|
|
|
attr[ATTR_LAST_TRIP_TIME] = None
|
|
|
|
tripped = self.vera_device.is_tripped
|
|
|
|
attr[ATTR_TRIPPED] = 'True' if tripped else 'False'
|
|
|
|
|
|
|
|
power = self.vera_device.power
|
|
|
|
if power:
|
|
|
|
attr[ATTR_CURRENT_POWER_MWH] = convert(power, float, 0.0) * 1000
|
|
|
|
|
|
|
|
attr['Vera Device Id'] = self.vera_device.vera_device_id
|
|
|
|
|
|
|
|
return attr
|