mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
66 lines
1.8 KiB
Python
66 lines
1.8 KiB
Python
import json, threading, Queue
|
|
import requests
|
|
import pathod, utils
|
|
import tutils
|
|
|
|
IFACE = "127.0.0.1"
|
|
|
|
class Daemon:
|
|
def __init__(self, staticdir=None, anchors=(), ssl=None):
|
|
self.q = Queue.Queue()
|
|
self.thread = PaThread(self.q, ssl, staticdir)
|
|
self.thread.start()
|
|
self.port = self.q.get(True, 5)
|
|
self.urlbase = "%s://%s:%s"%("https" if ssl else "http", IFACE, self.port)
|
|
|
|
def info(self):
|
|
"""
|
|
Return some basic info about the remote daemon.
|
|
"""
|
|
resp = requests.get("%s/api/info"%self.urlbase, verify=False)
|
|
return resp.json
|
|
|
|
def log(self):
|
|
"""
|
|
Return the log buffer as a list of dictionaries.
|
|
"""
|
|
resp = requests.get("%s/api/log"%self.urlbase, verify=False)
|
|
return resp.json["log"]
|
|
|
|
def clear_log(self):
|
|
"""
|
|
Clear the log.
|
|
"""
|
|
resp = requests.get("%s/api/clear_log"%self.urlbase, verify=False)
|
|
return resp.ok
|
|
|
|
def shutdown(self):
|
|
"""
|
|
Shut the daemon down, return after the thread has exited.
|
|
"""
|
|
self.thread.server.shutdown()
|
|
self.thread.join()
|
|
|
|
|
|
class PaThread(threading.Thread):
|
|
def __init__(self, q, ssl, staticdir):
|
|
threading.Thread.__init__(self)
|
|
self.q, self.ssl, self.staticdir = q, ssl, staticdir
|
|
self.port = None
|
|
|
|
def run(self):
|
|
if self.ssl is True:
|
|
ssloptions = dict(
|
|
keyfile = utils.data.path("resources/server.key"),
|
|
certfile = utils.data.path("resources/server.crt"),
|
|
)
|
|
else:
|
|
ssloptions = self.ssl
|
|
self.server = pathod.Pathod(
|
|
(IFACE, 0),
|
|
ssloptions = ssloptions,
|
|
staticdir = self.staticdir
|
|
)
|
|
self.q.put(self.server.port)
|
|
self.server.serve_forever()
|