From 9c009a872ef02f3692c1b6eb1d729a1e79eed086 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Sun, 2 Sep 2012 11:50:17 +1200 Subject: Add U shortcut to add user-agent strings to global Headers editor. --- libmproxy/console/grideditor.py | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/libmproxy/console/grideditor.py b/libmproxy/console/grideditor.py index 0c07b60d..314d6e88 100644 --- a/libmproxy/console/grideditor.py +++ b/libmproxy/console/grideditor.py @@ -397,7 +397,6 @@ class HeaderEditor(GridEditor): headings = ("Key", "Value") def make_help(self): h = GridEditor.make_help(self) - text = [] text.append(urwid.Text([("text", "Special keys:\n")])) keys = [ @@ -460,6 +459,38 @@ class SetHeadersEditor(GridEditor): return "Invalid filter specification" return False + def make_help(self): + h = GridEditor.make_help(self) + text = [] + text.append(urwid.Text([("text", "Special keys:\n")])) + keys = [ + ("U", "add User-Agent header"), + ] + text.extend(common.format_keyvals(keys, key="key", val="text", indent=4)) + text.append(urwid.Text([("text", "\n")])) + text.extend(h) + return text + + def set_user_agent(self, k): + ua = http_uastrings.get_by_shortcut(k) + if ua: + self.walker.add_value( + [ + ".*", + "User-Agent", + ua[2] + ] + ) + + def handle_key(self, key): + if key == "U": + self.master.prompt_onekey( + "Add User-Agent header:", + [(i[0], i[1]) for i in http_uastrings.UASTRINGS], + self.set_user_agent, + ) + return True + class PathEditor(GridEditor): title = "Editing URL path components" -- cgit v1.2.3