posspack/.forgejo/scripts/update-wiki.py

82 lines
2 KiB
Python
Raw Normal View History

2024-07-27 14:23:23 +02:00
#!/usr/bin/env python
2024-07-27 14:41:57 +02:00
from pip._vendor import tomli
2024-07-27 14:28:16 +02:00
import glob
import os
2024-07-27 14:52:33 +02:00
def noop():
return
2024-07-27 14:48:06 +02:00
mods = dict()
2024-07-28 22:39:28 +02:00
count = dict()
count["server"] = 0
count["client"] = 0
count["both"] = 0
2024-07-27 14:48:06 +02:00
2024-07-27 14:31:45 +02:00
for mod in glob.glob("pack/mods/*.toml"):
2024-07-27 14:44:02 +02:00
with open(mod, "r") as f:
2024-07-27 14:41:57 +02:00
data = tomli.load(f)
2024-07-27 15:43:27 +02:00
moddata = dict()
moddata["url"] = ""
2024-07-27 14:52:33 +02:00
2024-07-27 14:55:11 +02:00
if "modrinth" in data["update"]:
2024-07-27 15:43:27 +02:00
moddata["url"] = "https://modrinth.com/mod/" + data["update"]["modrinth"]["mod-id"]
moddata["site"] = "Modrinth"
2024-07-27 14:55:11 +02:00
elif "curseforge" in data["update"]:
2024-07-27 15:43:27 +02:00
moddata["url"] = "https://legacy.curseforge.com/projects/" + str(data["update"]["curseforge"]["project-id"])
moddata["site"] = "CurseForge"
2024-07-27 14:52:33 +02:00
2024-07-28 22:39:28 +02:00
count[data["side"]] += 1
2024-07-27 15:38:21 +02:00
moddata["side"] = data["side"]
mods[data["name"]] = moddata
2024-07-27 14:48:06 +02:00
with open("wiki/Modlist.md", "w") as f:
2024-07-28 22:40:16 +02:00
f.write("## Total Count\r\n")
2024-07-28 22:39:28 +02:00
f.write("<table>")
f.write("\r\n<tr>")
f.write("<th>Side</th>")
f.write("<th>Count</th>")
f.write("</tr>\r\n")
2024-07-28 22:43:28 +02:00
f.write("<tr>")
f.write("<td>Total</td>")
f.write("<td>" + str(count["server"] + count["client"] + count["both"]) + "</td>")
f.write("</tr>\r\n")
2024-07-28 22:42:02 +02:00
f.write("<tr>")
f.write("<td>Shared</td>")
f.write("<td>" + str(count["both"]) + "</td>")
f.write("</tr>\r\n")
f.write("<tr>")
2024-07-28 22:39:28 +02:00
f.write("<td>Client</td>")
2024-07-28 22:41:17 +02:00
f.write("<td>" + str(count["client"]) + "</td>")
2024-07-28 22:39:28 +02:00
f.write("</tr>\r\n")
2024-07-28 22:42:02 +02:00
f.write("<tr>")
2024-07-28 22:39:28 +02:00
f.write("<td>Server</td>")
2024-07-28 22:41:17 +02:00
f.write("<td>" + str(count["server"]) + "</td>")
f.write("</tr>\r\n")
2024-07-28 22:42:27 +02:00
f.write("</table>\r\n\r\n")
2024-07-28 22:39:28 +02:00
2024-07-28 22:40:16 +02:00
f.write("## Individual Mods\r\n")
2024-07-27 15:43:27 +02:00
f.write("<table>")
f.write("\r\n<tr>")
f.write("<th>Name</th>")
f.write("<th>Side</th>")
f.write("<th>Link</th>")
f.write("</tr>\r\n")
2024-07-27 14:48:06 +02:00
for mod in mods:
2024-07-27 15:43:27 +02:00
f.write("\r\n<tr>")
f.write("<td>" + mod + "</td>")
f.write("<td>" + mods[mod]["side"] + "</td>")
2024-07-27 15:38:21 +02:00
if mods[mod]["url"] != "":
2024-07-27 15:44:21 +02:00
f.write("<td><a href=\"" + mods[mod]["url"] + "\">" + mods[mod]["site"] + "</a></td>")
2024-07-27 14:49:15 +02:00
else:
2024-07-27 15:43:27 +02:00
f.write("<td>N/A</td>")
2024-07-29 16:25:52 +02:00
f.write("\r\n</tr>")
2024-07-28 22:39:28 +02:00
f.write("\r\n</table>")