pep.py/handlers/apiServerStatusHandler.py

27 lines
582 B
Python
Raw Normal View History

2016-06-02 20:33:39 +00:00
import json
2016-10-02 20:48:14 +00:00
from common.web import requestsManager
2016-06-02 20:33:39 +00:00
from objects import glob
2016-10-02 20:48:14 +00:00
class handler(requestsManager.asyncRequestHandler):
2016-06-02 20:33:39 +00:00
def asyncGet(self):
statusCode = 400
data = {"message": "unknown error"}
try:
# Get online users count
data["result"] = -1 if glob.restarting == True else 1
# Status code and message
statusCode = 200
data["message"] = "ok"
finally:
# Add status code to data
data["status"] = statusCode
# Send response
#self.clear()
self.write(json.dumps(data))
2016-06-02 20:33:39 +00:00
self.set_status(statusCode)
#self.finish(json.dumps(data))