core/homeassistant/components/switch/vera.py

153 lines
4.5 KiB
Python
Raw Normal View History

2015-03-08 14:14:44 +00:00
"""
2015-08-08 17:09:37 +00:00
homeassistant.components.switch.vera
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2015-03-08 14:14:44 +00:00
Support for Vera switches.
2015-10-20 20:08:20 +00:00
For more details about this platform, please refer to the documentation at
2015-11-09 12:12:18 +00:00
https://home-assistant.io/components/switch.vera/
"""
2015-03-02 10:09:00 +00:00
import logging
from requests.exceptions import RequestException
import homeassistant.util.dt as dt_util
2015-03-02 10:09:00 +00:00
from homeassistant.components.switch import SwitchDevice
from homeassistant.const import (
2015-12-30 19:44:02 +00:00
ATTR_BATTERY_LEVEL,
ATTR_TRIPPED,
ATTR_ARMED,
ATTR_LAST_TRIP_TIME,
EVENT_HOMEASSISTANT_STOP,
STATE_ON,
STATE_OFF)
2015-09-09 03:11:25 +00:00
2016-01-15 11:45:17 +00:00
REQUIREMENTS = ['pyvera==0.2.5']
2015-03-02 10:09:00 +00:00
_LOGGER = logging.getLogger(__name__)
2015-03-02 10:09:00 +00:00
2015-03-08 14:58:11 +00:00
2015-03-08 14:14:44 +00:00
# pylint: disable=unused-argument
2015-03-02 10:09:00 +00:00
def get_devices(hass, config):
""" Find and return Vera switches. """
2015-09-09 03:11:25 +00:00
import pyvera as veraApi
2015-03-02 10:09:00 +00:00
2015-03-08 20:03:56 +00:00
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
device_data = config.get('device_data', {})
2015-03-02 10:09:00 +00:00
2015-12-30 19:44:02 +00:00
vera_controller, created = veraApi.init_controller(base_url)
if created:
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)
2015-03-08 20:03:56 +00:00
devices = []
try:
devices = vera_controller.get_devices([
'Switch', 'Armable Sensor', 'On/Off Switch'])
except RequestException:
2015-08-08 17:09:37 +00:00
# There was a network related error connecting to the vera controller.
_LOGGER.exception("Error communicating with Vera API")
2015-03-02 10:09:00 +00:00
return False
2015-03-08 20:03:56 +00:00
vera_switches = []
for device in devices:
extra_data = device_data.get(device.device_id, {})
exclude = extra_data.get('exclude', False)
2015-03-08 20:03:56 +00:00
if exclude is not True:
2015-12-30 19:44:02 +00:00
vera_switches.append(
VeraSwitch(device, vera_controller, extra_data))
2015-03-08 20:03:56 +00:00
2015-03-02 10:09:00 +00:00
return vera_switches
2015-03-08 14:58:11 +00:00
def setup_platform(hass, config, add_devices, discovery_info=None):
2015-03-08 14:14:44 +00:00
""" Find and return Vera lights. """
add_devices(get_devices(hass, config))
2015-03-02 10:09:00 +00:00
2015-03-08 14:58:11 +00:00
class VeraSwitch(SwitchDevice):
2015-08-08 17:09:37 +00:00
""" Represents a Vera Switch. """
2015-03-02 10:09:00 +00:00
2015-12-30 19:44:02 +00:00
def __init__(self, vera_device, controller, extra_data=None):
2015-03-02 10:09:00 +00:00
self.vera_device = vera_device
self.extra_data = extra_data
2015-12-30 19:44:02 +00:00
self.controller = controller
2015-03-08 20:15:41 +00:00
if self.extra_data and self.extra_data.get('name'):
self._name = self.extra_data.get('name')
else:
self._name = self.vera_device.name
self._state = STATE_OFF
2015-03-02 10:09:00 +00:00
2016-01-09 22:58:28 +00:00
self.controller.register(vera_device, self._update_callback)
2015-12-30 19:44:02 +00:00
def _update_callback(self, _device):
""" Called by the vera device callback to update state. """
if self.vera_device.is_switched_on():
self._state = STATE_ON
else:
self._state = STATE_OFF
self.update_ha_state()
2015-12-30 19:44:02 +00:00
2015-03-02 10:09:00 +00:00
@property
def name(self):
""" Get the mame of the switch. """
2015-03-08 20:15:41 +00:00
return self._name
2015-03-02 10:09:00 +00:00
@property
def state_attributes(self):
attr = super().state_attributes or {}
2015-03-02 10:09:00 +00:00
if self.vera_device.has_battery:
2015-03-08 20:11:35 +00:00
attr[ATTR_BATTERY_LEVEL] = self.vera_device.battery_level + '%'
2015-03-02 10:09:00 +00:00
if self.vera_device.is_armable:
armed = self.vera_device.get_value('Armed')
attr[ATTR_ARMED] = 'True' if armed == '1' else 'False'
2015-03-02 10:09:00 +00:00
if self.vera_device.is_trippable:
last_tripped = self.vera_device.get_value('LastTrip')
if last_tripped is not None:
utc_time = dt_util.utc_from_timestamp(int(last_tripped))
attr[ATTR_LAST_TRIP_TIME] = dt_util.datetime_to_str(
utc_time)
else:
attr[ATTR_LAST_TRIP_TIME] = None
tripped = self.vera_device.get_value('Tripped')
attr[ATTR_TRIPPED] = 'True' if tripped == '1' else 'False'
2015-03-02 10:09:00 +00:00
attr['Vera Device Id'] = self.vera_device.vera_device_id
return attr
def turn_on(self, **kwargs):
self.vera_device.switch_on()
self._state = STATE_ON
self.update_ha_state()
2015-03-02 10:09:00 +00:00
def turn_off(self, **kwargs):
self.vera_device.switch_off()
self._state = STATE_OFF
self.update_ha_state()
2015-03-02 10:09:00 +00:00
2015-12-31 10:57:54 +00:00
@property
def should_poll(self):
""" Tells Home Assistant not to poll this entity. """
return False
2015-03-02 10:09:00 +00:00
@property
def is_on(self):
""" True if device is on. """
return self._state == STATE_ON