mirror of
https://github.com/iLLeniumStudios/fivem-resource-watcher
synced 2024-02-26 13:38:52 +01:00
93 lines
2.6 KiB
Bash
Executable File
93 lines
2.6 KiB
Bash
Executable File
#!/bin/sh -l
|
|
|
|
beginswith() { case $2 in "$1"*) true ;; *) false ;; esac }
|
|
|
|
exists_in_array() {
|
|
local element="$1"
|
|
local array_str="$2"
|
|
for i in $array_str; do
|
|
if [ "$i" = "$element" ]; then
|
|
return 0
|
|
fi
|
|
done
|
|
return 1
|
|
}
|
|
|
|
append_if_not_exists() {
|
|
local element="$1"
|
|
local array_str="$2"
|
|
if exists_in_array "$element" "$array_str"; then
|
|
echo "$array_str"
|
|
else
|
|
echo "$array_str $element"
|
|
fi
|
|
}
|
|
|
|
icecon_command() {
|
|
icecon --command "$1" "${SERVER_IP}:${SERVER_PORT}" "${RCON_PASSWORD}"
|
|
}
|
|
|
|
get_player_count() {
|
|
response=$(curl -s "${SERVER_IP}:${SERVER_PORT}/players.json")
|
|
player_count=$(echo "$response" | jq 'length')
|
|
echo "$player_count"
|
|
}
|
|
|
|
RESTART_INDIVIDUAL_RESOURCES=$1
|
|
SERVER_IP=$2
|
|
SERVER_PORT=$3
|
|
RCON_PASSWORD=$4
|
|
RESOURCES_FOLDER=$5
|
|
RESTART_SERVER_WHEN_0_PLAYERS=$6
|
|
IGNORED_RESOURCES=$7
|
|
|
|
git config --global --add safe.directory /github/workspace
|
|
|
|
if [ ${GITHUB_BASE_REF} ]; then
|
|
# Pull Request
|
|
git fetch origin ${GITHUB_BASE_REF} --depth=1
|
|
export DIFF=$(git diff --name-only origin/${GITHUB_BASE_REF} ${GITHUB_SHA})
|
|
echo "Diff between origin/${GITHUB_BASE_REF} and ${GITHUB_SHA}"
|
|
else
|
|
# Push
|
|
git fetch origin ${GITHUB_EVENT_BEFORE} --depth=1
|
|
export DIFF=$(git diff --name-status ${GITHUB_EVENT_BEFORE} ${GITHUB_SHA})
|
|
echo "Diff between ${GITHUB_EVENT_BEFORE} and ${GITHUB_SHA}"
|
|
fi
|
|
|
|
resources_to_restart=
|
|
|
|
IFS=$'\n'
|
|
for changed in $DIFF; do
|
|
changed=${changed#??}
|
|
if beginswith "${RESOURCES_FOLDER}" "${changed}"; then
|
|
filtered=${changed##*]/} # Remove subfolders
|
|
filtered=${filtered%%/*} # Remove filename and get the folder which corresponds to the resource name
|
|
resources_to_restart="$(append_if_not_exists "$filtered" "$resources_to_restart")"
|
|
fi
|
|
done
|
|
unset IFS
|
|
|
|
if [ -z "$resources_to_restart" ]; then
|
|
echo "Nothing to restart"
|
|
else
|
|
player_count=$(get_player_count)
|
|
if [ "$RESTART_SERVER_WHEN_0_PLAYERS" = true ] && [ "$player_count" -eq 0 ]; then
|
|
echo "Will restart the whole server due to 0 players"
|
|
icecon_command "quit"
|
|
elif [ "$RESTART_INDIVIDUAL_RESOURCES" = true ]; then
|
|
echo "Will restart individual resources"
|
|
for resource in $resources_to_restart; do
|
|
if exists_in_array "${resource}" "${IGNORED_RESOURCES}"; then
|
|
echo "Ignoring restart of the resource ${resource}"
|
|
else
|
|
echo "Restarting ${resource}"
|
|
icecon_command "ensure ${resource}"
|
|
fi
|
|
done
|
|
else
|
|
echo "Will restart the whole server"
|
|
icecon_command "quit"
|
|
fi
|
|
fi
|