diff options
author | Matthew Shao <me@matshao.com> | 2017-07-24 20:30:14 +0800 |
---|---|---|
committer | Matthew Shao <me@matshao.com> | 2017-07-24 20:30:14 +0800 |
commit | 6c4dbcc7a7774f7acbad0f1362a94525316d51ff (patch) | |
tree | b342aadb2a416b5b7849109389f5ab44ba16da33 | |
parent | 93cd1562def9e5c760b1b1f6a552440a83bae383 (diff) | |
download | mitmproxy-6c4dbcc7a7774f7acbad0f1362a94525316d51ff.tar.gz mitmproxy-6c4dbcc7a7774f7acbad0f1362a94525316d51ff.tar.bz2 mitmproxy-6c4dbcc7a7774f7acbad0f1362a94525316d51ff.zip |
[web] Update OptManager.save() to suit the need of mitmweb.
-rw-r--r-- | mitmproxy/optmanager.py | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/mitmproxy/optmanager.py b/mitmproxy/optmanager.py index e1d74b8e..83082153 100644 --- a/mitmproxy/optmanager.py +++ b/mitmproxy/optmanager.py @@ -512,13 +512,15 @@ def serialize(opts, text, defaults=False): return ruamel.yaml.round_trip_dump(data) -def save(opts, path, defaults=False): +def save(opts, path=None, defaults=False): """ - Save to path. If the destination file exists, modify it in-place. + If the path is given, save to path, otherwise return the serialized data. + + If the destination file exists, modify it in-place. Raises OptionsError if the existing data is corrupt. """ - if os.path.exists(path) and os.path.isfile(path): + if path and os.path.exists(path) and os.path.isfile(path): with open(path, "rt", encoding="utf8") as f: try: data = f.read() @@ -529,5 +531,9 @@ def save(opts, path, defaults=False): else: data = "" data = serialize(opts, data, defaults) - with open(path, "wt", encoding="utf8") as f: - f.write(data) + + if path: + with open(path, "wt", encoding="utf8") as f: + f.write(data) + else: + return data |