mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
81 lines
2 KiB
Python
81 lines
2 KiB
Python
from aiohttp import web
|
|
from aiohttp_auth.auth.decorators import auth_required
|
|
|
|
from core.api.decorator import on_event, request_mapping
|
|
from core.controller.crud_controller import CRUDController
|
|
from core.database.model import ActorModel
|
|
from core.http_endpoints.http_api import HttpAPI
|
|
from core.plugin import PluginAPI
|
|
|
|
|
|
class ActorHttp(HttpAPI):
|
|
|
|
@request_mapping(path="/hallo", auth_required=False)
|
|
async def hello_world(self, request) -> web.Response:
|
|
print("HALLO")
|
|
return web.Response(status=200, text="OK")
|
|
|
|
@request_mapping(path="/{id}/on", auth_required=False)
|
|
async def http_on(self, request) -> web.Response:
|
|
"""
|
|
|
|
:param request:
|
|
:return:
|
|
"""
|
|
self.cbpi.bus.fire(event="actor/1/on", id=1, power=99)
|
|
return web.Response(status=204)
|
|
|
|
|
|
|
|
class ActorController(ActorHttp, CRUDController, PluginAPI):
|
|
|
|
model = ActorModel
|
|
|
|
def __init__(self, cbpi):
|
|
super(ActorController, self).__init__(cbpi)
|
|
self.cbpi = cbpi
|
|
self.state = False;
|
|
|
|
self.cbpi.register(self, "/actor")
|
|
self.types = {}
|
|
self.actors = {}
|
|
|
|
async def init(self):
|
|
|
|
await super(ActorController, self).init()
|
|
for name, clazz in self.types.items():
|
|
print("Type", name)
|
|
for id, value in self.cache.items():
|
|
|
|
if value.type in self.types:
|
|
clazz = self.types[value.type];
|
|
self.actors[id] = clazz(self.cbpi)
|
|
print(value.type)
|
|
print("CACHE", self.cache)
|
|
print("ACTORS", self.actors)
|
|
|
|
|
|
|
|
@on_event(topic="actor/+/on")
|
|
def on(self, id, power=100, **kwargs) -> None:
|
|
print("ON-------------", id, power)
|
|
if id in self.actors:
|
|
i = self.actors[id]
|
|
i.on(power)
|
|
|
|
@on_event(topic="actor/+/off")
|
|
def off(self, id, **kwargs) -> None:
|
|
"""
|
|
|
|
:param id:
|
|
:param kwargs:
|
|
"""
|
|
print("POWERED ON", id, kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|