remove CLI db stuff from owncast helpers

was moved to db.py
This commit is contained in:
Lili (Tlapka) 2022-11-07 17:30:20 +01:00
parent 72800a6311
commit ee1eb66567
1 changed files with 0 additions and 20 deletions

View File

@ -1,7 +1,6 @@
from flask import current_app from flask import current_app
import requests import requests
from sqlite3 import Error from sqlite3 import Error
import click
from flask.cli import with_appcontext from flask.cli import with_appcontext
from tlapbot.db import get_db from tlapbot.db import get_db
@ -160,17 +159,6 @@ def add_to_redeem_queue(db, user_id, redeem_name, note=None):
print("To user:", user_id, " with redeem:", redeem_name, "with note:", note) print("To user:", user_id, " with redeem:", redeem_name, "with note:", note)
def clear_redeem_queue(db):
try:
cursor = db.execute(
"DELETE FROM redeem_queue"
)
cursor.execute(
"""UPDATE counters SET count = 0"""
)
db.commit()
except Error as e:
print("Error occured deleting redeem queue:", e.args[0])
def all_counters(db): def all_counters(db):
@ -217,11 +205,3 @@ def remove_duplicate_usernames(db, user_id, username):
db.commit() db.commit()
except Error as e: except Error as e:
print("Error occured removing duplicate usernames:", e.args[0]) print("Error occured removing duplicate usernames:", e.args[0])
@click.command('clear-queue')
@with_appcontext
def clear_queue_command():
"""Remove all redeems from the redeem queue."""
clear_redeem_queue(get_db())
click.echo('Cleared redeem queue.')