craftbeerpi4-pione/core/controller/kettle_controller.py

171 lines
5.2 KiB
Python
Raw Normal View History

2018-12-03 22:16:03 +01:00
import re
2018-11-18 15:40:10 +01:00
from aiohttp import web
2018-11-18 23:09:17 +01:00
from core.api import request_mapping, on_event
2018-11-18 15:40:10 +01:00
from core.controller.crud_controller import CRUDController
from core.database.model import KettleModel
from core.http_endpoints.http_api import HttpAPI
2018-11-30 23:27:11 +01:00
from core.job.aiohttp import get_scheduler_from_app
2018-11-18 15:40:10 +01:00
from core.utils import json_dumps
class KettleHttp(HttpAPI):
@request_mapping(path="/types", auth_required=False)
async def get_types(self, request):
2018-11-29 21:59:08 +01:00
web.json_response(data=self.cbpi.kettle.types, dumps=json_dumps)
2018-11-18 15:40:10 +01:00
2018-11-18 23:09:17 +01:00
@request_mapping(path="/{id:\d+}/automatic", auth_required=False)
async def start2(self, request):
id = int(request.match_info['id'])
2018-11-29 21:59:08 +01:00
result = await self.cbpi.kettle.toggle_automtic(id)
2018-11-18 23:09:17 +01:00
if result[0] is True:
return web.Response(text="OK")
else:
return web.Response(status=404, text=result[1])
2018-11-18 15:40:10 +01:00
2018-11-18 23:09:17 +01:00
@request_mapping(path="/{id:\d+}/heater", auth_required=False)
async def start(self, request):
id = int(request.match_info['id'])
2018-11-29 21:59:08 +01:00
result = await self.cbpi.kettle.heater_on(id)
2018-11-18 23:09:17 +01:00
if result[0] is True:
return web.Response(text="OK")
else:
return web.Response(status=404, text=result[1])
2018-11-18 15:40:10 +01:00
2018-11-29 21:59:08 +01:00
class KettleController(CRUDController):
2018-11-18 15:40:10 +01:00
'''
2018-11-29 21:59:08 +01:00
The main kettle controller
2018-11-18 15:40:10 +01:00
'''
model = KettleModel
def __init__(self, cbpi):
super(KettleController, self).__init__(cbpi)
self.cbpi = cbpi
self.types = {}
2018-11-29 21:59:08 +01:00
self.cbpi.register(self, None)
self.http = KettleHttp(cbpi)
self.cbpi.register(self.http, "/kettle")
2018-11-18 15:40:10 +01:00
2018-11-18 23:09:17 +01:00
2018-11-18 15:40:10 +01:00
async def init(self):
'''
This method initializes all actors during startup. It creates actor instances
:return:
'''
await super(KettleController, self).init()
async def toggle_automtic(self, id):
2018-11-18 23:09:17 +01:00
'''
2018-11-29 21:59:08 +01:00
Convenience Method to toggle automatic
:param id: kettle id as int
:return: (boolean, string)
2018-11-18 23:09:17 +01:00
'''
2018-11-18 15:40:10 +01:00
kettle = await self.get_one(id)
2018-11-18 23:09:17 +01:00
if kettle is None:
return (False, "Kettle Not Found")
if kettle.logic is None:
return (False, "No Logic defined")
id = kettle.heater
2018-12-13 21:45:33 +01:00
await self.cbpi.bus.fire(topic="kettle/%s/automatic" % id, id=id)
2018-11-18 23:09:17 +01:00
return (True, "Logic switched on switched")
2018-11-30 23:27:11 +01:00
@on_event(topic="job/done")
2018-12-13 21:45:33 +01:00
async def job_stop(self, key, **kwargs) -> None:
2018-11-30 23:27:11 +01:00
2018-12-03 22:16:03 +01:00
match = re.match("kettle_logic_(\d+)", key)
if match is not None:
kid = match.group(1)
kettle = self.cache[int(kid)]
kettle.instance = None
2018-11-30 23:27:11 +01:00
2018-12-03 22:16:03 +01:00
print("STOP KETTLE LOGIC", kid)
2018-11-30 23:27:11 +01:00
2018-11-18 23:09:17 +01:00
@on_event(topic="kettle/+/automatic")
async def handle_automtic_event(self, id, **kwargs):
'''
Method to handle the event 'kettle/+/automatic'
:param id: The kettle id
:param kwargs:
:return: None
'''
id = int(id)
print("WOOOHO", type(id), self.cache)
if id in self.cache:
print("id", id)
kettle = self.cache[id]
if hasattr(kettle, "instance") is False:
kettle.instance = None
2018-11-30 23:27:11 +01:00
self._is_logic_running(id)
2018-11-18 23:09:17 +01:00
if kettle.instance is None:
if kettle.logic in self.types:
clazz = self.types.get("CustomKettleLogic")["class"]
cfg = kettle.config.copy()
cfg.update(dict(cbpi=self.cbpi))
kettle.instance = clazz(**cfg)
print("START LOGIC")
2018-11-30 23:27:11 +01:00
await self.cbpi.start_job(kettle.instance.run(), "Kettle_logic_%s" % kettle.id, "kettle_logic%s"%id)
2018-11-18 23:09:17 +01:00
else:
kettle.instance.running = False
kettle.instance = None
2018-11-18 15:40:10 +01:00
2018-11-30 23:27:11 +01:00
def _is_logic_running(self, kettle_id):
scheduler = get_scheduler_from_app(self.cbpi.app)
print("JOB KETTLE RUNNING", scheduler.is_running("Kettle_logic_%s"%kettle_id))
2018-11-18 15:40:10 +01:00
async def heater_on(self, id):
2018-11-18 23:09:17 +01:00
'''
Convenience Method to switch the heater of a kettle on
:param id: the kettle id
:return: (boolean, string)
'''
kettle = await self.get_one(id)
if kettle is None:
return (False, "Kettle Not Found")
if kettle.heater is None:
return (False, "No Heater defined")
id = kettle.heater
2018-12-13 21:45:33 +01:00
await self.cbpi.bus.fire(topic="actor/%s/on" % id, id=id, power=99)
2018-11-18 23:09:17 +01:00
return (True,"Heater switched on")
2018-11-18 15:40:10 +01:00
async def heater_off(self, id):
2018-11-18 23:09:17 +01:00
'''
Convenience Method to switch the heater of a kettle off
:param id:
:return:
'''
kettle = await self.get_one(id)
if kettle is None:
return (False, "Kettle Not Found")
if kettle.heater is None:
return (False, "No Heater defined")
id = kettle.heater
2018-12-13 21:45:33 +01:00
await self.cbpi.bus.fire(topic="actor/%s/off" % id, id=id, power=99)
2018-11-18 23:09:17 +01:00
return (True, "Heater switched off")
2018-11-18 15:40:10 +01:00
async def agitator_on(self, id):
pass
async def agitator_off(self, id):
pass
async def get_traget_temp(self, id):
2018-11-18 23:09:17 +01:00
kettle = await self.get_one(id)
return kettle.target_temp
2018-11-18 15:40:10 +01:00
async def get_temp(self, id):
2018-11-18 23:09:17 +01:00
pass