123 lines
4.3 KiB
Python
123 lines
4.3 KiB
Python
import asyncio
|
|
import re
|
|
from datetime import timedelta
|
|
|
|
from appdaemon.entity import Entity
|
|
from appdaemon.plugins.hass.hassapi import Hass
|
|
from room_control import RoomController
|
|
|
|
from appdaemon import utils
|
|
|
|
|
|
class Motion(Hass):
|
|
@property
|
|
def sensor(self) -> Entity:
|
|
return self.get_entity(self.args['sensor'])
|
|
|
|
@property
|
|
def sensor_state(self) -> bool:
|
|
return self.sensor.state == 'on'
|
|
|
|
@property
|
|
def ref_entity(self) -> Entity:
|
|
return self.get_entity(self.args['ref_entity'])
|
|
|
|
@property
|
|
async def ref_entity_state(self) -> bool:
|
|
return (await self.ref_entity.get_state()) == 'on'
|
|
|
|
async def initialize(self):
|
|
self.app: RoomController = await self.get_app(self.args['app'])
|
|
self.log(f'Connected to app {self.app.name}')
|
|
|
|
# don't need to await these because they'll already get turned into a task by the utils.sync_wrapper decorator
|
|
self.listen_state(self.callback_light_on, self.ref_entity.entity_id, new='on')
|
|
self.listen_state(self.callback_light_off, self.ref_entity.entity_id, new='off')
|
|
self.sync_state()
|
|
|
|
@utils.sync_wrapper
|
|
async def sync_state(self):
|
|
"""Synchronizes the callbacks with the state of the light.
|
|
|
|
Essentially mimics the `state_change` callback based on the current state of the light.
|
|
"""
|
|
if (await self.ref_entity_state):
|
|
await self.callback_light_on()
|
|
else:
|
|
await self.callback_light_off()
|
|
|
|
@utils.sync_wrapper
|
|
async def listen_motion_on(self):
|
|
"""Sets up the motion on callback to activate the room
|
|
"""
|
|
self.log(f'Waiting for motion on {self.sensor.friendly_name}')
|
|
self.listen_state(
|
|
callback=self.app.activate_all_off,
|
|
entity_id=self.sensor.entity_id,
|
|
new='on',
|
|
oneshot=True,
|
|
cause='motion on'
|
|
)
|
|
|
|
@utils.sync_wrapper
|
|
async def listen_motion_off(self, duration: timedelta):
|
|
"""Sets up the motion off callback to deactivate the room
|
|
"""
|
|
self.log(f'Waiting for motion to stop on {self.sensor.friendly_name}')
|
|
self.listen_state(
|
|
callback=self.app.deactivate,
|
|
entity_id=self.sensor.entity_id,
|
|
new='off',
|
|
duration=duration.total_seconds(),
|
|
oneshot=True,
|
|
cause='motion off'
|
|
)
|
|
|
|
@utils.sync_wrapper
|
|
async def callback_light_on(self, entity=None, attribute=None, old=None, new=None, kwargs=None):
|
|
"""Called when the light turns on
|
|
"""
|
|
self.log('Light on callback')
|
|
# need this one to finish before continuing to the next line
|
|
await self.cancel_motion_callback(new='on')
|
|
self.listen_motion_off(await self.app.off_duration())
|
|
|
|
@utils.sync_wrapper
|
|
async def callback_light_off(self, entity=None, attribute=None, old=None, new=None, kwargs=None):
|
|
"""Called when the light turns off
|
|
"""
|
|
self.log('Light off callback')
|
|
# need this one to finish before continuing to the next line
|
|
await self.cancel_motion_callback(new='off')
|
|
self.listen_motion_on()
|
|
|
|
async def get_app_callbacks(self, name: str = None):
|
|
"""Gets all the callbacks associated with the app
|
|
"""
|
|
name = name or self.name
|
|
callbacks = {
|
|
handle: info
|
|
for app_name, callbacks in (await self.get_callback_entries()).items()
|
|
for handle, info in callbacks.items()
|
|
if app_name == name
|
|
}
|
|
return callbacks
|
|
|
|
async def get_sensor_callbacks(self):
|
|
return {
|
|
handle: info
|
|
for handle, info in (await self.get_app_callbacks()).items()
|
|
if info['entity'] == self.sensor.entity_id
|
|
}
|
|
|
|
async def cancel_motion_callback(self, new: str):
|
|
callbacks = await self.get_sensor_callbacks()
|
|
# self.log(f'Found {len(callbacks)}')
|
|
for handle, info in callbacks.items():
|
|
entity = info["entity"]
|
|
new_match = re.match('new=(?P<new>.*?)\s', info['kwargs'])
|
|
# self.log(f'{handle}: {info["entity"]}: {info["kwargs"]}')
|
|
if new_match is not None and new_match.group("new") == new:
|
|
await self.cancel_listen_state(handle)
|
|
self.log(f'cancelled: {await self.friendly_name(entity)}: {new}')
|