mitmproxy/libpathod/app.py
2012-07-24 22:38:48 +12:00

97 lines
2.2 KiB
Python

import logging, pprint, cStringIO
from flask import Flask, jsonify, render_template, request, abort
import version, rparse, utils
logging.basicConfig(level="DEBUG")
app = Flask(__name__)
def api():
@app.route('/api/info')
def api_info():
return jsonify(
version = version.IVERSION
)
@app.route('/api/log')
def api_log():
return jsonify(
log = app.config["pathod"].get_log()
)
@app.route('/api/clear_log')
def api_clear_log():
app.config["pathod"].clear_log()
return "OK"
def render(s, **kwargs):
kwargs["noapi"] = app.config["pathod"].noapi
return render_template(s, **kwargs)
@app.route('/')
@app.route('/index.html')
def index():
return render("index.html", section="main")
@app.route('/docs/pathod')
def docs_pathod():
return render("docs_pathod.html", section="docs")
@app.route('/docs/language')
def docs_language():
return render("docs_lang.html", section="docs")
@app.route('/docs/pathoc')
def docs_pathoc():
return render("docs_pathoc.html", section="docs")
@app.route('/docs/test')
def docs_test():
return render("docs_test.html", section="docs")
@app.route('/log')
def log():
if app.config["pathod"].noapi:
abort(404)
return render("log.html", section="log", log=app.config["pathod"].get_log())
@app.route('/log/<int:lid>')
def onelog(lid):
item = app.config["pathod"].log_by_id(int(lid))
if not item:
abort(404)
l = pprint.pformat(item)
return render("onelog.html", section="log", alog=l, lid=lid)
@app.route('/preview')
def preview():
spec = request.args["spec"]
args = dict(
spec = spec,
section = "main",
syntaxerror = None,
error = None
)
try:
r = rparse.parse_response(app.config["pathod"].request_settings, spec)
except rparse.ParseException, v:
args["syntaxerror"] = str(v)
args["marked"] = v.marked()
return render("preview.html", **args)
s = cStringIO.StringIO()
r.preview_safe()
r.serve(s, check=app.config["pathod"].check_size)
args["output"] = utils.escape_unprintables(s.getvalue())
return render("preview.html", **args)