This commit is contained in:
Gabriel Tofvesson 2021-06-29 21:04:45 +02:00
parent 1c2d966791
commit cb10fa6720

View File

@ -1,276 +0,0 @@
#!/bin/bash
MIN_JAVA_VERSION=15
[ -z "$JAVA_PATH" ] && JAVA_PATH=$(which java)
[ -z "$PYTHON_PATH" ] && PYTHON_PATH=$(which python3)
[ -z "$SHELL" ] && SHELL=/bin/bash
SCRIPT_RUN_NAME="start.sh"
SCRIPT_DEBUG_NAME="start_debug.sh"
# JVM options graciously "borrowed" from the PaperMC Timings JVM Tuning page
# https://aikar.co/2018/07/02/tuning-the-jvm-g1gc-garbage-collector-flags-for-minecraft/
MC_AUTORUN_FLAGS="-XX:+UnlockExperimentalVMOptions -Xmx1G -Xms512M -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1"
MC_VERSION="1.16"
ENV_DIR="$(pwd)/server"
PAPER_JAR_FILE="paper.jar"
PLUGIN_PATH=""
UPDATE_PAPER=true
AUTORUN=""
EULA=false
DEPS=""
CLEAR_PLUGINS=0
print_help() {
echo -e "Paper test server deployment script\nArguments:"
echo " -v [VERSION] - Specify minecraft version to download"
echo " -p [PATH] - Path to plugin to debug"
echo " -d [PATH] - Path to directory where server will be deployed"
echo " -j [PATH] - Java executable path"
echo " --python [PATH] - Python3 executable path"
echo " --no-update - Don't download updates for Paper if jar file already exists"
echo " -n - Same as --no-update"
echo " -s [type] - Autorun server after deployment. Type is \"debug\" to start with remote debugging, else \"run\""
echo " -e - Accepts the EULA for the deployed server (user must accept it in a provided prompt)"
echo " --deps [PATH] - Path for plugin dependencies needed to load plugin"
echo " -c - Delete existing plugins directory on autorun"
echo " -h - Show this help prompt"
echo -e "Example:\n $0 -v 1.16 -p out/plugin.jar -s debug -e"
}
print_error() {
echo "[ERROR] $1" >&2
return 1
}
print_info() {
if [ $# -eq 2 ]
then
echo -e "$1" "[TEST_ENV] $2"
else
echo -e "[TEST_ENV] $1"
fi
return 1
}
SKIP=false
CUR=""
TARGET=""
for arg in "$@"
do
if $SKIP
then
eval "$TARGET"="$arg"
SKIP=false
continue
fi
CUR="$arg"
case "$arg" in
"-h")
print_help
exit
;;
"-v")
TARGET="MC_VERSION"
SKIP=true
;;
"-p")
TARGET="PLUGIN_PATH"
SKIP=true
;;
"-d")
TARGET="ENV_DIR"
SKIP=true
;;
"-j")
TARGET="JAVA_PATH"
SKIP=true
;;
"--python")
TARGET="PYTHON_PATH"
SKIP=true
;;
"-n" | "--no-update")
UPDATE_PAPER=false
;;
"-s")
TARGET="AUTORUN"
SKIP=true
;;
"-e")
EULA=true
;;
"--deps")
TARGET="DEPS"
SKIP=true
;;
"-c")
CLEAR_PLUGINS=1
;;
*)
print_error "Unknown argument: $arg"
exit
;;
esac
done
if $SKIP
then
print_error "Malformed parameter $CUR"
exit
fi
case "$AUTORUN" in
"run")
AUTORUN="$SCRIPT_RUN_NAME"
;;
"debug")
AUTORUN="$SCRIPT_DEBUG_NAME"
;;
*)
print_error "Unknown autorun argument \"$AUTORUN\""
exit
;;
esac
check_java_version() {
version=$("$JAVA_PATH" -version 2>&1 | head -n 1 | sed "s/java version \"\\([0-9]*\\)\\..*/\\1/g")
if [ "$version" -lt "$MIN_JAVA_VERSION" ]
then
print_error "Java version is too low! Minimum is $MIN_JAVA_VERSION (found $version)"
return 1
fi
print_info "Found Java version $version"
return 0
}
ensure_python3() {
if [ -z "$PYTHON_PATH" ]
then
print_error "Could not locate Python3 which is required for automatic server deployment: please install it"
return 1
fi
print_info "Found Python3 binary"
return 0
}
get_paper() {
print_info "Polling all versions of paper for MC $MC_VERSION"
link=$(curl -s "https://papermc.io/api/v2/projects/paper/version_group/$MC_VERSION/builds" | python3 -c "import sys, json; versions=json.load(sys.stdin); print('https://papermc.io/api/v2/projects/paper/versions/' + str(versions['builds'][-1]['version']) + '/builds/' + str(versions['builds'][-1]['build']) + '/downloads/' + str(versions['builds'][-1]['downloads']['application']['name']))")
if [ -f "new_$PAPER_JAR_FILE" ]
then
rm -f "new_$PAPER_JAR_FILE"
fi
print_info "Downloading from pulled link: $link"
result=$(curl -o "new_$PAPER_JAR_FILE" -s -w "%{http_code}" "$link")
if [ "$result" -eq 200 ] && [ -f "new_$PAPER_JAR_FILE" ]
then
rm -f "$PAPER_JAR_FILE"
mv "new_$PAPER_JAR_FILE" "$PAPER_JAR_FILE"
print_info "Downloaded latest version of paper"
return 1
else
print_info "Could not download new version of paper"
return 0
fi
}
check_java_version || exit
ensure_python3 || exit
if [ -d "$ENV_DIR/plugins" ] && [ $CLEAR_PLUGINS -eq 1 ]
then
print_info "Found existing plugins directory. Clearing it..."
rm -r "$ENV_DIR/plugins"
fi
mkdir -p "$ENV_DIR/plugins" || (print_error "Could not create server directory at $ENV_DIR" && exit)
if [ -n "$PLUGIN_PATH" ]
then
print_info "Copying plugin to server directory..."
cp "$PLUGIN_PATH" "$ENV_DIR/plugins" || (print_error "Could not copy targeted plugin to test environment" && exit)
fi
if [ -n "$DEPS" ]
then
if [ -d "$DEPS" ]
then
print_info "Copying dependencies..."
cp "$DEPS"/* "$ENV_DIR/plugins"
else
print_error "Dependencies directory does not exist!"
exit
fi
fi
cd "$ENV_DIR" || (print_error "Could not enter directory $ENV_DIR" && exit)
{ ! [ -f "$PAPER_JAR_FILE" ] || $UPDATE_PAPER; } && get_paper && { ! [ -f "$PAPER_JAR_FILE" ]; } && exit
[ -f "$PAPER_JAR_FILE" ] || exit
if ! [ -f "$SCRIPT_RUN_NAME" ]
then
echo -e "#!/bin/bash\njava $MC_AUTORUN_FLAGS -jar \"$PAPER_JAR_FILE\" nogui" > "$SCRIPT_RUN_NAME"
fi
if ! [ -f "$SCRIPT_DEBUG_NAME" ]
then
echo -e "#!/bin/bash\njava -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 -jar \"$PAPER_JAR_FILE\" nogui" > "$SCRIPT_DEBUG_NAME"
fi
print_info "Test environment successfully prepared!"
# Disable case-sensitivity for conditional expressions
shopt -s nocaseglob
# No need to ask user to accept EULA if it is already accepted
if $EULA && ! { [ -f "eula.txt" ] && [[ "$(cat eula.txt)" =~ eula=true ]]; }
then
print_info -n "Do you accept the terms of the Minecraft End User License Agreement? (https://account.mojang.com/documents/minecraft_eula) [y/N]: "
read -r ACCEPTS
case "$ACCEPTS" in
"y"* | "Y"*)
echo "eula=true" > eula.txt
;;
*)
print_info "EULA was not accepted"
;;
esac
fi
# Re-enable case-sensitivity, just in case
shopt -u nocaseglob
if [ -n "$AUTORUN" ]
then
print_info "Autorun was specified. Attempting to kill active server processes..."
kill -9 $(fuser 25565/tcp | sed "s/.*\\s\\(.*\\)/\\1/g") > /dev/null 2>&1
print_info "Starting server..."
"$SHELL" "$AUTORUN"
fi