2016-11-21 01:16:20 +00:00
|
|
|
"""
|
|
|
|
This example shows how one can add a custom contentview to mitmproxy.
|
|
|
|
The content view API is explained in the mitmproxy.contentviews module.
|
|
|
|
"""
|
|
|
|
from mitmproxy import contentviews
|
|
|
|
|
|
|
|
|
|
|
|
class ViewSwapCase(contentviews.View):
|
|
|
|
name = "swapcase"
|
|
|
|
|
|
|
|
# We don't have a good solution for the keyboard shortcut yet -
|
|
|
|
# you manually need to find a free letter. Contributions welcome :)
|
2017-02-19 11:37:50 +00:00
|
|
|
prompt = ("swap case text", "z")
|
2016-11-21 01:16:20 +00:00
|
|
|
content_types = ["text/plain"]
|
|
|
|
|
2017-05-26 14:14:20 +00:00
|
|
|
def __call__(self, data, **metadata) -> contentviews.TViewResult:
|
2016-11-21 01:16:20 +00:00
|
|
|
return "case-swapped text", contentviews.format_text(data.swapcase())
|
|
|
|
|
|
|
|
|
|
|
|
view = ViewSwapCase()
|
|
|
|
|
|
|
|
|
2017-03-23 22:29:36 +00:00
|
|
|
def load(l):
|
2016-11-21 01:16:20 +00:00
|
|
|
contentviews.add(view)
|
|
|
|
|
|
|
|
|
|
|
|
def done():
|
|
|
|
contentviews.remove(view)
|