craftbeerpi4-pione/cbpi/extension/httpsensor/__init__.py

106 lines
2.8 KiB
Python
Raw Normal View History

2019-08-16 21:36:55 +02:00
# -*- coding: utf-8 -*-
import asyncio
from aiohttp import web
from cbpi.api import *
import re
import random
cache = {}
2021-03-04 13:06:57 +01:00
@parameters([Property.Text(label="Key", configurable=True, description="Http Key")])
2019-08-16 21:36:55 +02:00
class HTTPSensor(CBPiSensor):
2021-03-04 13:06:57 +01:00
def __init__(self, cbpi, id, props):
super(HTTPSensor, self).__init__(cbpi, id, props)
self.running = True
2021-03-04 15:07:56 +01:00
self.value = 0
2019-08-16 21:36:55 +02:00
2021-03-04 13:06:57 +01:00
async def run(self):
'''
This method is executed asynchronousely
In this example the code is executed every second
'''
while self.running is True:
2019-08-16 21:36:55 +02:00
try:
2021-03-04 13:06:57 +01:00
cache_value = cache.pop(self.props.get("Key"), None)
if cache_value is not None:
2021-03-04 14:49:10 +01:00
self.value = float(cache_value)
2021-03-04 13:06:57 +01:00
self.push_update(self.value)
2019-08-16 21:36:55 +02:00
except Exception as e:
pass
2021-03-04 13:06:57 +01:00
await asyncio.sleep(1)
def get_state(self):
# return the current state of the sensor
return dict(value=self.value)
2019-08-16 21:36:55 +02:00
class HTTPSensorEndpoint(CBPiExtension):
def __init__(self, cbpi):
'''
Initializer
:param cbpi:
'''
self.pattern_check = re.compile("^[a-zA-Z0-9,.]{0,10}$")
self.cbpi = cbpi
# register component for http, events
# In addtion the sub folder static is exposed to access static content via http
self.cbpi.register(self, "/httpsensor")
@request_mapping(path="/{key}/{value}", auth_required=False)
async def http_new_value2(self, request):
"""
---
description: Kettle Heater on
tags:
- HttpSensor
parameters:
- name: "key"
in: "path"
description: "Sensor Key"
required: true
type: "string"
- name: "value"
in: "path"
description: "Value"
required: true
type: "integer"
format: "int64"
responses:
"204":
description: successful operation
"""
global cache
key = request.match_info['key']
value = request.match_info['value']
if self.pattern_check.match(key) is None:
return web.json_response(status=422, data={'error': "Key not matching pattern ^[a-zA-Z0-9,.]{0,10}$"})
if self.pattern_check.match(value) is None:
return web.json_response(status=422, data={'error': "Data not matching pattern ^[a-zA-Z0-9,.]{0,10}$"})
2021-02-16 20:37:51 +01:00
2019-08-16 21:36:55 +02:00
cache[key] = value
return web.Response(status=204)
def setup(cbpi):
'''
This method is called by the server during startup
Here you need to register your plugins at the server
:param cbpi: the cbpi core
:return:
'''
cbpi.plugin.register("HTTPSensor", HTTPSensor)
cbpi.plugin.register("HTTPSensorEndpoint", HTTPSensorEndpoint)