2023-03-20 17:16:17 +01:00
|
|
|
import requests
|
|
|
|
from flask import current_app
|
|
|
|
from tlapbot.owncast_helpers import give_points_to_user
|
|
|
|
|
|
|
|
|
|
|
|
def is_stream_live():
|
|
|
|
url = current_app.config['OWNCAST_INSTANCE_URL'] + '/api/status'
|
|
|
|
try:
|
|
|
|
r = requests.get(url)
|
|
|
|
except requests.exceptions.RequestException as e:
|
|
|
|
current_app.logger.error(f"Error occured checking if stream is live: {e.args[0]}")
|
|
|
|
return False
|
|
|
|
return r.json()["online"]
|
|
|
|
|
|
|
|
|
|
|
|
def give_points_to_chat(db):
|
|
|
|
url = current_app.config['OWNCAST_INSTANCE_URL'] + '/api/integrations/clients'
|
|
|
|
headers = {"Authorization": "Bearer " + current_app.config['OWNCAST_ACCESS_TOKEN']}
|
2023-06-20 13:41:22 +02:00
|
|
|
try:
|
|
|
|
r = requests.get(url, headers=headers)
|
|
|
|
except requests.exceptions.RequestException as e:
|
|
|
|
current_app.logger.error(f"Error occured getting users to give points to: {e.args[0]}")
|
|
|
|
return
|
|
|
|
if r.status_code != 200:
|
|
|
|
current_app.logger.error(f"Error occured when giving points: Response code not 200.")
|
|
|
|
current_app.logger.error(f"Response code received: {r.status_code}.")
|
|
|
|
current_app.logger.error(f"Check owncast instance url and access key.")
|
|
|
|
return
|
2023-03-20 17:16:17 +01:00
|
|
|
unique_users = set(map(lambda user_object: user_object["user"]["id"], r.json()))
|
|
|
|
for user_id in unique_users:
|
2023-06-20 13:41:22 +02:00
|
|
|
give_points_to_user(db, user_id, current_app.config['POINTS_AMOUNT_GIVEN'])
|
2023-03-20 17:16:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
def send_chat(message):
|
|
|
|
url = current_app.config['OWNCAST_INSTANCE_URL'] + '/api/integrations/chat/send'
|
|
|
|
headers = {"Authorization": "Bearer " + current_app.config['OWNCAST_ACCESS_TOKEN']}
|
2023-06-20 13:41:22 +02:00
|
|
|
try:
|
|
|
|
r = requests.post(url, headers=headers, json={"body": message})
|
|
|
|
except requests.exceptions.RequestException as e:
|
|
|
|
current_app.logger.error(f"Error occured sending chat message: {e.args[0]}")
|
|
|
|
return
|
|
|
|
if r.status_code != 200:
|
|
|
|
current_app.logger.error(f"Error occured when sending chat: Response code not 200.")
|
|
|
|
current_app.logger.error(f"Response code received: {r.status_code}.")
|
|
|
|
current_app.logger.error(f"Check owncast instance url and access key.")
|
|
|
|
return
|
2023-03-20 17:16:17 +01:00
|
|
|
return r.json()
|
|
|
|
|