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

32 lines
745 B
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-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 14:48:06 +02:00
url = ""
2024-07-27 14:52:33 +02:00
# there has to be a better way to do this
2024-07-27 14:55:11 +02:00
if "modrinth" in data["update"]:
url = "https://modrinth.com/mod/" + data["update"]["modrinth"]["mod-id"]
elif "curseforge" in data["update"]:
2024-07-27 15:02:06 +02:00
url = "https://legacy.curseforge.com/projects/" + str(data["update"]["curseforge"]["project-id"])
2024-07-27 14:52:33 +02:00
2024-07-27 14:53:49 +02:00
mods[data["name"]] = url
2024-07-27 14:48:06 +02:00
with open("wiki/Modlist.md", "w") as f:
for mod in mods:
2024-07-27 14:49:15 +02:00
if mods[mod] != "":
f.write("- [" + mod + "](" + mods[mod] + ")\r\n")
else:
f.write("- " + mod + "\r\n")