osu-wayback/api/v1/getFile.py

69 lines
1.5 KiB
Python
Raw Normal View History

2019-03-11 13:25:39 +01:00
import traceback
2019-03-11 07:06:31 +01:00
import json
2019-03-08 11:12:47 +01:00
import tornado.gen
import tornado.web
2019-03-11 14:41:55 +01:00
from helpers import validatorHelper
2019-03-11 07:06:31 +01:00
from web import asyncTornado
from constants import argumentTypes
2018-05-29 13:38:35 +02:00
from objects import glob
2019-03-11 14:41:55 +01:00
class handler(asyncTornado.asyncRequestHandler):
ARGS = {
("file_hash", "file_version", "timestamp"): argumentTypes.one_required
}
2019-03-11 07:06:31 +01:00
2019-03-11 14:41:55 +01:00
ARGS_VALIDATION = {
validatorHelper.HEX: ["file_hash"],
validatorHelper.INT: ["file_version", "timestamp"]
}
SQL_STRUCT = {
"main": "SELECT * FROM updates WHERE %s LIMIT 1",
"file_hash": "%s = '%s'",
"file_version": "%s = %s",
"timestamp": "timestamp <= '%s' ORDER BY timestamp DESC"
}
2019-03-11 07:06:31 +01:00
@tornado.web.asynchronous
@tornado.gen.engine
def asyncGet(self):
status_code = 400
data = {}
try:
2019-03-11 14:41:55 +01:00
args_filter = asyncTornado.check_arguments(self)
2019-03-11 13:25:39 +01:00
if not args_filter:
2019-03-11 07:06:31 +01:00
raise Exception("Missing required arguments")
method = args_filter[0]
2019-03-11 07:51:05 +01:00
method_value = self.get_argument(method)
2019-03-11 07:06:31 +01:00
2019-03-11 07:51:05 +01:00
conn = glob.new_sql()
cur = conn.cursor()
2019-03-11 07:06:31 +01:00
2019-03-11 14:41:55 +01:00
sql = self.SQL_STRUCT["main"] % self.SQL_STRUCT[method]
2019-03-11 07:06:31 +01:00
if method == "timestamp":
sql = sql % method_value
else:
sql = sql % (method, method_value)
2018-05-29 13:38:35 +02:00
2019-03-11 07:06:31 +01:00
cur.execute(sql)
data = cur.fetchone()
2018-05-29 13:38:35 +02:00
2019-03-11 07:27:54 +01:00
cur.close()
2019-03-11 07:51:05 +01:00
conn.close()
2019-03-11 07:27:54 +01:00
2019-03-11 07:06:31 +01:00
status_code = 200
except Exception as e:
status_code = 400
data["status"] = status_code
2019-03-11 07:28:53 +01:00
data["message"] = str(e)
2019-03-11 07:51:05 +01:00
print("Err: %s" % e)
2019-03-11 13:25:39 +01:00
traceback.print_exc()
2019-03-11 07:06:31 +01:00
finally:
self.write( json.dumps(data) )
self.set_header("Content-Type", "application/json")
self.set_status(status_code)