craftbeerpi4-pione/core/controller/actor_controller.py

155 lines
4.1 KiB
Python
Raw Normal View History

2018-11-01 19:50:04 +01:00
from aiohttp import web
2018-11-16 20:35:59 +01:00
from core.api.actor import CBPiActor
2018-11-04 01:55:54 +01:00
from core.api.decorator import on_event, request_mapping
2018-11-01 19:50:04 +01:00
from core.controller.crud_controller import CRUDController
from core.database.model import ActorModel
from core.http_endpoints.http_api import HttpAPI
2018-11-16 20:35:59 +01:00
from core.utils import parse_props
2018-11-01 19:50:04 +01:00
2018-11-01 21:25:42 +01:00
class ActorHttp(HttpAPI):
2018-11-01 19:50:04 +01:00
2018-11-18 23:09:17 +01:00
@request_mapping(path="/{id:\d+}/on", auth_required=False)
2018-11-01 21:25:42 +01:00
async def http_on(self, request) -> web.Response:
"""
2018-11-16 20:35:59 +01:00
:param request:
:return:
"""
id = int(request.match_info['id'])
self.cbpi.bus.fire(topic="actor/%s/on" % id, id=id, power=99)
return web.Response(status=204)
2018-11-01 21:25:42 +01:00
2018-11-18 23:09:17 +01:00
@request_mapping(path="/{id:\d+}/off", auth_required=False)
2018-11-16 20:35:59 +01:00
async def http_off(self, request) -> web.Response:
"""
2018-11-01 21:25:42 +01:00
:param request:
:return:
"""
2018-11-16 20:35:59 +01:00
id = int(request.match_info['id'])
self.cbpi.bus.fire(topic="actor/%s/off" % id, id=id)
2018-11-01 21:25:42 +01:00
return web.Response(status=204)
2018-11-01 19:50:04 +01:00
2018-11-18 23:09:17 +01:00
@request_mapping(path="/{id:\d+}/toggle", auth_required=False)
2018-11-16 20:35:59 +01:00
async def http_toggle(self, request) -> web.Response:
"""
:param request:
:return:
"""
id = int(request.match_info['id'])
print("ID", id)
self.cbpi.bus.fire(topic="actor/%s/toggle" % id, id=id)
return web.Response(status=204)
class ActorController(ActorHttp, CRUDController):
2018-11-01 19:50:04 +01:00
2018-11-16 20:35:59 +01:00
'''
The main actor controller
'''
2018-11-01 21:25:42 +01:00
model = ActorModel
2018-11-01 19:50:04 +01:00
def __init__(self, cbpi):
super(ActorController, self).__init__(cbpi)
self.cbpi = cbpi
self.state = False;
self.cbpi.register(self, "/actor")
self.types = {}
self.actors = {}
2018-11-18 15:40:10 +01:00
2018-11-16 20:35:59 +01:00
def register(self, name, clazz) -> None:
2018-11-18 15:40:10 +01:00
2018-11-16 20:35:59 +01:00
print("REGISTER", name)
if issubclass(clazz, CBPiActor):
print("ITS AN ACTOR")
2018-11-01 19:50:04 +01:00
2018-11-16 20:35:59 +01:00
parse_props(clazz)
self.types[name] = clazz
async def init(self):
'''
This method initializes all actors during startup. It creates actor instances
:return:
'''
2018-11-01 19:50:04 +01:00
await super(ActorController, self).init()
2018-11-18 15:40:10 +01:00
2018-11-01 19:50:04 +01:00
for name, clazz in self.types.items():
print("Type", name)
2018-11-18 15:40:10 +01:00
2018-11-01 19:50:04 +01:00
for id, value in self.cache.items():
if value.type in self.types:
2018-11-18 15:40:10 +01:00
cfg = value.config.copy()
2018-11-18 23:09:17 +01:00
2018-11-18 15:40:10 +01:00
cfg.update(dict(cbpi=self.cbpi, id=id, name=value.name))
2018-11-16 20:35:59 +01:00
clazz = self.types[value.type]["class"];
2018-11-18 15:40:10 +01:00
self.cache[id].instance = clazz(**cfg)
print("gpIO", self.cache[id].instance, self.cache[id].instance.gpio)
2018-11-16 20:35:59 +01:00
2018-11-29 21:59:08 +01:00
@on_event(topic="actor/1/on")
def on1(self, **kwargs) -> None:
print("WOOOOHOOO111111")
@on_event(topic="actor/1/on")
def on3(self, **kwargs) -> None:
print("WOOOOHOOO22222")
2018-11-16 20:35:59 +01:00
2018-11-04 00:47:26 +01:00
2018-11-01 19:50:04 +01:00
@on_event(topic="actor/+/on")
2018-11-29 21:59:08 +01:00
def on(self, id , power=100, **kwargs) -> None:
2018-11-18 15:40:10 +01:00
'''
Method to switch an actor on.
Supporting Event Topic "actor/+/on"
2018-11-29 21:59:08 +01:00
:param actor_id: the actor id
2018-11-18 15:40:10 +01:00
:param power: as integer value between 1 and 100
:param kwargs:
:return:
'''
2018-11-16 20:35:59 +01:00
id = int(id)
if id in self.cache:
print("POWER ON")
2018-11-29 21:59:08 +01:00
actor = self.cache[id ].instance
2018-11-18 15:40:10 +01:00
print("ONNNNN", actor)
2018-11-16 20:35:59 +01:00
actor.on(power)
@on_event(topic="actor/+/toggle")
def toggle(self, id, power=100, **kwargs) -> None:
2018-11-18 15:40:10 +01:00
'''
Method to toggle an actor on or off
Supporting Event Topic "actor/+/toggle"
:param power:
:return:
'''
2018-11-16 20:35:59 +01:00
id = int(id)
if id in self.cache:
actor = self.cache[id].instance
if actor.state is True:
actor.off()
else:
actor.on()
2018-11-01 19:50:04 +01:00
2018-11-01 21:25:42 +01:00
@on_event(topic="actor/+/off")
def off(self, id, **kwargs) -> None:
"""
2018-11-18 15:40:10 +01:00
Method to switch and actor off
Supporting Event Topic "actor/+/off"
2018-11-01 21:25:42 +01:00
:param id:
:param kwargs:
"""
2018-11-16 20:35:59 +01:00
id = int(id)
if id in self.cache:
actor = self.cache[id].instance
actor.off()