first version of passive mode

seems to work fine
This commit is contained in:
Lili (Tlapka) 2023-03-13 15:22:40 +01:00
parent 189ffcc1a8
commit 82d9088c18
4 changed files with 72 additions and 60 deletions

View File

@ -3,6 +3,7 @@ OWNCAST_ACCESS_TOKEN=''
OWNCAST_INSTANCE_URL='http://localhost:8080'
POINTS_CYCLE_TIME=600
POINTS_AMOUNT_GIVEN=10
PASSIVE=False
LIST_REDEEMS=False
ACTIVE_CATEGORIES=[]
GUNICORN=False

View File

@ -21,6 +21,7 @@ def dashboard():
counters=all_counters(db),
redeems=current_app.config['REDEEMS'],
prefix=current_app.config['PREFIX'],
passive=current_app.config['PASSIVE'],
username=username,
users=users,
utc_timezone=utc_timezone)

View File

@ -30,6 +30,7 @@ def owncast_webhook():
if data["eventData"]["user"]["authenticated"]:
remove_duplicate_usernames(db, user_id, new_name)
elif data["type"] == "CHAT":
if not current_app.config['PASSIVE']:
prefix = current_app.config['PREFIX']
user_id = data["eventData"]["user"]["id"]
display_name = data["eventData"]["user"]["displayName"]

View File

@ -10,7 +10,9 @@
<div class="tab">
<button class="tablinks" onclick="openTab(event, 'dashboard')", id="defaultOpen">Tlapbot dashboard</button>
{% if not passive %}
<button class="tablinks" onclick="openTab(event, 'redeems-list')">Redeems help</button>
{% endif %}
</div>
<div id='dashboard' class="tabcontent">
@ -32,6 +34,12 @@
</table>
{% endif %}
{% if passive %}
<h3>Tlapbot is currently in passive mode.</h3>
<p>You can't make any redeems, but you will receive points for watching.</p>
{% endif %}
{% if not passive %}
{% if counters %}
<table>
<thead>
@ -73,6 +81,7 @@
{% endfor %}
</table>
{% endif %}
{% endif %}
</body>
</div>