mitmproxy/libmproxy/web/app.py

69 lines
1.8 KiB
Python
Raw Normal View History

2014-09-14 00:22:28 +00:00
import os.path
2014-11-28 18:16:47 +00:00
import sys
2014-09-14 00:22:28 +00:00
import tornado.web
import tornado.websocket
import logging
import json
from .. import flow
2014-09-14 00:22:28 +00:00
class IndexHandler(tornado.web.RequestHandler):
def get(self):
2014-11-28 18:16:47 +00:00
_ = self.xsrf_token # https://github.com/tornadoweb/tornado/issues/645
self.render("index.html")
class WebSocketEventBroadcaster(tornado.websocket.WebSocketHandler):
connections = None # raise an error if inherited class doesn't specify its own instance.
def open(self):
self.connections.add(self)
def on_close(self):
self.connections.remove(self)
@classmethod
2014-12-09 17:55:16 +00:00
def broadcast(cls, **kwargs):
message = json.dumps(kwargs)
for conn in cls.connections:
try:
conn.write_message(message)
except:
logging.error("Error sending message", exc_info=True)
2014-11-28 18:16:47 +00:00
class Flows(tornado.web.RequestHandler):
def get(self):
self.write(dict(
flows=[f.get_state(short=True) for f in self.application.state.flows]
))
2014-11-28 18:16:47 +00:00
class FlowClear(tornado.web.RequestHandler):
def post(self):
self.application.state.clear()
class ClientConnection(WebSocketEventBroadcaster):
connections = set()
2014-09-14 00:22:28 +00:00
class Application(tornado.web.Application):
def __init__(self, state, debug):
self.state = state
2014-09-14 00:22:28 +00:00
handlers = [
(r"/", IndexHandler),
(r"/updates", ClientConnection),
2014-11-28 18:16:47 +00:00
(r"/flows", Flows),
(r"/flows/clear", FlowClear),
2014-09-14 00:22:28 +00:00
]
settings = dict(
template_path=os.path.join(os.path.dirname(__file__), "templates"),
static_path=os.path.join(os.path.dirname(__file__), "static"),
xsrf_cookies=True,
2014-11-28 18:16:47 +00:00
cookie_secret=os.urandom(256),
2014-09-14 00:22:28 +00:00
debug=debug,
)
tornado.web.Application.__init__(self, handlers, **settings)