2014-03-10 21:36:47 +00:00
|
|
|
from __future__ import absolute_import
|
2015-03-13 12:14:37 +00:00
|
|
|
|
2012-02-07 03:39:37 +00:00
|
|
|
import urwid
|
2015-03-13 12:14:37 +00:00
|
|
|
|
2015-03-22 04:18:53 +00:00
|
|
|
from . import common, signals
|
2012-03-22 01:57:57 +00:00
|
|
|
from .. import filt, version
|
|
|
|
|
|
|
|
footer = [
|
|
|
|
("heading", 'mitmproxy v%s '%version.VERSION),
|
|
|
|
('heading_key', "q"), ":back ",
|
|
|
|
]
|
2012-02-07 03:39:37 +00:00
|
|
|
|
2015-03-13 12:14:37 +00:00
|
|
|
|
2012-02-07 03:39:37 +00:00
|
|
|
class HelpView(urwid.ListBox):
|
2015-03-22 04:18:53 +00:00
|
|
|
def __init__(self, help_context):
|
2012-02-08 08:47:39 +00:00
|
|
|
self.help_context = help_context or []
|
2012-02-07 03:39:37 +00:00
|
|
|
urwid.ListBox.__init__(
|
|
|
|
self,
|
|
|
|
self.helptext()
|
|
|
|
)
|
|
|
|
|
|
|
|
def helptext(self):
|
|
|
|
text = []
|
2012-08-31 01:28:04 +00:00
|
|
|
text.append(urwid.Text([("head", "This view:\n")]))
|
2012-02-08 08:47:39 +00:00
|
|
|
text.extend(self.help_context)
|
|
|
|
|
2012-02-11 05:23:07 +00:00
|
|
|
text.append(urwid.Text([("head", "\n\nMovement:\n")]))
|
2012-02-08 09:55:48 +00:00
|
|
|
keys = [
|
2014-09-19 15:56:54 +00:00
|
|
|
("j, k", "down, up"),
|
2012-02-08 09:55:48 +00:00
|
|
|
("h, l", "left, right (in some contexts)"),
|
2015-04-07 04:13:42 +00:00
|
|
|
("g, G", "go to end, beginning"),
|
2012-02-08 09:55:48 +00:00
|
|
|
("space", "page down"),
|
|
|
|
("pg up/down", "page up/down"),
|
|
|
|
("arrows", "up, down, left, right"),
|
|
|
|
]
|
|
|
|
text.extend(common.format_keyvals(keys, key="key", val="text", indent=4))
|
|
|
|
|
2012-02-11 05:23:07 +00:00
|
|
|
text.append(urwid.Text([("head", "\n\nGlobal keys:\n")]))
|
2012-02-07 03:39:37 +00:00
|
|
|
keys = [
|
|
|
|
("c", "client replay"),
|
|
|
|
("i", "set interception pattern"),
|
2015-04-03 06:10:12 +00:00
|
|
|
("o", "options"),
|
2015-04-06 05:27:46 +00:00
|
|
|
("q", "quit / return to previous page"),
|
2012-02-07 03:39:37 +00:00
|
|
|
("Q", "quit without confirm prompt"),
|
|
|
|
("S", "server replay"),
|
|
|
|
]
|
2015-03-13 12:14:37 +00:00
|
|
|
text.extend(
|
|
|
|
common.format_keyvals(keys, key="key", val="text", indent=4)
|
|
|
|
)
|
2012-02-07 03:39:37 +00:00
|
|
|
|
2012-02-11 05:23:07 +00:00
|
|
|
text.append(urwid.Text([("head", "\n\nFilter expressions:\n")]))
|
2012-02-07 03:39:37 +00:00
|
|
|
f = []
|
|
|
|
for i in filt.filt_unary:
|
|
|
|
f.append(
|
|
|
|
("~%s"%i.code, i.help)
|
|
|
|
)
|
|
|
|
for i in filt.filt_rex:
|
|
|
|
f.append(
|
|
|
|
("~%s regex"%i.code, i.help)
|
|
|
|
)
|
|
|
|
for i in filt.filt_int:
|
|
|
|
f.append(
|
|
|
|
("~%s int"%i.code, i.help)
|
|
|
|
)
|
|
|
|
f.sort()
|
|
|
|
f.extend(
|
|
|
|
[
|
|
|
|
("!", "unary not"),
|
|
|
|
("&", "and"),
|
|
|
|
("|", "or"),
|
|
|
|
("(...)", "grouping"),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
text.extend(common.format_keyvals(f, key="key", val="text", indent=4))
|
|
|
|
|
2012-02-11 05:23:07 +00:00
|
|
|
text.append(
|
|
|
|
urwid.Text(
|
|
|
|
[
|
|
|
|
"\n",
|
|
|
|
("text", " Regexes are Python-style.\n"),
|
|
|
|
("text", " Regexes can be specified as quoted strings.\n"),
|
|
|
|
("text", " Header matching (~h, ~hq, ~hs) is against a string of the form \"name: value\".\n"),
|
|
|
|
("text", " Expressions with no operators are regex matches against URL.\n"),
|
|
|
|
("text", " Default binary operator is &.\n"),
|
|
|
|
("head", "\n Examples:\n"),
|
|
|
|
]
|
|
|
|
)
|
2012-02-07 03:39:37 +00:00
|
|
|
)
|
|
|
|
examples = [
|
|
|
|
("google\.com", "Url containing \"google.com"),
|
|
|
|
("~q ~b test", "Requests where body contains \"test\""),
|
|
|
|
("!(~q & ~t \"text/html\")", "Anything but requests with a text/html content type."),
|
|
|
|
]
|
2015-03-13 12:14:37 +00:00
|
|
|
text.extend(
|
|
|
|
common.format_keyvals(examples, key="key", val="text", indent=4)
|
|
|
|
)
|
2012-02-11 05:23:07 +00:00
|
|
|
return text
|
2012-02-07 03:39:37 +00:00
|
|
|
|
2012-06-03 08:11:07 +00:00
|
|
|
def keypress(self, size, key):
|
|
|
|
key = common.shortcuts(key)
|
|
|
|
if key == "q":
|
2015-03-22 04:18:53 +00:00
|
|
|
signals.pop_view_state.send(self)
|
2012-06-03 08:11:07 +00:00
|
|
|
return None
|
|
|
|
elif key == "?":
|
|
|
|
key = None
|
2015-04-17 01:30:49 +00:00
|
|
|
elif key == "G":
|
|
|
|
self.set_focus(0)
|
|
|
|
elif key == "g":
|
|
|
|
self.set_focus(len(self.body.contents))
|
2012-06-03 08:11:07 +00:00
|
|
|
return urwid.ListBox.keypress(self, size, key)
|