LedFx/ledfx/api/integration_qlc.py

229 lines
8.4 KiB
Python

import logging
from aiohttp import web
from ledfx.api import RestEndpoint
from ledfx.config import save_config
from ledfx.events import Event
_LOGGER = logging.getLogger(__name__)
class QLCEndpoint(RestEndpoint):
"""REST end-point for querying and managing a QLC integration"""
ENDPOINT_PATH = "/api/integrations/qlc/{integration_id}"
async def get(self, integration_id, request) -> web.Response:
"""Get info from QLC+ integration"""
integration = self._ledfx.integrations.get(integration_id)
if (integration is None) or (integration.type != "qlc"):
response = {"not found": 404}
return web.json_response(data=response, status=404)
data = await request.json()
info = data.get("info")
if info is None:
response = {
"status": "failed",
"reason": 'Required attribute "info" was not provided',
}
return web.json_response(data=response, status=500)
if info == "event_types":
# generate dict of {effect_id: effect_name}
effect_names = []
for effect_type, effect in self._ledfx.effects.classes().items():
effect_names.append(effect.NAME)
scene_names = []
for scene in self._ledfx.config["scenes"]:
scene_names.append(self._ledfx.config["scenes"][scene]["name"])
response = {
Event.EFFECT_SET: {
"event_name": "Effect Set",
"event_filters": {"effect_name": effect_names},
},
Event.EFFECT_CLEARED: {
"event_name": "Effect Cleared",
"event_filters": {},
},
Event.SCENE_SET: {
"event_name": "Scene Set",
"event_filters": {"scene_name": scene_names},
},
}
elif info == "qlc_widgets":
response = await integration.get_widgets()
elif info == "qlc_listeners":
response = integration.data
else:
response = {
"status": "failed",
"reason": f'Unknown info parameter "{info}"',
}
return web.json_response(data=response, status=500)
return web.json_response(data=response, status=200)
async def put(self, integration_id, request) -> web.Response:
""" Toggle a QLC event listener """
integration = self._ledfx.integrations.get(integration_id)
if (integration is None) or (integration.type != "qlc"):
response = {"not found": 404}
return web.json_response(data=response, status=404)
data = await request.json()
event_type = data.get("event_type")
event_filter = data.get("event_filter")
if event_type is None:
response = {
"status": "failed",
"reason": 'Required attribute "event_type" was not provided',
}
return web.json_response(data=response, status=500)
if event_filter is None:
response = {
"status": "failed",
"reason": 'Required attribute "event_filter" was not provided',
}
return web.json_response(data=response, status=500)
if type(event_filter) is not dict:
response = {
"status": "failed",
"reason": f'Invalid filter "{event_filter}", should be dictionary eg. {{ "scene_name" : "my scene" }} ',
}
return web.json_response(data=response, status=500)
# toggle the event listener
if not integration.toggle_event(event_type, event_filter):
response = {
"status": "failed",
"reason": f"Could not find event with type {event_type} and filter {event_filter}",
}
return web.json_response(data=response, status=500)
# Save the configuration (integration will handle modifying "data")
for _integration in self._ledfx.config["integrations"]:
if _integration["id"] == integration_id:
_integration["data"] = integration.data
break
save_config(
config=self._ledfx.config,
config_dir=self._ledfx.config_dir,
)
response = {"status": "success"}
return web.json_response(data=response, status=200)
async def post(self, integration_id, request) -> web.Response:
""" Add a new QLC event listener or update an existing one """
integration = self._ledfx.integrations.get(integration_id)
if (integration is None) or (integration.type != "qlc"):
response = {"not found": 404}
return web.json_response(data=response, status=404)
data = await request.json()
event_type = data.get("event_type")
event_filter = data.get("event_filter")
qlc_payload = data.get("qlc_payload")
if event_type is None:
response = {
"status": "failed",
"reason": 'Required attribute "event_type" was not provided',
}
return web.json_response(data=response, status=500)
if event_filter is None:
response = {
"status": "failed",
"reason": 'Required attribute "event_filter" was not provided',
}
return web.json_response(data=response, status=500)
if type(event_filter) is not dict:
response = {
"status": "failed",
"reason": f'Invalid filter "{event_filter}", should be dictionary eg. {{ "scene_name" : "my scene" }} ',
}
return web.json_response(data=response, status=500)
if qlc_payload is None:
response = {
"status": "failed",
"reason": 'Required attribute "qlc_payload" was not provided',
}
return web.json_response(data=response, status=500)
# Create a link between ledfx event and sending the payload
integration.create_event(event_type, event_filter, True, qlc_payload)
# Update and save the configuration
for _integration in self._ledfx.config["integrations"]:
if _integration["id"] == integration_id:
_integration["data"] = integration.data
break
save_config(
config=self._ledfx.config,
config_dir=self._ledfx.config_dir,
)
response = {"status": "success"}
return web.json_response(data=response, status=200)
async def delete(self, integration_id, request) -> web.Response:
""" Delete a QLC event listener """
integration = self._ledfx.integrations.get(integration_id)
if (integration is None) or (integration.type != "qlc"):
response = {"not found": 404}
return web.json_response(data=response, status=404)
data = await request.json()
event_type = data.get("event_type")
event_filter = data.get("event_filter")
if event_type is None:
response = {
"status": "failed",
"reason": 'Required attribute "event_type" was not provided',
}
return web.json_response(data=response, status=500)
if event_filter is None:
response = {
"status": "failed",
"reason": 'Required attribute "event_filter" was not provided',
}
return web.json_response(data=response, status=500)
if type(event_filter) is not dict:
response = {
"status": "failed",
"reason": f'Invalid filter "{event_filter}", should be dictionary eg. {{ "scene_name" : "my scene" }} ',
}
return web.json_response(data=response, status=500)
# Delete the listener and event from data
integration.delete_event(event_type, event_filter)
# Save the configuration (integration will handle modifying "data")
for _integration in self._ledfx.config["integrations"]:
if _integration["id"] == integration_id:
_integration["data"] = integration.data
break
save_config(
config=self._ledfx.config,
config_dir=self._ledfx.config_dir,
)
response = {"status": "success"}
return web.json_response(data=response, status=200)