55 lines
1.4 KiB
Python
55 lines
1.4 KiB
Python
import json
|
|
|
|
import tornado.web
|
|
import tornado.gen
|
|
|
|
from common.sentry import sentry
|
|
from common.web import requestsManager
|
|
from constants import exceptions
|
|
from objects import glob
|
|
|
|
|
|
class handler(requestsManager.asyncRequestHandler):
|
|
@tornado.web.asynchronous
|
|
@tornado.gen.engine
|
|
@sentry.captureTornado
|
|
def asyncGet(self):
|
|
statusCode = 400
|
|
data = {"message": "unknown error"}
|
|
try:
|
|
# Check arguments
|
|
if not requestsManager.checkArguments(self.request.arguments, ["u"]):
|
|
raise exceptions.invalidArgumentsException()
|
|
|
|
# Get userID and its verified cache thing
|
|
# -1: Not in cache
|
|
# 0: Not verified (multiacc)
|
|
# 1: Verified
|
|
userID = self.get_argument("u")
|
|
data["result"] = -1 if userID not in glob.verifiedCache else glob.verifiedCache[userID]
|
|
|
|
# Status code and message
|
|
statusCode = 200
|
|
data["message"] = "ok"
|
|
except exceptions.invalidArgumentsException:
|
|
statusCode = 400
|
|
data["message"] = "missing required arguments"
|
|
finally:
|
|
# Add status code to data
|
|
data["status"] = statusCode
|
|
|
|
# Send response
|
|
self.add_header("Access-Control-Allow-Origin", "*")
|
|
self.add_header("Content-Type", "application/json")
|
|
|
|
# jquery meme
|
|
output = ""
|
|
if "callback" in self.request.arguments:
|
|
output += self.get_argument("callback")+"("
|
|
output += json.dumps(data)
|
|
if "callback" in self.request.arguments:
|
|
output += ")"
|
|
|
|
self.write(output)
|
|
self.set_status(statusCode)
|