2020-04-02 09:59:28 -04:00
|
|
|
#!/usr/bin/env python3
|
2021-05-28 17:00:04 +08:00
|
|
|
import base64
|
2013-08-23 14:49:06 -04:00
|
|
|
import subprocess
|
2021-05-28 17:00:04 +08:00
|
|
|
import sys
|
2023-11-01 16:51:36 -07:00
|
|
|
from pathlib import Path
|
2013-08-23 14:49:06 -04:00
|
|
|
|
|
|
|
short_user = sys.argv[1]
|
|
|
|
api_key = sys.argv[2]
|
|
|
|
ccache_data_encoded = sys.argv[3]
|
|
|
|
|
|
|
|
# Update the Kerberos ticket cache file
|
2021-05-28 19:19:40 +08:00
|
|
|
program_name = f"zmirror-{short_user}"
|
|
|
|
with open(f"/home/zulip/ccache/{program_name}", "wb") as f:
|
2013-08-23 14:49:06 -04:00
|
|
|
f.write(base64.b64decode(ccache_data_encoded))
|
|
|
|
|
|
|
|
# Setup API key
|
2023-11-01 16:51:36 -07:00
|
|
|
api_key_path = Path(f"/home/zulip/api-keys/{program_name}")
|
|
|
|
api_key_path.write_text(api_key + "\n")
|
2013-08-23 14:49:06 -04:00
|
|
|
|
|
|
|
# Setup supervisord configuration
|
2023-11-01 16:51:36 -07:00
|
|
|
supervisor_path = Path(f"/etc/supervisor/conf.d/zmirror/{program_name}.conf")
|
|
|
|
template_path = Path(__file__).parent / "zmirror_private.conf.template"
|
|
|
|
template_data = template_path.read_text()
|
2021-05-28 19:19:40 +08:00
|
|
|
session_path = f"/home/zulip/zephyr_sessions/{program_name}"
|
2013-10-01 13:45:29 -04:00
|
|
|
|
|
|
|
# Preserve mail zephyrs forwarding setting across rewriting the config file
|
|
|
|
|
|
|
|
try:
|
2023-11-01 16:51:36 -07:00
|
|
|
if "--forward-mail-zephyrs" in supervisor_path.read_text():
|
2021-05-28 17:03:46 +08:00
|
|
|
template_data = template_data.replace(
|
|
|
|
"--use-sessions", "--use-sessions --forward-mail-zephyrs"
|
|
|
|
)
|
2023-11-01 19:21:57 -07:00
|
|
|
except FileNotFoundError:
|
2013-10-01 13:45:29 -04:00
|
|
|
pass
|
2023-11-01 16:51:36 -07:00
|
|
|
supervisor_path.write_text(template_data.replace("USERNAME", short_user))
|
2013-08-23 14:49:06 -04:00
|
|
|
|
|
|
|
# Delete your session
|
|
|
|
subprocess.check_call(["rm", "-f", session_path])
|
|
|
|
# Update your supervisor config, which may restart your mirror
|
|
|
|
subprocess.check_call(["supervisorctl", "reread"])
|
|
|
|
subprocess.check_call(["supervisorctl", "update"])
|
|
|
|
# Restart your mirror, in case it wasn't restarted by the previous
|
|
|
|
# (Otherwise if the mirror lost subs, this would do nothing)
|
|
|
|
# TODO: check whether we JUST restarted it first
|
|
|
|
subprocess.check_call(["supervisorctl", "restart", program_name])
|