KF2-SRV/SOURCES/kf2-srv

912 lines
33 KiB
Plaintext
Raw Normal View History

2020-07-08 22:25:08 +00:00
#!/bin/bash
# kf2-srv is a command line tool for managing a set of Killing Floor 2 servers.
2020-07-08 22:52:17 +00:00
# Copyright (C) 2019, 2020 GenZmeY
2020-07-08 22:25:08 +00:00
# mailto: genzmey@gmail.com
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
source /etc/steamcmd/steamcmd.conf
source /etc/kf2-srv/kf2-srv.conf
ScriptFullname=$(readlink -e "$0")
ScriptName=$(echo "$ScriptFullname" | awk -F '/' '{print $NF;}')
2020-07-08 22:53:47 +00:00
ScriptVersion="0.6.0"
2020-07-08 22:40:18 +00:00
2020-07-08 22:53:47 +00:00
AppServerNum="232130"
AppClientNum="232090"
2020-07-08 22:52:17 +00:00
StrangeConstUID="17825793"
2020-07-08 22:25:08 +00:00
InstallDir="/usr/games/kf2-srv"
2020-07-08 22:40:18 +00:00
ActiveBranch="$InstallDir/activebranch.txt"
2020-07-08 22:25:08 +00:00
AppBin="$InstallDir/Binaries/Win64/KFGameSteamServer.bin.x86_64"
DefaultConfigDir="$InstallDir/KFGame/Config"
2020-07-08 22:53:47 +00:00
DownloadMapsDir="$InstallDir/Binaries/Win64/steamapps/workshop/content/$AppClientNum"
CacheMapsDir="$InstallDir/KFGame/Cache"
2020-07-08 22:52:17 +00:00
InstanceConfigDir="/etc/kf2-srv/instances"
InstanceConfigLnk="$DefaultConfigDir/instances"
2020-07-08 22:25:08 +00:00
MainConfigTemplate="/etc/kf2-srv/main.conf.template"
2020-07-08 22:50:08 +00:00
DiffArray=('Normal' 'Hard' 'Suicide' 'Hell')
WaveArray=('4' '7' '10')
declare -A ModeArray
ModeArray['KFGameContent.KFGameInfo_Survival']='Survival'
ModeArray['KFGameContent.KFGameInfo_WeeklySurvival']='Weekly'
ModeArray['KFGameContent.KFGameInfo_Endless']='Endless'
ModeArray['KFGameContent.KFGameInfo_Objective']='Objective'
ModeArray['KFGameContent.KFGameInfo_VersusSurvival']='Versus'
2020-07-08 22:52:17 +00:00
2020-07-08 22:25:08 +00:00
function show_help ()
{
2020-07-08 22:52:17 +00:00
# echo "TODO: English description"
2020-07-08 22:53:47 +00:00
echo "$ScriptName v$ScriptVersion"
2020-07-08 22:30:25 +00:00
echo "Централизование управление серверами Killing Floor 2"
2020-07-08 22:25:08 +00:00
echo "Usage:"
2020-07-08 22:52:17 +00:00
echo "$ScriptName OPTIONS"
2020-07-08 22:25:08 +00:00
echo ""
echo "Mandatory arguments to long options are mandatory for short options too."
2020-07-08 22:30:25 +00:00
echo " -n, --new INSTANCE создает новый ЭКЗЕМПЛЯР сервера"
echo " -d, --delete [INSTANCE] удаляет указанный ЭКЗМПЛЯР сервера; если"
echo " ЭКЗЕМПЛЯР не указан, удаляет все сервера"
echo " -s, --status [INSTANCE] отображает состояние указанного ЭКЗЕМПЛЯРА"
echo " сервера; если ЭКЗЕМПЛЯР не указан,"
echo " отображает состояние всех экземпляров сервера"
echo " -u, --update при первом запуске производит установку KF2;"
echo " в дальнейшем устанавливает обновления при их"
echo " наличии"
2020-07-08 22:40:18 +00:00
echo " -v, --validate проверяет целостность файлов, при"
echo " необходимости перекачивает их."
echo " -r, --run [OPTIONS] запускает экземпляр сервера с указанными"
2020-07-08 22:30:25 +00:00
echo " ПАРАМЕТРАМИ"
2020-07-08 22:52:17 +00:00
echo " -st, --start [INSTANCE] запускает указанный ЭКЗЕМПЛЯР сервера; если"
2020-07-08 22:30:25 +00:00
echo " ЭКЗЕМПЛЯР не указан, запускает все"
echo " автозапускаемые экземпляры сервера"
2020-07-08 22:52:17 +00:00
echo " -sp, --stop [INSTANCE] останавливает указанный ЭКЗЕМПЛЯР сервера;"
2020-07-08 22:30:25 +00:00
echo " если ЭКЗЕМПЛЯР не указан, останавливает все"
echo " экземпляры сервера"
2020-07-08 22:52:17 +00:00
echo " -rs, --restart [INSTANCE] перезапускает указанный ЭКЗЕМПЛЯР сервера;"
2020-07-08 22:50:08 +00:00
echo " если ЭКЗЕМПЛЯР не указан, перезапускает"
echo " все автозапускаемые экземпляры сервера"
2020-07-08 22:52:17 +00:00
echo " -en, --enable [INSTANCE] добавляет указанный ЭКЗЕМПЛЯР сервера в"
2020-07-08 22:30:25 +00:00
echo " автозапуск; если ЭКЗЕМПЛЯР не указан,"
echo " добавляет все экземпляры сервера в автозапуск"
2020-07-08 22:52:17 +00:00
echo " -di, --disable [INSTANCE] удаляет указанный ЭКЗЕМПЛЯР сервера из"
2020-07-08 22:30:25 +00:00
echo " автозапуска; если ЭКЗЕМПЛЯР не указан,"
echo " удаляет все экземпляры сервера из автозапуска"
2020-07-08 22:52:17 +00:00
echo " -ml, --map-list отображает список карт из SteamWorkshop"
echo " -ms, --map-sync синхронизирует списки сторонних карт в"
echo " конфигурационных файлах с имеющимися файлами"
echo " сторонних карт; синхронизирует списки карт из"
echo " SteamWorkshop между всеми экземплярами серверов"
echo " -ma, --map-add [MAP_ID] добавляет карту из SteamWorkshop по URL или"
echo " WorkshopID"
echo " -md, --map-del [MAP_ID] удаляет карту SteamWorkshop по URL или WorkshopID"
echo "-mrs, --map-rotate-save [INSTANCE] сохраняет текущий порядок карт для"
echo " указанного ЭКЗЕМПЛЯРА сервера; если ЭКЗЕМПЛЯР"
echo " не указан, сохраняет порядок для всех ЭКЗЕМПЛЯРОВ"
echo "-mrl, --map-rotate-load [INSTANCE] применяет ранее сохраненный порядок карт"
echo " для указанного ЭКЗЕМПЛЯРА сервера; если ЭКЗЕМПЛЯР"
echo " не указан, применяет сохраненные порядки для"
echo " всех ЭКЗЕМПЛЯРОВ сервера"
echo " -bl, --ban-list отображает список заблокированных пользователей"
echo " -bs, --ban-sync синхронизирует список заблокированных"
echo " пользователей между всеми экземплярами сервера"
echo " -ba, --ban-add [BAN_ID] добавляет пользователя в список заблокированных"
echo " допустимо использовать ID3, SteamID, а также"
echo " ссылку на профиль пользователя"
echo " -bd, --ban-del [BAN_ID] удаляет пользователя из списка заблокированных"
echo " допустимо использовать ID3, SteamID, а также"
echo " ссылку на профиль пользователя"
2020-07-08 22:25:08 +00:00
echo " -h, --help display this help and exit"
}
2020-07-08 22:52:17 +00:00
2020-07-08 22:25:08 +00:00
# Use this function with non-root user only!!!
2020-07-08 22:52:17 +00:00
function run_as_root () # $*: Args
2020-07-08 22:25:08 +00:00
{
if [[ -n $(groups "$USER" | grep -Fo 'wheel') ]]; then
2020-07-08 22:52:17 +00:00
sudo "$ScriptFullname" $*
2020-07-08 22:25:08 +00:00
else
echo "You must be root or sudo-user to run this command."
return 1
fi
}
2020-07-08 22:52:17 +00:00
function service_name () # $*: Instance[s]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
local Services=""
for Instance in $*
do
Services+=" kf2-srv@$Instance.service"
done
echo "$Services"
2020-07-08 22:25:08 +00:00
}
function show_instances ()
{
find "$InstanceConfigDir" -maxdepth 1 -mindepth 1 -type d -printf "%f\n"
}
2020-07-08 22:52:17 +00:00
function show_enabled_instances ()
{
local EnabledInstances=""
for Instance in $(show_instances)
do
if systemctl -q is-enabled $(service_name "$Instance") ; then
EnabledInstances+=" $Instance"
fi
done
echo "$EnabledInstances"
}
2020-07-08 22:25:08 +00:00
function instance_exists () # $1: Instance
{
2020-07-08 22:52:17 +00:00
if [[ -d "$InstanceConfigDir/$1" ]]; then
2020-07-08 22:25:08 +00:00
return 0
else
return 1
fi
}
function server_exists ()
{
if [[ -n $(ls "$InstallDir") ]]; then
return 0
else
return 1
fi
}
function updates_aviable ()
{
# TODO: implementation
return 0
}
2020-07-08 22:52:17 +00:00
function new_instance () # $*: InstanceName[s]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
if [[ -z "$*" ]]; then
echo "Name of instance[s] must be set"
2020-07-08 22:25:08 +00:00
exit 1
elif ! server_exists; then
echo "You must install server first"
echo "Run \"$ScriptName --update\" to install it"
exit 1
fi
2020-07-08 22:52:17 +00:00
local MaxGamePort='7777'
local MaxQueryPort='27015'
local MaxWebAdminPort='8080'
for Instance in $(show_instances)
do
local Config="$InstanceConfigDir/$Instance/main.conf"
local GamePort=$(grep -Po '"-port=([0-9]+)' "$Config" | grep -Po '[0-9]+$')
local WebAdminPort=$(grep -Po '"-webadminport=([0-9]+)' "$Config" | grep -Po '[0-9]+$')
local QueryPort=$(grep -Po '"-queryport=([0-9]+)' "$Config" | grep -Po '[0-9]+$')
if [[ "$GamePort" -gt "$MaxGamePort" ]]; then MaxGamePort="$GamePort"; fi
if [[ "$QueryPort" -gt "$MaxQueryPort" ]]; then MaxQueryPort="$QueryPort"; fi
if [[ "$WebAdminPort" -gt "$MaxWebAdminPort" ]]; then MaxWebAdminPort="$WebAdminPort"; fi
done
for Instance in $*
do
if instance_exists "$Instance"; then
echo "Instance $Instance already exists - skip"
continue
fi
2020-07-08 22:25:08 +00:00
2020-07-08 22:52:17 +00:00
local InstanceDir="$InstanceConfigDir/$Instance"
2020-07-08 22:53:47 +00:00
local DirMode="-d -g $SteamUser -o $SteamUser -m 775"
local FileMode=" -g $SteamUser -o $SteamUser -m 664"
install $DirMode "$InstanceDir"
install $DirMode "$InstanceDir/LinuxServer"
install $FileMode "$MainConfigTemplate" "$InstanceDir/main.conf"
install $FileMode "$DefaultConfigDir/KFAI.ini" "$InstanceDir"
install $FileMode "$DefaultConfigDir/KFWeb.ini" "$InstanceDir"
install $FileMode "$DefaultConfigDir/LinuxServer-KFEngine.ini" "$InstanceDir"
install $FileMode "$DefaultConfigDir/LinuxServer-KFGame.ini" "$InstanceDir"
install $FileMode "$DefaultConfigDir/LinuxServer-KFInput.ini" "$InstanceDir"
install $FileMode "$DefaultConfigDir/LinuxServer-KFSystemSettings.ini" "$InstanceDir"
install $FileMode "$DefaultConfigDir/LinuxServer/LinuxServerEngine.ini" "$InstanceDir/LinuxServer"
install $FileMode "$DefaultConfigDir/LinuxServer/LinuxServerGame.ini" "$InstanceDir/LinuxServer"
install $FileMode "$DefaultConfigDir/LinuxServer/LinuxServerInput.ini" "$InstanceDir/LinuxServer"
install $FileMode "$DefaultConfigDir/LinuxServer/LinuxServerSystemSettings.ini" "$InstanceDir/LinuxServer"
2020-07-08 22:52:17 +00:00
((MaxGamePort++)); ((MaxQueryPort++)); ((MaxWebAdminPort++))
sed -i -r --follow-symlinks "s/-port=[0-9]+/-port=$MaxGamePort/g" "$InstanceDir/main.conf"
sed -i -r --follow-symlinks "s/-queryport=[0-9]+/-queryport=$MaxQueryPort/g" "$InstanceDir/main.conf"
sed -i -r --follow-symlinks "s/-webadminport=[0-9]+/-webadminport=$MaxWebAdminPort/g" "$InstanceDir/main.conf"
2020-07-08 22:25:08 +00:00
2020-07-08 22:52:17 +00:00
echo "Instance $Instance created. See /etc/$ScriptName/instances/$Instance for edit configuration"
done
2020-07-08 22:25:08 +00:00
}
2020-07-08 22:52:17 +00:00
function delete_instance () # $*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
if [[ -z "$*" ]]; then
2020-07-08 22:25:08 +00:00
echo "Are you sure you want to delete all instances? [y/N]"
local Answ="N"
read Answ
if [[ "$Answ" == "y" || "$Answ" == "Y" ]]; then
for Instance in $(show_instances)
do
stop_instance "$Instance"
delete_instance "$Instance"
done
fi
else
2020-07-08 22:52:17 +00:00
for Instance in $*
do
if instance_exists "$Instance"; then
local InstanceDir="$InstanceConfigDir/$Instance"
stop_instance "$Instance"
rm -rf "$InstanceDir"
echo "Instance $Instance removed"
else
echo "Instance $Instance not exists"
fi
done
2020-07-08 22:25:08 +00:00
fi
}
2020-07-08 22:52:17 +00:00
function show_status_implementation_body () # $*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
for Instance in $InstanceList
do
2020-07-08 22:25:08 +00:00
if systemctl -q is-enabled $(service_name "$Instance"); then
local IsEnabled="enabled"
else
local IsEnabled="disabled"
fi
if systemctl | grep $(service_name "$Instance") | grep -q 'running' ; then
local IsRuning="running"
else
2020-07-08 22:52:17 +00:00
local IsRuning="stopped"
2020-07-08 22:25:08 +00:00
fi
2020-07-08 22:50:08 +00:00
2020-07-08 22:25:08 +00:00
local Description=$(grep -P 'Description=' "$InstanceConfigDir/$Instance/main.conf" | sed -r 's/(Description=|")//g')
2020-07-08 22:40:18 +00:00
local GamePort=$(grep -Po '"-port=([0-9]+)' "$InstanceConfigDir/$Instance/main.conf" | grep -Po '[0-9]+$')
local WebAdminPort=$(grep -Po '"-webadminport=([0-9]+)' "$InstanceConfigDir/$Instance/main.conf" | grep -Po '[0-9]+$')
local QueryPort=$(grep -Po '"-queryport=([0-9]+)' "$InstanceConfigDir/$Instance/main.conf" | grep -Po '[0-9]+$')
2020-07-08 22:50:08 +00:00
local GameType=$(grep -Po 'Game=([^\?]+)' "$InstanceConfigDir/$Instance/main.conf" | sed -r 's/Game=([^?]+)/\1/g' )
local GameLength=$(grep -Po 'GameLength=([0-9]+)' "$InstanceConfigDir/$Instance/main.conf" | grep -Po '[0-9]+$')
local GameDifficulty=$(grep -Po 'Difficulty=([0-9]+)' "$InstanceConfigDir/$Instance/main.conf" | grep -Po '[0-9]+$')
local DisplayGameType=${ModeArray[$GameType]}
local DisplayGameLength=${WaveArray[$GameLength]}
local DisplayDifficulty=${DiffArray[$GameDifficulty]}
if [[ "$DisplayGameType" == 'Weekly' || \
"$DisplayGameType" == 'Endless' || \
"$DisplayGameType" == 'Versus' || \
"$DisplayGameType" == 'Objective' ]]; then
DisplayGameLength='-'
fi
if [[ "$DisplayGameType" == 'Weekly' || \
"$DisplayGameType" == 'Versus' ]]; then
DisplayDifficulty='-'
fi
echo -e "$Instance:$IsEnabled:$IsRuning:$GamePort:$QueryPort:$WebAdminPort:$DisplayGameType:$DisplayGameLength:$DisplayDifficulty:$Description"
2020-07-08 22:52:17 +00:00
done
}
function show_status_implementation_full () # $*: [InstanceName[s]]
{
local InstanceList=""
if [[ -z "$*" ]] ; then
InstanceList=$(show_instances)
2020-07-08 22:25:08 +00:00
else
2020-07-08 22:52:17 +00:00
for Instance in $*
2020-07-08 22:25:08 +00:00
do
2020-07-08 22:52:17 +00:00
if instance_exists "$Instance"; then
InstanceList+=" $Instance"
fi
2020-07-08 22:25:08 +00:00
done
fi
2020-07-08 22:52:17 +00:00
echo -e "INSTANCE:AUTORUN:STATE:P_GAME:P_QUERY:P_WEB:TYPE:LEN:DIFF:DESCRIPTION"
show_status_implementation_body "$InstanceList" | sort -t : -k 4
2020-07-08 22:25:08 +00:00
}
2020-07-08 22:52:17 +00:00
function show_status () # $*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
show_status_implementation_full $* | column -t -s :
2020-07-08 22:25:08 +00:00
}
2020-07-08 22:40:18 +00:00
function validate ()
{
if [[ -n "$BranchName" ]]; then
local BetaArg="-beta $BranchName"
fi
stop_instance
2020-07-08 22:53:47 +00:00
steamcmd +login $SteamLogin +force_install_dir $InstallDir +app_update $AppServerNum $BetaArg validate +exit
2020-07-08 22:40:18 +00:00
echo "$BranchName" > "$ActiveBranch"
start_instance
}
2020-07-08 22:53:47 +00:00
function make_default_instance ()
2020-07-08 22:52:17 +00:00
{
2020-07-08 22:53:47 +00:00
local InstanceDir="$InstanceConfigDir/default"
chmod 664 \
"$DefaultConfigDir/KFAI.ini" \
"$DefaultConfigDir/KFWeb.ini" \
"$DefaultConfigDir/LinuxServer-KFEngine.ini" \
"$DefaultConfigDir/LinuxServer-KFGame.ini" \
"$DefaultConfigDir/LinuxServer-KFInput.ini" \
"$DefaultConfigDir/LinuxServer-KFSystemSettings.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerEngine.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerGame.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerInput.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerSystemSettings.ini"
dos2unix \
"$DefaultConfigDir/KFAI.ini" \
"$DefaultConfigDir/KFWeb.ini" \
"$DefaultConfigDir/LinuxServer-KFEngine.ini" \
"$DefaultConfigDir/LinuxServer-KFGame.ini" \
"$DefaultConfigDir/LinuxServer-KFInput.ini" \
"$DefaultConfigDir/LinuxServer-KFSystemSettings.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerEngine.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerGame.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerInput.ini" \
"$DefaultConfigDir/LinuxServer/LinuxServerSystemSettings.ini"
install -d -g "$SteamUser" -o "$SteamUser" -m 775 "$InstanceDir"
install -d -g "$SteamUser" -o "$SteamUser" -m 775 "$InstanceDir/LinuxServer"
install -g "$SteamUser" -o "$SteamUser" -m 664 "$MainConfigTemplate" "$InstanceDir/main.conf"
ln -s "$DefaultConfigDir/KFAI.ini" "$InstanceDir/KFAI.ini"
ln -s "$DefaultConfigDir/KFWeb.ini" "$InstanceDir/KFWeb.ini"
ln -s "$DefaultConfigDir/LinuxServer-KFEngine.ini" "$InstanceDir/LinuxServer-KFEngine.ini"
ln -s "$DefaultConfigDir/LinuxServer-KFGame.ini" "$InstanceDir/LinuxServer-KFGame.ini"
ln -s "$DefaultConfigDir/LinuxServer-KFInput.ini" "$InstanceDir/LinuxServer-KFInput.ini"
ln -s "$DefaultConfigDir/LinuxServer-KFSystemSettings.ini" "$InstanceDir/LinuxServer-KFSystemSettings.ini"
ln -s "$DefaultConfigDir/LinuxServer/LinuxServerEngine.ini" "$InstanceDir/LinuxServer/LinuxServerEngine.ini"
ln -s "$DefaultConfigDir/LinuxServer/LinuxServerGame.ini" "$InstanceDir/LinuxServer/LinuxServerGame.ini"
ln -s "$DefaultConfigDir/LinuxServer/LinuxServerInput.ini" "$InstanceDir/LinuxServer/LinuxServerInput.ini"
ln -s "$DefaultConfigDir/LinuxServer/LinuxServerSystemSettings.ini" "$InstanceDir/LinuxServer/LinuxServerSystemSettings.ini"
2020-07-08 22:52:17 +00:00
}
function fix_steamclient_so ()
{
rm -f "$InstallDir/linux64/steamclient.so"
rm -f "$InstallDir/steamclient.so"
rm -f "$InstallDir/Binaries/Win64/lib64/steamclient.so"
ln -s "/usr/share/steamcmd/linux64/steamclient.so" "$InstallDir/linux64/steamclient.so"
ln -s "/usr/share/steamcmd/linux64/steamclient.so" "$InstallDir/steamclient.so"
ln -s "/usr/share/steamcmd/linux64/steamclient.so" "$InstallDir/Binaries/Win64/lib64/steamclient.so"
}
2020-07-08 22:25:08 +00:00
function update_kf2 ()
{
if [[ -n "$BranchName" ]]; then
local BetaArg="-beta $BranchName"
fi
if ! server_exists; then # First install
2020-07-08 22:40:18 +00:00
echo "$BranchName" > "$ActiveBranch"
2020-07-08 22:53:47 +00:00
if ! steamcmd +login $SteamLogin +force_install_dir $InstallDir +app_update $AppServerNum $BetaArg validate +exit; then
2020-07-08 22:52:17 +00:00
echo "Errors during installation - exit"
exit 1
fi
sudo -u "$SteamUser" $AppBin &
while true
do
if [[ -e "$DefaultConfigDir/KFAI.ini" ]] &&
[[ -e "$DefaultConfigDir/KFWeb.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer-KFEngine.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer-KFGame.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer-KFInput.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer-KFSystemSettings.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer/LinuxServerEngine.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer/LinuxServerGame.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer/LinuxServerInput.ini" ]] &&
[[ -e "$DefaultConfigDir/LinuxServer/LinuxServerSystemSettings.ini" ]]; then
break
fi
sleep 2
done
killall -KILL KFGameSteamServer.bin.x86_64
2020-07-08 22:53:47 +00:00
set_ini_permissions "$DefaultConfigDir"
install -d -g "$SteamUser" -o "$SteamUser" -m 775 "$CacheMapsDir"
2020-07-08 22:52:17 +00:00
fix_steamclient_so
ln -s "$InstanceConfigDir" "$InstanceConfigLnk"
2020-07-08 22:53:47 +00:00
make_default_instance
2020-07-08 22:52:17 +00:00
echo "KF2 succesfully installed"
2020-07-08 22:25:08 +00:00
elif updates_aviable; then # Update
2020-07-08 22:40:18 +00:00
if [[ "$BranchName" == $(cat "$ActiveBranch") ]]; then
stop_instance
2020-07-08 22:53:47 +00:00
steamcmd +login $SteamLogin +force_install_dir $InstallDir +app_update $AppServerNum $BetaArg +exit
2020-07-08 22:40:18 +00:00
start_instance
else
validate
fi
2020-07-08 22:25:08 +00:00
fi
}
2020-07-08 22:52:17 +00:00
function start_instance () # $*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_enabled_instances)
fi
local InactiveServiceList=""
for Instance in $InstanceList
do
2020-07-08 22:25:08 +00:00
if instance_exists "$Instance"; then
2020-07-08 22:52:17 +00:00
local Service=$(service_name "$Instance")
if systemctl -q is-active $Service ; then
echo "Instance $Instance already running - skip"
else
InactiveServiceList+=" $Service"
fi
2020-07-08 22:25:08 +00:00
else
echo "Instance $Instance not exitst"
fi
2020-07-08 22:52:17 +00:00
done
if [[ -n "$InactiveServiceList" ]]; then
systemctl start $InactiveServiceList
2020-07-08 22:25:08 +00:00
else
2020-07-08 22:52:17 +00:00
echo "Nothing to do"
2020-07-08 22:25:08 +00:00
fi
}
2020-07-08 22:52:17 +00:00
function stop_instance () # $*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_instances)
fi
local ToStopInstanceList=""
for Instance in $InstanceList
do
2020-07-08 22:25:08 +00:00
if instance_exists "$Instance"; then
2020-07-08 22:52:17 +00:00
ToStopInstanceList+=" $Instance"
2020-07-08 22:25:08 +00:00
else
echo "Instance $Instance not exitst"
fi
2020-07-08 22:52:17 +00:00
done
if [[ -n "$ToStopInstanceList" ]]; then
systemctl stop $(service_name "$ToStopInstanceList")
2020-07-08 22:25:08 +00:00
else
2020-07-08 22:52:17 +00:00
echo "Nothing to do"
2020-07-08 22:25:08 +00:00
fi
}
2020-07-08 22:52:17 +00:00
function restart_instance () # $*: [InstanceName[s]]
2020-07-08 22:50:08 +00:00
{
2020-07-08 22:52:17 +00:00
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_enabled_instances)
fi
local ToRestartInstancesList=""
for Instance in $InstanceList
do
2020-07-08 22:50:08 +00:00
if instance_exists "$Instance"; then
2020-07-08 22:52:17 +00:00
ToRestartInstancesList+=" $Instance"
2020-07-08 22:50:08 +00:00
else
echo "Instance $Instance not exitst"
fi
2020-07-08 22:52:17 +00:00
done
if [[ -n "$ToRestartInstancesList" ]]; then
systemctl restart $(service_name "$ToRestartInstancesList")
2020-07-08 22:50:08 +00:00
else
2020-07-08 22:52:17 +00:00
echo "Nothing to do"
2020-07-08 22:50:08 +00:00
fi
}
2020-07-08 22:52:17 +00:00
function enable_instance () # $1*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_instances)
fi
local ToEnableInstanceList=""
for Instance in $InstanceList
do
2020-07-08 22:25:08 +00:00
if instance_exists "$Instance"; then
2020-07-08 22:52:17 +00:00
ToEnableInstanceList+=" $Instance"
2020-07-08 22:25:08 +00:00
else
2020-07-08 22:52:17 +00:00
echo "Instance $Instance not exist"
2020-07-08 22:25:08 +00:00
fi
2020-07-08 22:52:17 +00:00
done
if [[ -n "$ToEnableInstanceList" ]]; then
systemctl enable $(service_name "$ToEnableInstanceList")
2020-07-08 22:25:08 +00:00
else
2020-07-08 22:52:17 +00:00
echo "Nothing to do"
2020-07-08 22:25:08 +00:00
fi
}
2020-07-08 22:52:17 +00:00
function disable_instance () # $*: [InstanceName[s]]
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_instances)
fi
local ToDisableInstanceList=""
for Instance in $InstanceList
do
2020-07-08 22:25:08 +00:00
if instance_exists "$Instance"; then
2020-07-08 22:52:17 +00:00
ToDisableInstanceList+=" $Instance"
2020-07-08 22:25:08 +00:00
else
echo "Instance $Instance not exitst"
fi
2020-07-08 22:52:17 +00:00
done
if [[ -n "$ToDisableInstanceList" ]]; then
systemctl disable $(service_name "$ToDisableInstanceList")
2020-07-08 22:25:08 +00:00
else
2020-07-08 22:52:17 +00:00
echo "Nothing to do"
2020-07-08 22:25:08 +00:00
fi
}
function run ()
{
if [[ "$USER" == "$SteamUser" ]]; then
2020-07-08 22:52:17 +00:00
"$AppBin" $*
2020-07-08 22:25:08 +00:00
elif [[ -n $(groups "$USER" | grep -Fo 'wheel') ]] || [[ "$EUID" -eq 0 ]]; then
2020-07-08 22:52:17 +00:00
sudo -u "$SteamUser" "$AppBin" $*
2020-07-08 22:25:08 +00:00
else
echo "You must be a $SteamUser, root or sudo-user to run this command."
fi
}
2020-07-08 22:53:47 +00:00
function map_list_body () # $1: MaplistFile
2020-07-08 22:52:17 +00:00
{
while read WorkshopID
do
2020-07-08 22:53:47 +00:00
local Cache="$CacheMapsDir/$WorkshopID"
local Downl="$DownloadMapsDir/$WorkshopID"
2020-07-08 22:52:17 +00:00
local Url="https://steamcommunity.com/sharedfiles/filedetails/?id=$WorkshopID"
2020-07-08 22:53:47 +00:00
if [[ -d "$Cache" ]]; then
local MapName=$(find "$Cache" -type f -name '*.kfm' -printf '%f\n' | head -n 1)
else
local MapName=""
fi
if [[ -n "$MapName" ]]; then
local MapSize=$(du -sch "$Downl" "$Cache" | tail -n 1 | grep -Po '^[^\s]+')
else
local MapSize="-"; MapName="-"
fi
echo "$MapName $MapSize $WorkshopID $Url"
2020-07-08 22:52:17 +00:00
done < "$1"
}
2020-07-08 22:53:47 +00:00
function map_list_full () # $1: MaplistFile
{
echo "NAME SIZE WORKSHOP_ID WORKSHOP_URL"
map_list_body "$1" | sort -k 1
}
2020-07-08 22:52:17 +00:00
function map_list () # $1: [--human-readable]
{
local MapList=$(mktemp)
for Instance in $(show_instances)
do
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFEngine.ini"
2020-07-08 22:53:47 +00:00
grep -F 'ServerSubscribedWorkshopItems=' "$Config" | sed -r 's/^.+=([0-9]+)$/\1/' >> "$MapList"
2020-07-08 22:52:17 +00:00
done
sort -u "$MapList" -o "$MapList"
if [[ -n "$1" ]]; then
2020-07-08 22:53:47 +00:00
map_list_full "$MapList" | column -t
2020-07-08 22:52:17 +00:00
else
cat "$MapList"
fi
rm -f "$MapList"
}
function any_to_workshopID () # $1: WorkshopID/URL
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
if echo "$1" | grep -qP '^http.+'; then
local WorkshopID=$(echo "$1" | sed -r 's/.+=([0-9]+)$/\1/')
else
local WorkshopID="$1"
fi
echo "$WorkshopID"
}
function map_add () # $*: WorkshopID[s]
{
for Instance in $(show_instances)
do
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFEngine.ini"
if ! grep -qF '[OnlineSubsystemSteamworks.KFWorkshopSteamworks]' "$Config"; then
echo -e '
[OnlineSubsystemSteamworks.KFWorkshopSteamworks]' >> "$Config"
fi
if ! grep -qF 'DownloadManagers=OnlineSubsystemSteamworks.SteamWorkshopDownload' "$Config"; then
sed -i --follow-symlinks -r '0,/DownloadManagers=/ s/^(DownloadManagers=.+)$/DownloadManagers=OnlineSubsystemSteamworks.SteamWorkshopDownload
\1/' "$Config"
fi
for Map in $*
do
local WorkshopID=$(any_to_workshopID "$Map")
local MapStr="ServerSubscribedWorkshopItems=$WorkshopID"
if ! grep -qF "$MapStr" "$Config"; then
echo "Add map $WorkshopID to $Instance"
sed -i --follow-symlinks "/^\[OnlineSubsystemSteamworks\.KFWorkshopSteamworks\]/a $MapStr" "$Config"
fi
done
done
}
function map_del () # $*: WorkshopID[s]
{
2020-07-08 22:53:47 +00:00
# TODO: Remove lines from LinuxServer-KFGame.ini
# I need "crudini" with duplicate keys support >_<
2020-07-08 22:52:17 +00:00
for Map in $*
do
local WorkshopID=$(any_to_workshopID "$Map")
2020-07-08 22:53:47 +00:00
local Cache="$CacheMapsDir/$WorkshopID"
local Downl="$DownloadMapsDir/$WorkshopID"
echo -e "Clear cache:
$Cache
$Downl"
rm -rf "$Cache" "$Downl"
2020-07-08 22:52:17 +00:00
for Instance in $(show_instances)
do
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFEngine.ini"
local MapStr="ServerSubscribedWorkshopItems=$WorkshopID"
if grep -qF "$MapStr" "$Config"; then
echo "Remove map $WorkshopID from $Instance"
sed -i --follow-symlinks "/$MapStr/d" "$Config"
fi
done
done
}
function map_sync ()
{
map_add $(map_list)
for Instance in $(show_instances)
do
2020-07-08 22:30:25 +00:00
if instance_exists "$Instance"; then
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
2020-07-08 22:53:47 +00:00
for MapFile in $(find "$CacheMapsDir" -type f -name '*.kfm' -printf "%f\n")
2020-07-08 22:30:25 +00:00
do
2020-07-08 22:38:11 +00:00
MapName=$(echo "$MapFile" | sed -r 's|.kfm$||g')
2020-07-08 22:30:25 +00:00
if [[ ! -f "$Config" ]]; then
echo "$Config does not exist!"
2020-07-08 22:53:47 +00:00
elif ! grep -qP "MapName=$MapName[ ]*$" "$Config"; then
echo "Adding $MapName to $Instance."
2020-07-08 22:38:11 +00:00
echo -e "
[$MapName KFMapSummary]
MapName=$MapName
bPlayableInSurvival=True
bPlayableInWeekly=True
bPlayableInVsSurvival=True
bPlayableInEndless=True
bPlayableInObjective=False" >> "$Config"
2020-07-08 22:30:25 +00:00
fi
done
else
echo "Instance $Instance not exitst"
fi
2020-07-08 22:52:17 +00:00
done
}
function map_rotate_save () # $*: Instance[s]
{
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_instances)
fi
for Instance in $InstanceList
do
if instance_exists "$Instance"; then
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
local MapRotate="$InstanceConfigDir/$Instance/MapRotate.ini"
grep -F 'ActiveMapCycle=' "$Config" > "$MapRotate"
grep -F 'GameMapCycles=' "$Config" >> "$MapRotate"
else
echo "Instance $Instance not exitst"
fi
done
}
function map_rotate_load () # $*: Instance[s]
{
local InstanceList="$*"
if [[ -z "$InstanceList" ]] ; then
InstanceList=$(show_instances)
fi
for Instance in $InstanceList
do
if instance_exists "$Instance"; then
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
local MapRotate="$InstanceConfigDir/$Instance/MapRotate.ini"
if [[ -e "$MapRotate" ]]; then
sed -i --follow-symlinks -r "/(ActiveMapCycle=|GameMapCycles=)/d" "$Config"
sed -i --follow-symlinks "/\[KFGame\.KFGameInfo\]/ r $MapRotate" "$Config"
else
echo "$MapRotate not found - skip"
fi
else
echo "Instance $Instance not exitst"
fi
done
}
# conversion algorithm taken from here:
# https://github.com/noobient/killinuxfloor/blob/master/share/killinuxfloor
# thank bviktor for that :)
function steamID3_to_steamID64 () # $1: ID3
{
# steamID64 = "7656" + (steamID3 + 1197960265728)
ID64=$1
((ID64+=1197960265728))
ID64="7656${ID64}"
echo "$ID64"
}
function steamID64_to_steamID3 () # $1: ID4
{
# steamID3 = substr(steamID64, 4) - 1197960265728
ID3=${1:4}
((ID3-=1197960265728))
echo "$ID3"
}
function ban_list_ext () # $1: BanlistFile
{
local Num=1
echo "NUM STEAM_ID3 STEAM_ID64 PROFILE_URL"
while read ID3
do
local ID64=$(steamID3_to_steamID64 "$ID3")
local Url=$(curl "https://steamcommunity.com/profiles/$ID64" -s -L -I -o /dev/null -w '%{url_effective}')
echo "$Num $ID3 $ID64 $Url"
((Num++))
done < "$1"
}
function ban_list () # $1: [--human-readable]
{
local BanList=$(mktemp)
for Instance in $(show_instances)
do
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
grep -P 'BannedIDs=' "$Config" | sed -r 's/.+A=([0-9]+),.+/\1/' >> "$BanList"
done
sort -u "$BanList" -o "$BanList"
if [[ -n "$1" ]]; then
ban_list_ext "$BanList" | column -t
2020-07-08 22:30:25 +00:00
else
2020-07-08 22:52:17 +00:00
cat "$BanList"
2020-07-08 22:30:25 +00:00
fi
2020-07-08 22:52:17 +00:00
rm -f "$BanList"
2020-07-08 22:25:08 +00:00
}
2020-07-08 22:52:17 +00:00
function ban_ID3 () # $1: ID3
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
ID3="$1"
for Instance in $(show_instances)
do
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
local BanStr="BannedIDs=(Uid=(A=$ID3,B=$StrangeConstUID))"
if ! grep -qF "$BanStr" "$Config"; then
echo "Add ban $ID3 to $Instance"
sed -i --follow-symlinks "/^\[Engine\.AccessControl\]/a $BanStr" "$Config"
fi
done
2020-07-08 22:25:08 +00:00
}
2020-07-08 22:52:17 +00:00
function unban_ID3 () # $1: ID3
2020-07-08 22:25:08 +00:00
{
2020-07-08 22:52:17 +00:00
ID3="$1"
for Instance in $(show_instances)
do
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
local BanStr="BannedIDs=(Uid=(A=$ID3,B=$StrangeConstUID))"
if grep -qF "$BanStr" "$Config"; then
echo "Remove ban $ID3 from $Instance"
sed -i --follow-symlinks "/$BanStr/d" "$Config"
fi
done
}
function any_to_ID3 () # $1: ID3/ID64/Url
{
if echo "$1" | grep -qP '^http.+'; then
local Xml=$(mktemp)
curl -ss "$1/?xml=1" > "$Xml"
local ID64=$(xmllint --xpath 'string(//steamID64/text())' "$Xml")
local ID3=$(steamID64_to_steamID3 "$ID64")
rm -f "$Xml"
elif [[ $(echo "$1" | wc -m) -eq 18 ]] && echo "$1" | grep -qP '^76561[0-9]+' ; then
local ID3=$(steamID64_to_steamID3 "$1")
else
local ID3="$1"
fi
echo "$ID3"
}
function ban_add () # $*: ban list
{
if [[ -z "$*" ]]; then
echo "Nothing to do"
exit 1
fi
for Ban in $*
do
ban_ID3 $(any_to_ID3 "$Ban")
done
}
function ban_del () # $*: ban list
{
if [[ -z "$*" ]]; then
echo "Nothing to do"
exit 1
fi
for Ban in $*
do
unban_ID3 $(any_to_ID3 "$Ban")
done
}
function ban_sync ()
{
ban_list | \
while read ID3
do
ban_ID3 "$ID3"
done
2020-07-08 22:25:08 +00:00
}
if [[ $# -eq 0 ]]; then show_help; exit 0; fi
case $1 in
2020-07-08 22:52:17 +00:00
-h|--help ) show_help; ;;
-n|--new ) if [[ "$EUID" -eq 0 ]]; then shift; new_instance $*; else run_as_root $*; fi ;;
-d|--delete ) if [[ "$EUID" -eq 0 ]]; then shift; delete_instance $*; else run_as_root $*; fi ;;
-s|--status ) shift; show_status $*; ;;
-u|--update ) if [[ "$EUID" -eq 0 ]]; then update_kf2 ; else run_as_root $*; fi ;;
-v|--validate ) if [[ "$EUID" -eq 0 ]]; then validate ; else run_as_root $*; fi ;;
-r|--run ) shift; run $*; ;;
-st|--start ) if [[ "$EUID" -eq 0 ]]; then shift; start_instance $*; else run_as_root $*; fi ;;
-sp|--stop ) if [[ "$EUID" -eq 0 ]]; then shift; stop_instance $*; else run_as_root $*; fi ;;
-rs|--restart ) if [[ "$EUID" -eq 0 ]]; then shift; restart_instance $*; else run_as_root $*; fi ;;
-en|--enable ) if [[ "$EUID" -eq 0 ]]; then shift; enable_instance $*; else run_as_root $*; fi ;;
-di|--disable ) if [[ "$EUID" -eq 0 ]]; then shift; disable_instance $*; else run_as_root $*; fi ;;
-ml|--map-list ) if [[ "$EUID" -eq 0 ]]; then shift; map_list "-h" ; else run_as_root $*; fi ;;
-ms|--map-sync ) if [[ "$EUID" -eq 0 ]]; then shift; map_sync ; else run_as_root $*; fi ;;
-ma|--map-add ) if [[ "$EUID" -eq 0 ]]; then shift; map_add $*; else run_as_root $*; fi ;;
-md|--map-del ) if [[ "$EUID" -eq 0 ]]; then shift; map_del $*; else run_as_root $*; fi ;;
-mrs|--map-rotate-save ) if [[ "$EUID" -eq 0 ]]; then shift; map_rotate_save $*; else run_as_root $*; fi ;;
-mrl|--map-rotate-load ) if [[ "$EUID" -eq 0 ]]; then shift; map_rotate_load $*; else run_as_root $*; fi ;;
-bl|--ban-list ) if [[ "$EUID" -eq 0 ]]; then shift; ban_list "-h" ; else run_as_root $*; fi ;;
-bs|--ban-sync ) if [[ "$EUID" -eq 0 ]]; then shift; ban_sync ; else run_as_root $*; fi ;;
-ba|--ban-add ) if [[ "$EUID" -eq 0 ]]; then shift; ban_add $*; else run_as_root $*; fi ;;
-bd|--ban-del ) if [[ "$EUID" -eq 0 ]]; then shift; ban_del $*; else run_as_root $*; fi ;;
* ) echo "Command not recognized: $1"; exit 1 ;;
2020-07-08 22:25:08 +00:00
esac