mitmproxy/libpathod/app.py

151 lines
3.7 KiB
Python
Raw Normal View History

import logging, pprint, cStringIO
from flask import Flask, jsonify, render_template, request, abort, make_response
2012-10-04 21:30:32 +00:00
import version, language, utils
2012-06-21 04:25:27 +00:00
logging.basicConfig(level="DEBUG")
2012-06-19 04:57:57 +00:00
app = Flask(__name__)
2012-06-19 01:23:07 +00:00
def api():
@app.route('/api/info')
def api_info():
return jsonify(
version = version.IVERSION
)
2012-06-19 04:57:57 +00:00
@app.route('/api/log')
def api_log():
return jsonify(
log = app.config["pathod"].get_log()
)
2012-06-19 01:23:07 +00:00
@app.route('/api/clear_log')
def api_clear_log():
app.config["pathod"].clear_log()
return "OK"
2012-06-19 01:23:07 +00:00
def render(s, cacheable, **kwargs):
2012-07-24 10:27:04 +00:00
kwargs["noapi"] = app.config["pathod"].noapi
kwargs["nocraft"] = app.config["pathod"].nocraft
kwargs["craftanchor"] = app.config["pathod"].craftanchor
resp = make_response(render_template(s, **kwargs), 200)
if cacheable:
resp.headers["Cache-control"] = "public, max-age=4320"
return resp
2012-07-24 10:27:04 +00:00
2012-06-21 04:25:27 +00:00
@app.route('/')
@app.route('/index.html')
def index():
return render("index.html", True, section="main")
2012-07-25 00:39:51 +00:00
2012-07-24 23:55:44 +00:00
2012-08-23 00:54:58 +00:00
@app.route('/download')
@app.route('/download.html')
def download():
2012-08-24 23:30:55 +00:00
return render("download.html", True, section="download", version=version.VERSION)
2012-08-23 00:54:58 +00:00
2012-07-24 23:55:44 +00:00
@app.route('/about')
@app.route('/about.html')
def about():
return render("about.html", True, section="about")
2012-06-28 23:53:59 +00:00
@app.route('/docs/pathod')
def docs_pathod():
return render("docs_pathod.html", True, section="docs")
2012-06-28 23:53:59 +00:00
2012-07-22 10:24:16 +00:00
@app.route('/docs/language')
def docs_language():
return render("docs_lang.html", True, section="docs")
2012-07-22 10:24:16 +00:00
2012-06-28 23:53:59 +00:00
@app.route('/docs/pathoc')
def docs_pathoc():
return render("docs_pathoc.html", True, section="docs")
2012-06-28 23:53:59 +00:00
2012-10-03 23:17:35 +00:00
@app.route('/docs/libpathod')
def docs_libpathod():
return render("docs_libpathod.html", True, section="docs")
2012-06-28 23:53:59 +00:00
@app.route('/docs/test')
def docs_test():
return render("docs_test.html", True, section="docs")
2012-06-23 23:14:54 +00:00
@app.route('/log')
def log():
2012-07-24 10:27:04 +00:00
if app.config["pathod"].noapi:
abort(404)
return render("log.html", False, section="log", log=app.config["pathod"].get_log())
2012-06-23 23:14:54 +00:00
2012-06-21 04:25:27 +00:00
@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", False, section="log", alog=l, lid=lid)
2012-06-21 04:25:27 +00:00
def _preview(is_request):
if is_request:
template = "request_preview.html"
else:
template = "response_preview.html"
spec = request.args["spec"]
args = dict(
spec = spec,
section = "main",
syntaxerror = None,
error = None,
pauses = None
)
if not spec.strip():
args["error"] = "Can't parse an empty spec."
return render(template, False, **args)
try:
if is_request:
2012-10-04 21:30:32 +00:00
r = language.parse_request(app.config["pathod"].request_settings, spec)
else:
2012-10-04 21:30:32 +00:00
r = language.parse_response(app.config["pathod"].request_settings, spec)
except language.ParseException, v:
args["syntaxerror"] = str(v)
args["marked"] = v.marked()
return render(template, False, **args)
2012-10-04 21:30:32 +00:00
except language.FileAccessDenied:
args["error"] = "File access is disabled."
return render(template, False, **args)
s = cStringIO.StringIO()
args["pauses"] = r.preview_safe()
if is_request:
r.serve(app.config["pathod"].request_settings, s, check=app.config["pathod"].check_policy, host="example.com")
else:
r.serve(app.config["pathod"].request_settings, s, check=app.config["pathod"].check_policy)
2012-07-23 04:39:25 +00:00
args["output"] = utils.escape_unprintables(s.getvalue())
return render(template, False, **args)
@app.route('/response_preview')
def response_preview():
return _preview(False)
@app.route('/request_preview')
def request_preview():
return _preview(True)