forked from bton/matekasse
Added cheks to make shure there is no SQLite error
This commit is contained in:
parent
05a5519a59
commit
74850ed77b
1 changed files with 16 additions and 24 deletions
20
main.py
20
main.py
|
@ -117,6 +117,7 @@ def remove_user():
|
||||||
return f'<p>Deleted user {user_name}</p><a href="/list">return to the tags and user list</a>'
|
return f'<p>Deleted user {user_name}</p><a href="/list">return to the tags and user list</a>'
|
||||||
else:
|
else:
|
||||||
return "Error: 043"
|
return "Error: 043"
|
||||||
|
|
||||||
@app.route("/adduser/user", methods=['GET'])
|
@app.route("/adduser/user", methods=['GET'])
|
||||||
def adduser():
|
def adduser():
|
||||||
user = request.args.get("username")
|
user = request.args.get("username")
|
||||||
|
@ -132,11 +133,13 @@ def adduser():
|
||||||
|
|
||||||
@app.route("/change", methods=['GET'])
|
@app.route("/change", methods=['GET'])
|
||||||
def change():
|
def change():
|
||||||
user_id = int(request.args.get("id"))
|
|
||||||
try:
|
try:
|
||||||
|
user_id = int(request.args.get("id"))
|
||||||
change = int(request.args.get("change"))
|
change = int(request.args.get("change"))
|
||||||
except ValueError:
|
except ValueError:
|
||||||
return '<p>Error: 095</p><a href="/list">tags and user list</a>'
|
return '<p>Error: 095</p><a href="/list">tags and user list</a>'
|
||||||
|
c.execute(f"SELCET * FROM users WHERE id={user_id}")
|
||||||
|
if c.fetchall != []:
|
||||||
c.execute(f"UPDATE users SET balance = balance + {change} WHERE id={user_id}")
|
c.execute(f"UPDATE users SET balance = balance + {change} WHERE id={user_id}")
|
||||||
socketio.emit("update", "update")
|
socketio.emit("update", "update")
|
||||||
return """<html>
|
return """<html>
|
||||||
|
@ -146,19 +149,8 @@ def change():
|
||||||
</script>
|
</script>
|
||||||
</html>
|
</html>
|
||||||
"""
|
"""
|
||||||
#socketio.emit("update", "update")
|
else:
|
||||||
#conn.commit()
|
return "Error: 043"
|
||||||
#if change < 0:
|
|
||||||
# text = "removed from"
|
|
||||||
# change_text = change * -1
|
|
||||||
#elif change > 0:
|
|
||||||
# text = "added to"
|
|
||||||
# change_text = change
|
|
||||||
#elif change == 0:
|
|
||||||
# return "<p>Nothing was done!</p>"
|
|
||||||
#c.execute(f"SELECT * FROM users WHERE id={user_id}")
|
|
||||||
#user = c.fetchall()[0][1]
|
|
||||||
#return f'<p>{change_text} was {text} {user}</p> <a href="/list">back to the list</a>'
|
|
||||||
|
|
||||||
@app.route("/addtag", methods=['GET'])
|
@app.route("/addtag", methods=['GET'])
|
||||||
def get_addtag_request():
|
def get_addtag_request():
|
||||||
|
|
Loading…
Reference in a new issue