Compare commits

..

No commits in common. "2ffa62387791934292584e2f43a7b2fff222eb13" and "339ef339e4703d21c4f9b2d47c7af7050a3a8f42" have entirely different histories.

1 changed files with 0 additions and 20 deletions

View File

@ -38,25 +38,6 @@ 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()
# 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)
@ -64,7 +45,6 @@ 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)