Tlapbot/tlapbot/owncast_webhooks.py

37 lines
1.4 KiB
Python
Raw Normal View History

2022-08-24 13:39:40 +02:00
from flask import Flask,request,json,Blueprint
from sqlite3 import Error
from tlapbot.db import get_db
2022-08-24 15:55:55 +02:00
from tlapbot.owncast_helpers import *
2022-08-24 13:45:13 +02:00
bp = Blueprint('owncast_webhooks', __name__)
@bp.route('/owncastWebhook',methods=['POST'])
2022-08-24 13:45:13 +02:00
def owncast_webhook():
data = request.json
db = get_db()
if data["type"] == "USER_JOINED":
user_id = data["eventData"]["user"]["id"]
2022-08-24 15:35:16 +02:00
# CONSIDER: join points for joining stream
add_user_to_database(db, user_id)
elif data["type"] == "CHAT":
display_name = data["eventData"]["user"]["displayName"]
print("New chat message:")
print(f'from {display_name}:')
print(f'{data["eventData"]["body"]}')
2022-08-24 13:39:40 +02:00
user_id = data["eventData"]["user"]["id"]
if "!points" in data["eventData"]["body"]:
2022-08-24 15:35:16 +02:00
if not user_exists(db, user_id):
add_user_to_database(db, user_id)
points = read_users_points(db, user_id)
message = "{}'s points: {}".format(display_name, points)
print(message)
send_chat(message)
2022-08-24 15:55:55 +02:00
elif "!drink" in data["eventData"]["body"]:
points = read_users_points(db, user_id)
if points is not None:
if points > 60:
use_points(db, user_id, 60)
send_chat("Enjoy your DRINK........... sips")
else: # DEBUG: give points for message
2022-08-24 15:55:55 +02:00
give_points_to_chat(db)
2022-08-17 17:44:25 +02:00
return data