tellme/server/src/tellmesrv.py

52 lines
1.5 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
app = Flask(__name__)
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-01-30 15:02:01 +01:00
#message = "#Bottest Hello, world!"
msg = ("%s %s" % (target, message))
# Create a unique correlation ID
command = {
"corrId": f"id{random.randint(0, 999999)}",
"cmd": msg,
}
json_command = json.dumps(command)
""" Connects to WebSocket server, sends a message, and returns the response """
2025-02-04 13:43:24 +01:00
# ws = websocket.create_connection(uri) # Blocking WebSocket connection
2025-01-30 15:02:01 +01:00
ws.send(json_command) # Send message to WebSocket
response = ws.recv() # Receive response
2025-02-04 13:43:24 +01:00
# ws.close() # Close WebSocket connection
2025-01-30 15:02:01 +01:00
print(response)
return response
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-01-30 15:40:24 +01:00
target = hooks.get(id)
print(target)
sendmessage(target, data.get('message'))
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 13:43:24 +01:00
uri = "ws://localhost:5080"
ws = websocket.create_connection(uri)
2025-01-30 15:02:01 +01:00
app.run(debug=True)