sprockets.http/examples.py

65 lines
1.8 KiB
Python
Raw Permalink Normal View History

from tornado import web
from sprockets.http import app, mixins
import sprockets.http
2015-11-19 22:29:07 +00:00
class StatusHandler(mixins.ErrorLogger, mixins.ErrorWriter,
web.RequestHandler):
"""Example that exercises the mix-ins in this library."""
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}
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)
else:
self.set_status(status_code)
class Application(app.Application):
def __init__(self, **kwargs):
kwargs['debug'] = True
2018-11-27 00:24:30 +00:00
super().__init__(
[web.url(r'/status/(?P<status_code>\d+)', StatusHandler)],
**kwargs)
if __name__ == '__main__':
sprockets.http.run(
Application,
settings={'port': 8888},
log_config={
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'readable': {
'format': '%(levelname)-13s %(name)s: %(message)s',
}
},
'handlers': {
'console': {
'class': 'logging.StreamHandler',
'formatter': 'readable',
'stream': 'ext://sys.stdout',
}
},
'root': {
'level': 'DEBUG',
'handlers': ['console'],
}
},
)