2025-01-30 15:02:01 +01:00
|
|
|
#!/bin/env python3
|
|
|
|
from flask import Flask, request, jsonify
|
|
|
|
# import asyncio
|
|
|
|
import websocket
|
|
|
|
import json
|
|
|
|
import random
|
|
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
2025-01-30 15:40:24 +01:00
|
|
|
hooks = {}
|
|
|
|
hooks['2345555XE'] = '#Bottest'
|
|
|
|
|
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
|
|
|
uri = "ws://localhost:5080"
|
|
|
|
#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 """
|
|
|
|
ws = websocket.create_connection(uri) # Blocking WebSocket connection
|
|
|
|
ws.send(json_command) # Send message to WebSocket
|
|
|
|
response = ws.recv() # Receive response
|
|
|
|
ws.close() # Close WebSocket connection
|
|
|
|
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__':
|
|
|
|
app.run(debug=True)
|