2019-02-13 21:21:14 +01:00
|
|
|
"""Support for Verisure Smartplugs."""
|
2015-08-12 13:00:47 +02:00
|
|
|
import logging
|
2017-06-26 22:30:25 +02:00
|
|
|
from time import time
|
2015-08-12 13:00:47 +02:00
|
|
|
|
|
|
|
from homeassistant.components.switch import SwitchDevice
|
|
|
|
|
2019-03-20 22:56:46 -07:00
|
|
|
from . import CONF_SMARTPLUGS, HUB as hub
|
|
|
|
|
2015-08-12 13:00:47 +02:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2018-08-24 16:37:30 +02:00
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
2017-05-02 18:18:47 +02:00
|
|
|
"""Set up the Verisure switch platform."""
|
2016-09-07 03:18:34 +02:00
|
|
|
if not int(hub.config.get(CONF_SMARTPLUGS, 1)):
|
2015-08-12 13:00:47 +02:00
|
|
|
return False
|
|
|
|
|
2017-06-26 22:30:25 +02:00
|
|
|
hub.update_overview()
|
2015-08-12 13:00:47 +02:00
|
|
|
switches = []
|
|
|
|
switches.extend([
|
2017-06-26 22:30:25 +02:00
|
|
|
VerisureSmartplug(device_label)
|
|
|
|
for device_label in hub.get('$.smartPlugs[*].deviceLabel')])
|
2018-08-24 16:37:30 +02:00
|
|
|
add_entities(switches)
|
2015-08-12 13:00:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
class VerisureSmartplug(SwitchDevice):
|
2016-03-08 13:35:39 +01:00
|
|
|
"""Representation of a Verisure smartplug."""
|
|
|
|
|
2016-02-27 21:50:19 +01:00
|
|
|
def __init__(self, device_id):
|
2016-03-08 13:35:39 +01:00
|
|
|
"""Initialize the Verisure device."""
|
2017-06-26 22:30:25 +02:00
|
|
|
self._device_label = device_id
|
|
|
|
self._change_timestamp = 0
|
|
|
|
self._state = False
|
2015-08-12 13:00:47 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
2016-03-08 13:35:39 +01:00
|
|
|
"""Return the name or location of the smartplug."""
|
2017-06-26 22:30:25 +02:00
|
|
|
return hub.get_first(
|
|
|
|
"$.smartPlugs[?(@.deviceLabel == '%s')].area",
|
2017-06-30 08:53:14 +02:00
|
|
|
self._device_label)
|
2015-08-12 13:00:47 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def is_on(self):
|
2016-03-08 13:35:39 +01:00
|
|
|
"""Return true if on."""
|
2017-06-26 22:30:25 +02:00
|
|
|
if time() - self._change_timestamp < 10:
|
|
|
|
return self._state
|
|
|
|
self._state = hub.get_first(
|
|
|
|
"$.smartPlugs[?(@.deviceLabel == '%s')].currentState",
|
|
|
|
self._device_label) == "ON"
|
|
|
|
return self._state
|
2015-08-12 13:00:47 +02:00
|
|
|
|
2016-05-04 03:53:11 +02:00
|
|
|
@property
|
|
|
|
def available(self):
|
|
|
|
"""Return True if entity is available."""
|
2017-06-26 22:30:25 +02:00
|
|
|
return hub.get_first(
|
|
|
|
"$.smartPlugs[?(@.deviceLabel == '%s')]",
|
|
|
|
self._device_label) is not None
|
2016-05-04 03:53:11 +02:00
|
|
|
|
2018-02-11 18:20:28 +01:00
|
|
|
def turn_on(self, **kwargs):
|
2016-03-08 13:35:39 +01:00
|
|
|
"""Set smartplug status on."""
|
2017-06-26 22:30:25 +02:00
|
|
|
hub.session.set_smartplug_state(self._device_label, True)
|
|
|
|
self._state = True
|
|
|
|
self._change_timestamp = time()
|
2015-08-12 13:00:47 +02:00
|
|
|
|
2018-02-11 18:20:28 +01:00
|
|
|
def turn_off(self, **kwargs):
|
2016-03-08 13:35:39 +01:00
|
|
|
"""Set smartplug status off."""
|
2017-06-26 22:30:25 +02:00
|
|
|
hub.session.set_smartplug_state(self._device_label, False)
|
|
|
|
self._state = False
|
|
|
|
self._change_timestamp = time()
|
2015-08-15 13:36:30 +02:00
|
|
|
|
2018-06-07 15:31:21 -04:00
|
|
|
# pylint: disable=no-self-use
|
2015-08-15 13:36:30 +02:00
|
|
|
def update(self):
|
2016-03-08 13:35:39 +01:00
|
|
|
"""Get the latest date of the smartplug."""
|
2017-06-26 22:30:25 +02:00
|
|
|
hub.update_overview()
|