mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
9af8f4bb31
This commit is largely based on work by Thiago Arrais (@thiagoarrais) and Shane Bradfield (@l33tLumberjack). I wasn't really able to get their PR reasonably merged onto the latest master, so I reapplied their changes manually here and did some further improvements on that.
29 lines
699 B
Python
29 lines
699 B
Python
"""
|
|
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 :)
|
|
prompt = ("swap case text", "p")
|
|
content_types = ["text/plain"]
|
|
|
|
def __call__(self, data: bytes, **metadata):
|
|
return "case-swapped text", contentviews.format_text(data.swapcase())
|
|
|
|
|
|
view = ViewSwapCase()
|
|
|
|
|
|
def start():
|
|
contentviews.add(view)
|
|
|
|
|
|
def done():
|
|
contentviews.remove(view)
|