2015-11-18 21:15:37 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
from tornado import web
|
|
|
|
|
|
|
|
from sprockets.http import mixins, run
|
|
|
|
|
|
|
|
|
|
|
|
class StatusHandler(mixins.ErrorLogger, web.RequestHandler):
|
|
|
|
"""Example that exercises the status code handling of the ErrorLogger."""
|
|
|
|
|
|
|
|
def get(self, status_code):
|
|
|
|
"""
|
|
|
|
Returns the requested status.
|
|
|
|
|
|
|
|
:param int status_code: the status code to return
|
|
|
|
:queryparam str reason: optional reason phrase
|
|
|
|
|
|
|
|
"""
|
|
|
|
status_code = int(status_code)
|
|
|
|
if status_code >= 400:
|
2015-11-19 16:51:34 +00:00
|
|
|
kwargs = {'status_code': status_code}
|
2015-11-18 21:15:37 +00:00
|
|
|
if self.get_query_argument('reason', None):
|
2015-11-19 16:51:34 +00:00
|
|
|
kwargs['reason'] = self.get_query_argument('reason')
|
|
|
|
if self.get_query_argument('log_message', None):
|
|
|
|
kwargs['log_message'] = self.get_query_argument('log_message')
|
|
|
|
self.send_error(**kwargs)
|
2015-11-18 21:15:37 +00:00
|
|
|
else:
|
|
|
|
self.set_status(status_code)
|
|
|
|
|
|
|
|
|
|
|
|
def make_app(**settings):
|
|
|
|
settings['debug'] = True # disable JSON logging
|
|
|
|
return web.Application([
|
|
|
|
web.url(r'/status/(?P<status_code>\d+)', StatusHandler),
|
|
|
|
], **settings)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
run(make_app)
|