move clear-queue to db, add refresh-counters to db

This commit is contained in:
Lili (Tlapka) 2022-11-07 16:42:45 +01:00
parent 2c3109901c
commit 657854eb5d
1 changed files with 53 additions and 1 deletions

View File

@ -27,7 +27,7 @@ def insert_counters(db):
for redeem, redeem_info in current_app.config['REDEEMS'].items():
if redeem_info["type"] == "counter":
try:
cursor = db.execute(
db.execute(
"INSERT INTO counters(name, count) VALUES(?, 0)",
(redeem,)
)
@ -45,6 +45,42 @@ def init_db():
insert_counters(db)
def clear_redeem_queue():
db = get_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 refresh_counters():
db = get_db()
try:
db.execute("DELETE FROM counters")
db.commit()
except Error as e:
print("Error occured deleting old counters:", e.args[0])
for redeem, redeem_info in current_app.config['REDEEMS'].items():
if redeem_info["type"] == "counter":
try:
cursor = db.execute(
"INSERT INTO counters(name, count) VALUES(?, 0)",
(redeem,)
)
db.commit()
except Error as e:
print("Failed inserting counters to db:", e.args[0])
@click.command('init-db')
@with_appcontext
def init_db_command():
@ -53,6 +89,22 @@ def init_db_command():
click.echo('Initialized the database.')
@click.command('clear-queue')
@with_appcontext
def clear_queue_command():
"""Remove all redeems from the redeem queue."""
clear_redeem_queue()
click.echo('Cleared redeem queue.')
@click.command('refresh-counters')
@with_appcontext
def refresh_counters_command():
"""Refresh counters from current config file. (Remove old ones, add new ones.)"""
refresh_counters()
click.echo('Counters refreshed.')
def init_app(app):
app.teardown_appcontext(close_db)
app.cli.add_command(init_db_command)