push headless config
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 5m30s

This commit is contained in:
merith-tk 2024-11-18 20:30:43 -08:00
parent 2c60c679ac
commit 6531e9422a
10 changed files with 363 additions and 1 deletions

47
scripts/00_setup.sh Normal file
View file

@ -0,0 +1,47 @@
#!/bin/bash
## Set default env
if [ ! -n "$COMMAND" ]; then
COMMAND="/scripts/99_start.sh"
fi
if [ ! -n "$CONFIG_FILE" ]; then
CONFIG_FILE="/data/Config.json"
fi
if [ ! -n "$RESONITE_ARGS" ]; then
RESONITE_ARGS=""
fi
export DEFAULT_RESONITE_ARGS="-LogsPath /data/resonite/logs \
-DataPath /data/app/data \
-CachePath /data/app/cache \
-HeadlessConfig $CONFIG_FILE \
$RESONITE_ARGS"
mkdir -p /data/home /data/resonite /data/steamcmd /etc/crystite/conf.d
## Have to do this here, as otherwise stuff doesnt work for some reason
# using source so runtime vars can be updated as needed
source /scripts/01_install.sh
source /scripts/02_setup_config.sh
source /scripts/03_download_mods.sh
if [ "$RUN_AS" != "" ]; then
echo "Running as $RUN_AS"
USER_ID=$(echo $RUN_AS | cut -d: -f1)
GROUP_ID=$(echo $RUN_AS | cut -d: -f2)
echo "User ID: $USER_ID"
echo "Group ID: $GROUP_ID"
groupadd -g $GROUP_ID user
useradd -l -u $USER_ID -g $GROUP_ID user -d /home/user
export HOME="/home/user"
chown $USER_ID:$GROUP_ID /data -R
chown $USER_ID:$GROUP_ID /etc/crystite -R
echo "executing command: $COMMAND"
exec sudo -E -u user $COMMAND
else
# If RUN_AS is not defined, execute the command as root
echo "executing command: $COMMAND"
exec $COMMAND
fi

26
scripts/01_install.sh Normal file
View file

@ -0,0 +1,26 @@
#!/bin/bash
cd /data/home || exit
if [ "$DISABLE_STEAMCMD" != "true" ]; then
echo "Running SteamCMD"
if [ ! -f "/data/steamcmd/steamcmd.sh" ]; then
cd /data/steamcmd || exit
curl -sqL "https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz" | tar zxvf -
fi
# if steam beta is empty, or matchs "beta_access_key" we don't need to dwonload the beta
if [ -z "$STEAM_BETA" ] || [ "$STEAM_BETA" == "beta_access_key" ]; then
echo "Downloading Resonite"
/data/steamcmd/steamcmd.sh +login anonymous +force_install_dir /data/resonite +app_update 2519830 +quit
else
echo "Downloading Resonite Headless"
/data/steamcmd/steamcmd.sh +login ${STEAM_USER} ${STEAM_PASS} ${STEAM_AUTH} +force_install_dir /data/resonite +app_update 2519830 -beta headless -betapassword ${STEAM_BETA} validate +quit
fi
fi
# if crystite is enabled, we don't need to check for resonite
if [ "$USE_CRYSTITE" != "true" ]; then
if [ ! -f "/data/resonite/Headless/Resonite.exe" ]; then
echo "Headless/Resonite.exe not found!"
echo "Forcing use of Crystite"
USE_CRYSTITE="true"
fi
fi

View file

@ -0,0 +1,34 @@
#!/bin/bash
## Setup Resonite Config
echo "Setting up Resonite Config"
# if CONFIG_FILE is not set, use default config path
if [ ! -f $CONFIG_FILE ]; then
echo "No Resonite Config found, copying from template"
cp /mnt/crystite/resonite.json $CONFIG_FILE
# cat /mnt/crystite/resonite.json | jq '.' > $CONFIG_FILE
fi
echo "Generating Crystite configs"
if [ ! -f "/etc/crystite/appsettings.json" ]; then
cat /mnt/crystite/appsettings.json | jq '.' > /etc/crystite/appsettings.json
fi
CONFIG_DATA=$(grep -v " null," "$CONFIG_FILE")
if [ ! -n "$CONFIG_DATA" ]; then
echo "Config file is empty, copying from template"
cp /mnt/crystite/resonite.json $CONFIG_FILE
CONFIG_DATA=$(grep -v " null," "$CONFIG_FILE")
fi
CONFIG_DATA=$(echo "$CONFIG_DATA" | jq ".comment = \"DO NOT EDIT: This file was automatically generated. Please edit $CONFIG_FILE instead.\"")
echo "{ \"Resonite\": $CONFIG_DATA }" > /etc/crystite/conf.d/_generated_resonite.json
## Setup Modloader Configs
if [ "$RESONITE_MOD_LOADER" == "true" ]; then
echo "Setting up Modloader Configs"
echo "{\"Resonite\": {\"pluginAssemblies\": [\"/data/resonite/Headless/Libraries/ResoniteModLoader.dll\"]}}" | jq '.' > /etc/crystite/conf.d/_generated_rml.json
DEFAULT_RESONITE_ARGS=$(echo "$DEFAULT_RESONITE_ARGS -LoadAssembly /data/resonite/Headless/Libraries/ResoniteModLoader.dll")
else
echo "Modloader is disabled"
rm -f /etc/crystite/conf.d/_generated_rml.json
fi

View file

@ -0,0 +1,66 @@
#!/bin/bash
## TOOOTTALLY NOT AI GENERATED NOTHING TO SEE HERE
# real note, this was because I normally program in
# golang and really, *really* didnt want to have to write
# and maintain a binary in a language many people dont
# want to use simply because google made it...
# shell scripts are typically known by docker hosters so...
# Define file URLs and their associated positions
file_urls=(
"https://github.com/resonite-modding-group/ResoniteModLoader/releases/latest/download/ResoniteModLoader.dll /data/resonite/Headless/Libraries/ResoniteModLoader.dll"
"https://github.com/resonite-modding-group/ResoniteModLoader/releases/latest/download/0Harmony.dll /data/resonite/Headless/rml_libs/0Harmony.dll"
)
# Function to download a file from URL to destination
download_file() {
local url="$1"
local destination="$2"
# make sure destination directory exists
mkdir -p "$(dirname "$destination")"
# Use curl to download file
if curl -fsSL "$url" -o "$destination"; then
echo "File downloaded successfully: $destination"
else
echo "Failed to download file: $destination"
exit 1
fi
}
# Loop through each file URL and download
for file_url in "${file_urls[@]}"; do
read -r url destination <<< "$file_url"
# Backup existing file if exists
if [ -f "$destination" ]; then
mv "$destination" "${destination}.bak"
fi
# Download file
download_file "$url" "$destination"
done
# Download additional files from a list of URLs to /data/resonite/Headless/rml_mods
# shellcheck disable=SC2153
for url in $MOD_URLS ; do
destination="/data/resonite/Headless/rml_mods/$(basename "$url")"
# Check if file already exists, if yes, skip download
if [ ! -f "$destination" ]; then
echo "Downloading mod: $url"
download_file "$url" "$destination"
fi
done
# if resonte mod loader is enabled, create and link rml_mods, libs, and config
if [ "$RESONITE_MOD_LOADER" == "true" ]; then
for dir in rml_mods rml_libs rml_config; do
if [ -d "/data/resonite/$dir" ]; then
continue
fi
mkdir -p "/data/resonite/Headless/$dir"
ln -s "/data/resonite/Headless/$dir" "/data/resonite/$dir"
done
if [ ! -f "/data/resonite/Libraries/ResoniteModLoader.dll" ]; then
mkdir -p "/data/resonite/Libraries"
ln -s "/data/resonite/Headless/Libraries/ResoniteModLoader.dll" "/data/resonite/Libraries/ResoniteModLoader.dll"
fi
fi

18
scripts/99_start.sh Normal file
View file

@ -0,0 +1,18 @@
#!/bin/bash
if [ "$STOP_LAUNCH" == "true" ]; then
echo "STOP_LAUNCH is set to true, exiting..."
exit 0
fi
# Check if Crystite is enabled
if [ "$USE_CRYSTITE" == "true" ]; then
echo "Running Crystite"
echo "exec: /usr/lib/crystite/crystite"
/usr/lib/crystite/crystite
else
cd /data/resonite/Headless || exit
echo "Running Resonite"
echo "exec: mono Resonite.exe $DEFAULT_RESONITE_ARGS $RESONITE_ARGS"
mono Resonite.exe $DEFAULT_RESONITE_ARGS $RESONITE_ARGS
fi