54 lines
1.8 KiB
Python
54 lines
1.8 KiB
Python
"""Methods and classes related to executing Z-Wave commands and publishing these to hass."""
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.core import callback
|
|
|
|
from . import const
|
|
|
|
|
|
class ZWaveServices:
|
|
"""Class that holds our services ( Zwave Commands) that should be published to hass."""
|
|
|
|
def __init__(self, hass, manager):
|
|
"""Initialize with both hass and ozwmanager objects."""
|
|
self._hass = hass
|
|
self._manager = manager
|
|
|
|
@callback
|
|
def async_register(self):
|
|
"""Register all our services."""
|
|
self._hass.services.async_register(
|
|
const.DOMAIN,
|
|
const.SERVICE_ADD_NODE,
|
|
self.async_add_node,
|
|
schema=vol.Schema(
|
|
{
|
|
vol.Optional(const.ATTR_INSTANCE_ID, default=1): vol.Coerce(int),
|
|
vol.Optional(const.ATTR_SECURE, default=False): vol.Coerce(bool),
|
|
}
|
|
),
|
|
)
|
|
self._hass.services.async_register(
|
|
const.DOMAIN,
|
|
const.SERVICE_REMOVE_NODE,
|
|
self.async_remove_node,
|
|
schema=vol.Schema(
|
|
{vol.Optional(const.ATTR_INSTANCE_ID, default=1): vol.Coerce(int)}
|
|
),
|
|
)
|
|
|
|
@callback
|
|
def async_add_node(self, service):
|
|
"""Enter inclusion mode on the controller."""
|
|
instance_id = service.data[const.ATTR_INSTANCE_ID]
|
|
secure = service.data[const.ATTR_SECURE]
|
|
instance = self._manager.get_instance(instance_id)
|
|
instance.add_node(secure)
|
|
|
|
@callback
|
|
def async_remove_node(self, service):
|
|
"""Enter exclusion mode on the controller."""
|
|
instance_id = service.data[const.ATTR_INSTANCE_ID]
|
|
instance = self._manager.get_instance(instance_id)
|
|
instance.remove_node()
|