tellme/server/src/tellmesrv.py

73 lines
2.1 KiB
Python
Raw Normal View History

2025-01-30 15:02:01 +01:00
#!/bin/env python3
from flask import Flask, request, jsonify
import websocket
import json
2025-01-30 15:47:14 +01:00
import yaml
2025-01-30 15:02:01 +01:00
import random
2025-02-12 11:09:21 +01:00
import threading
2025-02-12 11:22:16 +01:00
import pprint
2025-01-30 15:02:01 +01:00
2025-02-12 11:09:21 +01:00
__version__ = "2.0.0b2"
2025-02-04 14:16:20 +01:00
versionstring='Taurix TellMe server v' + __version__
2025-02-04 13:51:00 +01:00
2025-01-30 15:02:01 +01:00
app = Flask(__name__)
2025-02-12 11:09:21 +01:00
lock = threading.Lock()
2025-01-30 15:02:01 +01:00
2025-01-30 15:40:24 +01:00
hooks = {}
2025-02-04 13:43:24 +01:00
with open(r'/etc/tellme/hooks.yml') as hooksfile:
2025-01-30 15:47:14 +01:00
hooks = yaml.load(hooksfile, Loader=yaml.FullLoader)
2025-01-30 15:40:24 +01:00
2025-01-30 15:02:01 +01:00
def sendmessage(target, message):
2025-01-30 15:40:24 +01:00
print("Sendmessage %s called to %s" % (message, target))
2025-02-12 11:11:58 +01:00
msg = ("%s %s" % (target, message))
2025-01-30 15:02:01 +01:00
2025-02-12 11:11:58 +01:00
# Create a unique correlation ID
command = {
"corrId": f"id{random.randint(0, 999999)}",
"cmd": msg,
}
json_command = json.dumps(command)
2025-01-30 15:02:01 +01:00
2025-02-12 11:11:58 +01:00
""" Connects to WebSocket server, sends a message, and returns the response """
uri = "ws://localhost:5080"
ws = websocket.create_connection(uri) # Blocking WebSocket connection
ws.send(json_command) # Send message to WebSocket
2025-02-12 11:17:48 +01:00
responsejson = ws.recv() # Receive response
response = json.loads(responsejson)
2025-02-12 11:22:16 +01:00
pprint(response['resp'])
2025-02-12 11:21:18 +01:00
# for chatitem in response['chatitems']:
# print(chatitem)
2025-02-12 11:16:09 +01:00
# print("Message %s sent over websocket to %s" % (chatitem['content'], target))
2025-02-12 11:11:58 +01:00
# ws.close() # Close WebSocket connection
# print(response)
ws.close()
return response
2025-01-30 15:02:01 +01:00
2025-01-30 15:40:24 +01:00
@app.route("/webhook/<id>", methods=['POST'])
def webhook_receiver(id):
print("Webhook id %s" % (id))
2025-01-30 15:02:01 +01:00
data = request.json # Get the JSON data from the incoming request
# Process the data and perform actions based on the event
print("Received webhook data:", data)
2025-02-04 17:41:05 +01:00
target = None
for key, value in hooks.items():
2025-02-04 17:49:19 +01:00
if str(key) == str(id):
2025-02-04 17:41:05 +01:00
target = value
if target is not None:
print(target)
2025-02-12 11:11:58 +01:00
with lock:
sendmessage(target, data.get('message'))
2025-02-04 17:49:19 +01:00
else:
print("No target found, dropping message")
2025-01-30 15:40:24 +01:00
2025-01-30 15:02:01 +01:00
return jsonify({'message': 'Webhook received successfully'}), 200
2025-01-30 15:40:24 +01:00
2025-01-30 15:02:01 +01:00
if __name__ == '__main__':
2025-02-04 14:16:20 +01:00
print("Started %s" % (versionstring))
2025-02-04 13:43:24 +01:00
uri = "ws://localhost:5080"
2025-02-04 19:16:40 +01:00
# ws = websocket.create_connection(uri)
2025-02-04 19:15:31 +01:00
app.run()