platypush/platypush/plugins/switch/__init__.py

75 lines
2.0 KiB
Python
Raw Normal View History

from typing import List
from platypush.plugins import Plugin, action
2017-11-04 00:13:22 +01:00
2019-07-02 12:02:28 +02:00
2017-11-04 00:13:22 +01:00
class SwitchPlugin(Plugin):
2018-06-25 19:57:43 +02:00
"""
Abstract class for interacting with switch devices
"""
2019-07-02 12:02:28 +02:00
def __init__(self, **kwargs):
super().__init__(**kwargs)
@action
2019-07-02 12:02:28 +02:00
def on(self, device, *args, **kwargs):
2018-06-25 19:57:43 +02:00
""" Turn the device on """
2017-11-04 00:13:22 +01:00
raise NotImplementedError()
@action
2019-07-02 12:02:28 +02:00
def off(self, device, *args, **kwargs):
2018-06-25 19:57:43 +02:00
""" Turn the device off """
2017-11-04 00:13:22 +01:00
raise NotImplementedError()
@action
2019-07-02 12:02:28 +02:00
def toggle(self, device, *args, **kwargs):
2018-06-25 19:57:43 +02:00
""" Toggle the device status (on/off) """
2017-11-04 00:13:22 +01:00
raise NotImplementedError()
@action
2021-03-05 02:23:28 +01:00
def switch_status(self, device=None):
2019-07-02 12:02:28 +02:00
""" Get the status of a specified device or of all the configured devices (default)"""
devices = self.switches
2019-07-02 12:02:28 +02:00
if device:
devices = [d for d in self.switches if d.get('id') == device or d.get('name') == device]
2019-07-02 12:02:28 +02:00
if devices:
2021-03-05 02:23:28 +01:00
return devices[0]
2019-07-02 12:02:28 +02:00
else:
return None
return devices
2021-03-05 02:23:28 +01:00
@action
def status(self, device=None, *args, **kwargs):
"""
Status function - if not overridden it calls :meth:`.switch_status`. You may want to override it if your plugin
does not handle only switches.
"""
return self.switch_status(device)
2019-07-02 12:02:28 +02:00
@property
def switches(self) -> List[dict]:
"""
This property must be implemented by the derived classes and must return a dictionary in the following format:
.. code-block:: json
[
{
"name": "switch_1",
"on": true
},
{
"name": "switch_2",
"on": false
},
]
``name`` and ``on`` are the minimum set of attributes that should be returned for a switch, but more attributes
can also be added.
"""
2017-11-04 00:13:22 +01:00
raise NotImplementedError()
# vim:sw=4:ts=4:et: