* Upgrade pylint to 1.8.1 * Fix no-else-return * Fix bad-whitespace * Fix too-many-nested-blocks * Fix raising-format-tuple See https://github.com/PyCQA/pylint/blob/master/doc/whatsnew/1.8.rst * Fix len-as-condition * Fix logging-not-lazy Not sure about that TEMP_CELSIUS though, but internally it's probably just like if you concatenated any other (variable) string * Fix stop-iteration-return * Fix useless-super-delegation * Fix trailing-comma-tuple Both of these seem to simply be bugs: * Nest: The value of self._humidity never seems to be used anywhere * Dovado: The called API method seems to expect a "normal" number * Fix redefined-argument-from-local * Fix consider-using-enumerate * Fix wrong-import-order * Fix arguments-differ * Fix missed no-else-return * Fix no-member and related * Fix signatures-differ * Revert "Upgrade pylint to 1.8.1" This reverts commit af78aa00f125a7d34add97b9d50c14db48412211. * Fix arguments-differ * except for device_tracker * Cleanup * Fix test using positional argument * Fix line too long I forgot to run flake8 - shame on me... 🙃 * Fix bad-option-value for 1.6.5 * Fix arguments-differ for device_tracker * Upgrade pylint to 1.8.2 * 👕 Fix missed no-member
90 lines
2.6 KiB
Python
90 lines
2.6 KiB
Python
"""
|
|
Support for ZoneMinder switches.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/switch.zoneminder/
|
|
"""
|
|
import logging
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.switch import (SwitchDevice, PLATFORM_SCHEMA)
|
|
from homeassistant.const import (CONF_COMMAND_ON, CONF_COMMAND_OFF)
|
|
import homeassistant.components.zoneminder as zoneminder
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
DEPENDENCIES = ['zoneminder']
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Required(CONF_COMMAND_ON): cv.string,
|
|
vol.Required(CONF_COMMAND_OFF): cv.string,
|
|
})
|
|
|
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
"""Set up the ZoneMinder switch platform."""
|
|
on_state = config.get(CONF_COMMAND_ON)
|
|
off_state = config.get(CONF_COMMAND_OFF)
|
|
|
|
switches = []
|
|
|
|
monitors = zoneminder.get_state('api/monitors.json')
|
|
for i in monitors['monitors']:
|
|
switches.append(
|
|
ZMSwitchMonitors(
|
|
int(i['Monitor']['Id']),
|
|
i['Monitor']['Name'],
|
|
on_state,
|
|
off_state
|
|
)
|
|
)
|
|
|
|
add_devices(switches)
|
|
|
|
|
|
class ZMSwitchMonitors(SwitchDevice):
|
|
"""Representation of a ZoneMinder switch."""
|
|
|
|
icon = 'mdi:record-rec'
|
|
|
|
def __init__(self, monitor_id, monitor_name, on_state, off_state):
|
|
"""Initialize the switch."""
|
|
self._monitor_id = monitor_id
|
|
self._monitor_name = monitor_name
|
|
self._on_state = on_state
|
|
self._off_state = off_state
|
|
self._state = None
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the switch."""
|
|
return "%s State" % self._monitor_name
|
|
|
|
def update(self):
|
|
"""Update the switch value."""
|
|
monitor = zoneminder.get_state(
|
|
'api/monitors/%i.json' % self._monitor_id
|
|
)
|
|
current_state = monitor['monitor']['Monitor']['Function']
|
|
self._state = True if current_state == self._on_state else False
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return True if entity is on."""
|
|
return self._state
|
|
|
|
def turn_on(self, **kwargs):
|
|
"""Turn the entity on."""
|
|
zoneminder.change_state(
|
|
'api/monitors/%i.json' % self._monitor_id,
|
|
{'Monitor[Function]': self._on_state}
|
|
)
|
|
|
|
def turn_off(self, **kwargs):
|
|
"""Turn the entity off."""
|
|
zoneminder.change_state(
|
|
'api/monitors/%i.json' % self._monitor_id,
|
|
{'Monitor[Function]': self._off_state}
|
|
)
|