refactor(pack): template CustomSkinLoader + unify pack rendering
Add tooling/render-pack.sh: renders all pack/**/*.tmpl with ${BASE_DOMAIN}
(no dnsmasq HOST_LAN_IP coupling) and rebuilds the packwiz index. Both
render-config.sh and add-custom-mod.sh now delegate to it.
CustomSkinLoader.json's skin API roots are no longer frozen — it becomes
CustomSkinLoader.json.tmpl, rendered like the mod metadata. .packwizignore
broadened to *.tmpl; rendered .json gitignored as build output.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -6,10 +6,11 @@ runtime/authlib-injector.jar
|
|||||||
# rendered configs (from tooling/render-config.sh)
|
# rendered configs (from tooling/render-config.sh)
|
||||||
drasl/config/config.toml
|
drasl/config/config.toml
|
||||||
dnsmasq/dnsmasq.conf
|
dnsmasq/dnsmasq.conf
|
||||||
# packwiz external-file metadata + index are rendered from *.pw.toml.tmpl
|
# packwiz pack files rendered from pack/**/*.tmpl by tooling/render-pack.sh
|
||||||
# (domain-dependent build output); source of truth is the .tmpl + custom/ jars.
|
# (domain-dependent build output); source of truth is the .tmpl + custom/ jars.
|
||||||
pack/mods/*.pw.toml
|
pack/mods/*.pw.toml
|
||||||
pack/index.toml
|
pack/index.toml
|
||||||
|
pack/CustomSkinLoader/CustomSkinLoader.json
|
||||||
|
|
||||||
# vendored / mirrored binaries
|
# vendored / mirrored binaries
|
||||||
mirror/
|
mirror/
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
# Template sources for external-file metadata — rendered to *.pw.toml by
|
# Template sources for pack metadata/config — rendered to their real files by
|
||||||
# tooling/render-config.sh. packwiz must NOT index the templates themselves.
|
# tooling/render-pack.sh. packwiz must NOT index the templates themselves.
|
||||||
*.pw.toml.tmpl
|
*.tmpl
|
||||||
|
|||||||
@@ -4,9 +4,8 @@
|
|||||||
{
|
{
|
||||||
"name": "Ulicraft Skins",
|
"name": "Ulicraft Skins",
|
||||||
"type": "MojangAPI",
|
"type": "MojangAPI",
|
||||||
"apiRoot": "https://auth.ulicraft.net/account/",
|
"apiRoot": "https://auth.${BASE_DOMAIN}/account/",
|
||||||
"sessionRoot": "https://auth.ulicraft.net/session/"
|
"sessionRoot": "https://auth.${BASE_DOMAIN}/session/"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
|
|||||||
[index]
|
[index]
|
||||||
file = "index.toml"
|
file = "index.toml"
|
||||||
hash-format = "sha256"
|
hash-format = "sha256"
|
||||||
hash = "36d9f52476a127af5837a65e69d25dc1cd9f7e131eb5a76166378351bf40a009"
|
hash = "9bca0b1a4434050835cab46116d7c14aafec971ff5a95a1ee0c4232c8bcbc355"
|
||||||
|
|
||||||
[versions]
|
[versions]
|
||||||
minecraft = "1.21.1"
|
minecraft = "1.21.1"
|
||||||
|
|||||||
@@ -124,17 +124,9 @@ log "adding ${#JARS[@]} jar(s), side=${SIDE}"
|
|||||||
for j in "${JARS[@]}"; do add_one "$j"; done
|
for j in "${JARS[@]}"; do add_one "$j"; done
|
||||||
|
|
||||||
# ---- render + refresh once -------------------------------------------------
|
# ---- render + refresh once -------------------------------------------------
|
||||||
# Render every metadata template -> .pw.toml (inject ${BASE_DOMAIN} only — no
|
# render-pack.sh renders all pack templates (BASE_DOMAIN only) + rebuilds the
|
||||||
# coupling to dnsmasq's HOST_LAN_IP), then rebuild the packwiz index. This is
|
# packwiz index. Single source of pack-render logic, shared with render-config.
|
||||||
# the same render render-config.sh does at deploy; kept inline so adding a mod
|
|
||||||
# works with just BASE_DOMAIN set.
|
|
||||||
log "rendering metadata + refreshing index"
|
log "rendering metadata + refreshing index"
|
||||||
for t in pack/mods/*.pw.toml.tmpl; do
|
tooling/render-pack.sh
|
||||||
envsubst '${BASE_DOMAIN}' < "$t" > "${t%.tmpl}"
|
|
||||||
done
|
|
||||||
# index.toml is gitignored build output; seed a minimal one so packwiz refresh
|
|
||||||
# (which won't bootstrap a missing index) has something to populate.
|
|
||||||
[ -f pack/index.toml ] || printf 'hash-format = "sha256"\n' > pack/index.toml
|
|
||||||
( cd pack && packwiz refresh )
|
|
||||||
log "done — ${#JARS[@]} mod(s) added to the pack"
|
log "done — ${#JARS[@]} mod(s) added to the pack"
|
||||||
echo " commit: custom/*.jar + pack/mods/*.pw.toml.tmpl (rendered .pw.toml/index are gitignored)"
|
echo " commit: custom/*.jar + pack/mods/*.pw.toml.tmpl (rendered .pw.toml/index are gitignored)"
|
||||||
|
|||||||
@@ -20,18 +20,6 @@ render() { # $1=template $2=output
|
|||||||
render drasl/config/config.toml.tmpl drasl/config/config.toml
|
render drasl/config/config.toml.tmpl drasl/config/config.toml
|
||||||
render dnsmasq/dnsmasq.conf.tmpl dnsmasq/dnsmasq.conf
|
render dnsmasq/dnsmasq.conf.tmpl dnsmasq/dnsmasq.conf
|
||||||
|
|
||||||
# packwiz external-file metadata: render every pack/mods/*.pw.toml.tmpl into its
|
# pack templates (mods/*.pw.toml.tmpl, CustomSkinLoader, …) + packwiz index.
|
||||||
# .pw.toml (injects ${BASE_DOMAIN} into the download URL), then rebuild the
|
# Delegated to render-pack.sh (BASE_DOMAIN only — single source of pack render).
|
||||||
# packwiz index. .packwizignore keeps the .tmpl out of the index.
|
tooling/render-pack.sh
|
||||||
shopt -s nullglob
|
|
||||||
tmpls=(pack/mods/*.pw.toml.tmpl)
|
|
||||||
shopt -u nullglob
|
|
||||||
if [ "${#tmpls[@]}" -gt 0 ]; then
|
|
||||||
for t in "${tmpls[@]}"; do render "$t" "${t%.tmpl}"; done
|
|
||||||
command -v packwiz >/dev/null 2>&1 || { echo "packwiz not found — cannot refresh index" >&2; exit 1; }
|
|
||||||
# index.toml is gitignored build output; seed a minimal one so packwiz refresh
|
|
||||||
# (which won't bootstrap a missing index) has something to populate.
|
|
||||||
[ -f pack/index.toml ] || printf 'hash-format = "sha256"\n' > pack/index.toml
|
|
||||||
( cd pack && packwiz refresh )
|
|
||||||
echo "refreshed packwiz index (${#tmpls[@]} external metafiles)"
|
|
||||||
fi
|
|
||||||
|
|||||||
33
tooling/render-pack.sh
Executable file
33
tooling/render-pack.sh
Executable file
@@ -0,0 +1,33 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# render-pack.sh — render every pack template (pack/**/*.tmpl) by injecting
|
||||||
|
# ${BASE_DOMAIN}, then rebuild the packwiz index.
|
||||||
|
#
|
||||||
|
# Pack templates are domain-dependent build output (download URLs, skin API
|
||||||
|
# roots, …). This renderer needs ONLY ${BASE_DOMAIN} — no dnsmasq HOST_LAN_IP —
|
||||||
|
# so it can run while curating mods before the full deploy config exists.
|
||||||
|
# Both tooling/render-config.sh (deploy) and tooling/add-custom-mod.sh call it.
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
cd "$(dirname "$0")/.." # repo root
|
||||||
|
|
||||||
|
[ -f .env ] && { set -a; . ./.env; set +a; }
|
||||||
|
: "${BASE_DOMAIN:?BASE_DOMAIN unset (set in .env)}"
|
||||||
|
command -v envsubst >/dev/null 2>&1 || { echo "missing required tool: envsubst (gettext)" >&2; exit 1; }
|
||||||
|
command -v packwiz >/dev/null 2>&1 || { echo "missing required tool: packwiz" >&2; exit 1; }
|
||||||
|
[ -f pack/pack.toml ] || { echo "pack/pack.toml not found" >&2; exit 1; }
|
||||||
|
|
||||||
|
shopt -s globstar nullglob
|
||||||
|
tmpls=(pack/**/*.tmpl)
|
||||||
|
shopt -u globstar nullglob
|
||||||
|
|
||||||
|
for t in "${tmpls[@]}"; do
|
||||||
|
# Substitute ONLY ${BASE_DOMAIN} so any other literal $-syntax is preserved.
|
||||||
|
envsubst '${BASE_DOMAIN}' < "$t" > "${t%.tmpl}"
|
||||||
|
echo "rendered ${t%.tmpl}"
|
||||||
|
done
|
||||||
|
|
||||||
|
# index.toml is gitignored build output; seed a minimal one so packwiz refresh
|
||||||
|
# (which won't bootstrap a missing index) has something to populate.
|
||||||
|
[ -f pack/index.toml ] || printf 'hash-format = "sha256"\n' > pack/index.toml
|
||||||
|
( cd pack && packwiz refresh )
|
||||||
|
echo "packwiz index refreshed (${#tmpls[@]} template(s))"
|
||||||
Reference in New Issue
Block a user