Modified files: backend.py

Added new "/cache/" endpoint
main
Anorak_1 2022-11-08 16:21:13 +01:00
parent 339ef339e4
commit 8233183210
1 changed files with 21 additions and 0 deletions

View File

@ -38,6 +38,26 @@ class LeaderGetAPI(Resource):
# dictionary of leaderboard is json, encoding using json.dumps results in double encoding with "" and return to browser as type string
return list(leaderboard)
class LeaderGetCacheAPI(Resource):
def post(self):
data = request.get_json()
print(data)
# Pylance error seems to be fine, no problems I guess
gamemap = data['map']
dbcon = sqlite3.connect("leaderboard.db")
db = dbcon.cursor()
leaderboard = db.execute(f"SELECT time_username,time_time FROM leaderboard WHERE time_map = '{gamemap}' ORDER BY time_time LIMIT 10").fetchall()
db.close()
dbcon.close()
# dictionary of leaderboard is json, encoding using json.dumps results in double encoding with "" and return to browser as type string
#leaderwmap = gamemap + list(leaderboard)
#print(leaderwmap)
leaderwmap = {
"map": gamemap,
"leaderboard": list(leaderboard)
}
return leaderwmap
class TokenAPI(Resource):
def get(self):
print(request.remote_addr)
@ -45,6 +65,7 @@ class TokenAPI(Resource):
api.add_resource(LeaderGetAPI, "/get/")
api.add_resource(LeaderPostAPI, "/post/")
api.add_resource(TokenAPI, "/token/")
api.add_resource(LeaderGetCacheAPI, "/cache/")
if __name__ == "__main__":
app.run(host="0.0.0.0", port=25540)