mirror of https://github.com/zulip/zulip.git
63 lines
1.7 KiB
Plaintext
63 lines
1.7 KiB
Plaintext
|
#!/usr/bin/env python3
|
||
|
|
||
|
import difflib
|
||
|
import os
|
||
|
import re
|
||
|
import sys
|
||
|
|
||
|
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||
|
sys.path.append(BASE_DIR)
|
||
|
from scripts.lib.setup_path import setup_path
|
||
|
|
||
|
setup_path()
|
||
|
|
||
|
|
||
|
current_path = "/etc/zulip/settings.py"
|
||
|
if len(sys.argv) >= 2:
|
||
|
current_path = sys.argv[1]
|
||
|
|
||
|
print(f"Reading current configuration from {current_path}...")
|
||
|
with open(current_path, "r") as f:
|
||
|
current_contents = f.read()
|
||
|
|
||
|
import requests
|
||
|
|
||
|
print("Fetching old versions of setting templates from Github...")
|
||
|
templ = {}
|
||
|
resp = requests.get("https://api.github.com/repos/zulip/zulip/tags")
|
||
|
if resp.status_code != 200:
|
||
|
print(resp.content)
|
||
|
sys.exit(1)
|
||
|
|
||
|
for tag in [t["name"] for t in resp.json()]:
|
||
|
if re.match(r"^\d+\.\d+(\.\d+)?$", tag):
|
||
|
print(f" - {tag}")
|
||
|
resp = requests.get(
|
||
|
f"https://raw.githubusercontent.com/zulip/zulip/{tag}/zproject/prod_settings_template.py",
|
||
|
)
|
||
|
if resp.status_code == 200:
|
||
|
templ[tag] = resp.content.decode("utf-8")
|
||
|
else:
|
||
|
print("Failure: ")
|
||
|
print(resp)
|
||
|
|
||
|
print("Computing minimal difference...")
|
||
|
sequence_matchers = {}
|
||
|
for version, contents in templ.items():
|
||
|
sm = difflib.SequenceMatcher(None, current_contents, contents)
|
||
|
sequence_matchers[version] = sm
|
||
|
|
||
|
likely = sorted(sequence_matchers.keys(), key=lambda v: sequence_matchers[v].ratio(), reverse=True)
|
||
|
print(f"Most likely version: {likely[0]}")
|
||
|
|
||
|
|
||
|
diff = difflib.unified_diff(
|
||
|
templ[likely[0]].splitlines(keepends=True),
|
||
|
current_contents.splitlines(keepends=True),
|
||
|
fromfile="zulip-server-{version}/zproject/prod_settings_template.py",
|
||
|
tofile=current_path,
|
||
|
)
|
||
|
|
||
|
print()
|
||
|
print("".join(diff), end="")
|