2022-10-10 15:14:57 +02:00
|
|
|
from flask import Flask, request, json, Blueprint
|
2022-08-17 16:33:40 +02:00
|
|
|
from sqlite3 import Error
|
|
|
|
from tlapbot.db import get_db
|
2022-10-10 15:14:57 +02:00
|
|
|
from tlapbot.owncast_helpers import (add_user_to_database, change_display_name,
|
|
|
|
user_exists, send_chat, read_users_points)
|
|
|
|
from tlapbot.redeems_handler import handle_redeem
|
2022-08-17 16:33:40 +02:00
|
|
|
|
2022-08-24 13:45:13 +02:00
|
|
|
bp = Blueprint('owncast_webhooks', __name__)
|
2022-08-17 16:33:40 +02:00
|
|
|
|
|
|
|
@bp.route('/owncastWebhook',methods=['POST'])
|
2022-08-24 13:45:13 +02:00
|
|
|
def owncast_webhook():
|
2022-08-17 16:33:40 +02:00
|
|
|
data = request.json
|
|
|
|
db = get_db()
|
|
|
|
if data["type"] == "USER_JOINED":
|
|
|
|
user_id = data["eventData"]["user"]["id"]
|
2022-09-06 18:20:44 +02:00
|
|
|
display_name = data["eventData"]["user"]["displayName"]
|
2022-08-24 15:35:16 +02:00
|
|
|
# CONSIDER: join points for joining stream
|
2022-09-06 18:20:44 +02:00
|
|
|
add_user_to_database(db, user_id, display_name)
|
|
|
|
elif data["type"] == "NAME_CHANGE":
|
|
|
|
user_id = data["eventData"]["user"]["id"]
|
|
|
|
new_name = data["eventData"]["newName"]
|
|
|
|
change_display_name(db, user_id, new_name)
|
2022-08-17 16:33:40 +02:00
|
|
|
elif data["type"] == "CHAT":
|
2022-09-26 10:50:37 +02:00
|
|
|
user_id = data["eventData"]["user"]["id"]
|
|
|
|
display_name = data["eventData"]["user"]["displayName"]
|
|
|
|
print(f'New chat message from {display_name}:')
|
|
|
|
print(f'{data["eventData"]["body"]}')
|
|
|
|
if "!help" in data["eventData"]["body"]:
|
|
|
|
message = """Tlapbot commands:
|
|
|
|
!points to see your points.
|
|
|
|
!drink to redeem a pitíčko for 60 points.
|
|
|
|
That's it for now."""
|
2022-10-10 15:14:57 +02:00
|
|
|
# TODO: also make this customizable
|
2022-09-26 10:50:37 +02:00
|
|
|
send_chat(message)
|
|
|
|
elif "!points" in data["eventData"]["body"]:
|
|
|
|
if not user_exists(db, user_id):
|
|
|
|
add_user_to_database(db, user_id, display_name)
|
|
|
|
points = read_users_points(db, user_id)
|
2022-10-10 15:14:57 +02:00
|
|
|
message = f"{display_name}'s points: {points}"
|
2022-09-26 10:50:37 +02:00
|
|
|
send_chat(message)
|
|
|
|
elif "!name_update" in data["eventData"]["body"]:
|
|
|
|
# Forces name update in case bot didn't catch the NAME_CHANGE
|
|
|
|
# event. Theoretically only needed when bot was off.
|
|
|
|
change_display_name(db, user_id, display_name)
|
2022-10-12 15:31:34 +02:00
|
|
|
elif data["eventData"]["body"].startswith("!"): # TODO: make prefix configurable
|
|
|
|
handle_redeem(data["eventData"]["body"], user_id)
|
2022-08-17 17:44:25 +02:00
|
|
|
return data
|