2023-10-04 03:00:19 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
|
|
|
|
from argparse import ArgumentParser
|
|
|
|
import glob
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
|
|
|
import requests
|
|
|
|
|
|
|
|
BASE_URL = "https://www.freedesktop.org/software/systemd/man/"
|
|
|
|
JQUERY_URL = "https://code.jquery.com/jquery-3.7.1.min.js"
|
|
|
|
SCRIPT_TAG = '<script src="{}"></script>'
|
|
|
|
|
|
|
|
NAV_JS = """
|
|
|
|
$(document).ready(function() {
|
|
|
|
$.getJSON("../index.json", function(data) {
|
|
|
|
data.sort().reverse();
|
|
|
|
|
|
|
|
var [filename, dirname] = window.location.pathname.split("/").reverse();
|
|
|
|
|
|
|
|
var items = [];
|
|
|
|
$.each( data, function(_, version) {
|
|
|
|
if (version == dirname) {
|
|
|
|
items.push( "<option selected value='" + version + "'>" + "systemd " + version + "</option>");
|
|
|
|
} else if (dirname == "latest" && version == data[0]) {
|
|
|
|
items.push( "<option selected value='" + version + "'>" + "systemd " + version + "</option>");
|
|
|
|
} else {
|
|
|
|
items.push( "<option value='" + version + "'>" + "systemd " + version + "</option>");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$("span:first").html($( "<select/>", {
|
|
|
|
id: "version-selector",
|
|
|
|
html: items.join( "" )
|
|
|
|
}));
|
|
|
|
|
|
|
|
$("#version-selector").on("change", function() {
|
|
|
|
window.location.assign("../" + $(this).val() + "/" + filename);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
def process_file(filename):
|
|
|
|
with open(filename) as f:
|
|
|
|
contents = f.read()
|
|
|
|
|
|
|
|
if SCRIPT_TAG.format("../nav.js") in contents:
|
|
|
|
return
|
|
|
|
|
|
|
|
body_tag = re.search("<body[^>]*>", contents)
|
|
|
|
new_contents = (
|
|
|
|
contents[: body_tag.end()]
|
|
|
|
+ SCRIPT_TAG.format(JQUERY_URL)
|
|
|
|
+ SCRIPT_TAG.format("../nav.js")
|
|
|
|
+ contents[body_tag.end() :]
|
|
|
|
)
|
|
|
|
|
|
|
|
with open(filename, "w") as f:
|
|
|
|
f.write(new_contents)
|
|
|
|
|
|
|
|
|
|
|
|
def update_index_file(version, index_filename):
|
|
|
|
response = requests.get(BASE_URL + "index.json")
|
|
|
|
if response.status_code == 404:
|
|
|
|
index = []
|
|
|
|
elif response.ok:
|
|
|
|
index = response.json()
|
|
|
|
else:
|
|
|
|
sys.exit(f"Error getting index: {response.status_code} {response.reason}")
|
|
|
|
|
|
|
|
if version not in index:
|
|
|
|
index.insert(0, version)
|
|
|
|
|
|
|
|
with open(index_filename, "w") as f:
|
|
|
|
json.dump(index, f)
|
|
|
|
|
|
|
|
|
2023-10-10 00:43:31 +08:00
|
|
|
def get_latest_version():
|
|
|
|
tags = subprocess.check_output(["git", "tag", "-l", "v*"], text=True).split()
|
|
|
|
versions = []
|
|
|
|
for tag in tags:
|
|
|
|
m = re.match("v?(\d+).*", tag)
|
|
|
|
if m:
|
|
|
|
versions.append(int(m.group(1)))
|
|
|
|
return max(versions)
|
|
|
|
|
|
|
|
|
|
|
|
def main(version, directory, www_target):
|
2023-10-04 03:00:19 +08:00
|
|
|
index_filename = os.path.join(directory, "index.json")
|
|
|
|
nav_filename = os.path.join(directory, "nav.js")
|
2024-09-10 23:37:04 +08:00
|
|
|
# The upload directory does not contain point release suffixes
|
|
|
|
version = re.sub(r"\..+$", "", version)
|
2023-10-04 03:00:19 +08:00
|
|
|
|
2023-10-10 03:28:27 +08:00
|
|
|
current_branch = subprocess.check_output(["git", "branch", "--show-current"], text=True).strip()
|
|
|
|
|
|
|
|
if current_branch != 'main' and not current_branch.endswith("-stable"):
|
|
|
|
sys.exit("doc-sync should only be run from main or a stable branch")
|
|
|
|
|
2023-10-04 03:00:19 +08:00
|
|
|
for filename in glob.glob(os.path.join(directory, "*.html")):
|
|
|
|
process_file(filename)
|
|
|
|
|
2023-10-10 03:28:27 +08:00
|
|
|
if current_branch == "main":
|
|
|
|
version = "devel"
|
|
|
|
dirs = ["devel"]
|
|
|
|
elif int(version) == get_latest_version():
|
|
|
|
dirs = [version, "latest"]
|
|
|
|
else:
|
|
|
|
dirs = [version]
|
|
|
|
|
2023-10-04 03:00:19 +08:00
|
|
|
with open(nav_filename, "w") as f:
|
|
|
|
f.write(NAV_JS)
|
|
|
|
|
|
|
|
update_index_file(version, index_filename)
|
|
|
|
|
|
|
|
for d in dirs:
|
|
|
|
subprocess.check_call(
|
|
|
|
[
|
|
|
|
"rsync",
|
|
|
|
"-rlv",
|
|
|
|
"--delete-excluded",
|
|
|
|
"--include=*.html",
|
|
|
|
"--exclude=*",
|
|
|
|
"--omit-dir-times",
|
|
|
|
directory + "/", # copy contents of directory
|
2023-10-10 00:41:49 +08:00
|
|
|
os.path.join(www_target, "man", d),
|
2023-10-04 03:00:19 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
subprocess.check_call(
|
|
|
|
[
|
|
|
|
"rsync",
|
|
|
|
"-v",
|
|
|
|
os.path.join(directory, "index.json"),
|
|
|
|
os.path.join(directory, "nav.js"),
|
2023-10-10 00:41:49 +08:00
|
|
|
os.path.join(www_target, "man"),
|
2023-10-04 03:00:19 +08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
parser = ArgumentParser()
|
|
|
|
parser.add_argument("--version", required=True)
|
|
|
|
parser.add_argument("directory")
|
|
|
|
parser.add_argument("www_target")
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
2023-10-10 00:43:31 +08:00
|
|
|
main(args.version, args.directory, args.www_target)
|