mitmproxy/libpathod/templates/docs_pathod.html

98 lines
2.9 KiB
HTML
Raw Normal View History

2012-06-28 23:53:59 +00:00
{% extends "frame.html" %}
{% block body %}
2012-06-23 23:14:54 +00:00
<div class="page-header">
<h1>
pathod
<small>A pathological web daemon.</small>
</h1>
</div>
<p>At pathod's heart is a small, terse language for crafting HTTP responses,
2012-06-23 22:54:37 +00:00
designed to be easy to specify in a request URL. The simplest way to use
2012-06-24 07:12:52 +00:00
pathod is to fire up the daemon, and specify the response behaviour you
want using this language in the request URL. Here's a minimal example:</p>
2012-06-23 22:54:37 +00:00
<pre class="example">http://localhost:9999/p/200</pre>
2012-06-23 22:54:37 +00:00
<p>Everything after the "/p/" path component is a response specifier - in this
2012-06-23 22:54:37 +00:00
case just a vanilla 200 OK response. See the docs below to get (much) fancier.
2012-06-24 07:12:52 +00:00
You can also add anchors to the pathod server that serve a fixed response
whenever a matching URL is requested:</p>
2012-06-23 22:54:37 +00:00
<pre class="terminal">pathod -a "/foo=200"</pre>
2012-06-23 22:54:37 +00:00
<p>Here, "/foo" a regex specifying the anchor path, and the part after the "=" is
a response specifier.</p>
2012-06-23 22:54:37 +00:00
<p>pathod also has a nifty built-in web interface, which lets you play with
2012-06-23 22:54:37 +00:00
the language by previewing responses, exposes activity logs, online help and
various other goodies. Try it by visiting the server root:</p>
2012-06-23 22:54:37 +00:00
<pre class="example">http://localhost:9999</pre>
2012-06-23 22:54:37 +00:00
<section id="api">
<div class="page-header">
<h1>API</h1>
</div>
<p>pathod exposes a simple API, intended to make it possible to drive and
inspect the daemon remotely for use in unit testing and the like. </p>
<table class="table table-bordered">
<tbody >
<tr>
<td>
/api/clear_log
</td>
<td>
A POST to this URL clears the log buffer.
</td>
</tr>
<tr>
<td>
/api/info
</td>
<td>
Basic version and configuration info.
</td>
</tr>
<tr>
<td>
/api/log
</td>
<td>
Returns the current log buffer. At the moment the buffer size is 500 entries -
when the log grows larger than this, older entries are discarded. The returned
data is a JSON dictionary, with the form:
<pre>{ 'log': [ ENTRIES ] } </pre>
You can preview the JSON data returned for a log entry through the built-in web
interface.
</td>
</tr>
</tbody>
</table>
</section>
<section>
<div class="page-header">
<h1>Error Responses</h1>
</div>
2012-07-22 10:24:16 +00:00
<p>Pathod uses the non-standard 800 response code to indicate internal
errors, to distinguish them from crafted responses. For example, a request
to:</p>
<pre class="example">http://localhost:9999/p/foo</pre>
2012-07-22 10:24:16 +00:00
<p>... will return an 800 response because "foo" is not a valid page
specifier.</p>
</section>
2012-06-28 23:53:59 +00:00
{% endblock %}