diff --git a/lgsm/functions/command_console.sh b/lgsm/functions/command_console.sh index ee9f13b6e..e59d24a2f 100644 --- a/lgsm/functions/command_console.sh +++ b/lgsm/functions/command_console.sh @@ -13,13 +13,9 @@ fn_print_header fn_print_information_nl "Press \"CTRL+b\" then \"d\" to exit console." fn_print_warning_nl "Do NOT press CTRL+c to exit." echo "" -while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; return;; - * ) echo "Please answer yes or no.";; -esac +if ! fn_prompt_yn "Continue?" Y; then + echo Exiting; return +fi done fn_print_dots "Accessing console" sleep 1 @@ -35,14 +31,9 @@ else fn_print_error_nl "Server not running" fn_script_log_error "Failed to access: Server not running" sleep 1 - while true; do - read -e -i "y" -p "Do you want to start the server? [Y/n]" yn - case $yn in - [Yy]* ) exitbypass=1; command_start.sh; break;; - [Nn]* ) break;; - * ) echo "Please answer yes or no.";; - esac - done + if fn_prompt_yn "Do you want to start the server?" Y; then + exitbypass=1; command_start.sh + fi fi core_exit.sh diff --git a/lgsm/functions/command_debug.sh b/lgsm/functions/command_debug.sh index 25e855c94..a98048638 100644 --- a/lgsm/functions/command_debug.sh +++ b/lgsm/functions/command_debug.sh @@ -68,14 +68,9 @@ echo -e "Use for identifying server issues only!" echo -e "Press CTRL+c to drop out of debug mode." fn_print_warning_nl "If ${servicename} is already running it will be stopped." echo "" -while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; return;; - * ) echo "Please answer yes or no.";; -esac -done +if ! fn_prompt_yn "Continue?" Y; then + echo Exiting; return +fi fn_print_info_nl "Stopping any running servers" fn_script_log_info "Stopping any running servers" diff --git a/lgsm/functions/command_fastdl.sh b/lgsm/functions/command_fastdl.sh index c66834b98..345ff765b 100644 --- a/lgsm/functions/command_fastdl.sh +++ b/lgsm/functions/command_fastdl.sh @@ -42,14 +42,9 @@ fn_fastdl_init(){ sleep 1 echo -en "\n" fn_script_log "Started FastDL creation" - while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) exit;; - * ) echo "Please answer yes or no.";; - esac - done + if ! fn_prompt_yn "Continue?" Y; then + exit + fi fn_script_log "Initiating FastDL creation" # Check and create directories @@ -91,27 +86,21 @@ fn_fastdl_config(){ # Prompt for clearing old files if directory was already here if [ -n "${newfastdl}" ] && [ "${newfastdl}" == "0" ]; then fn_print_dots - while true; do - read -e -i "y" -p "Clear old FastDL files? [Y/n]" yn - case $yn in - [Yy]* ) clearoldfastdl="on"; fn_script_log "clearoldfastdl enabled"; fn_print_ok "Clearing Enabled"; break;; - [Nn]* ) clearoldfastdl="off"; fn_script_log "clearoldfastdl disabled"; fn_print_ok "Clearing Disabled"; break;; - * ) echo "Please answer yes or no.";; - esac - done + if fn_prompt_yn "Clear old FastDL files?" Y; then + clearoldfastdl="on"; fn_script_log "clearoldfastdl enabled"; fn_print_ok "Clearing Enabled" + else + clearoldfastdl="off"; fn_script_log "clearoldfastdl disabled"; fn_print_ok "Clearing Disabled" + fi echo -en "\n" fi # Prompt for using bzip2 if it's installed if [ ${bzip2installed} == 1 ]; then fn_print_dots - while true; do - read -e -i "y" -p "Enable file compression using bzip2? [Y/n]" yn - case $yn in - [Yy]* ) bzip2enable="on"; fn_script_log "bzip2 enabled"; fn_print_ok "bzip2 Enabled"; break;; - [Nn]* ) bzip2enable="off"; fn_script_log "bzip2 disabled"; fn_print_ok "bzip2 Disabled"; break;; - * ) echo "Please answer yes or no.";; - esac - done + if fn_prompt_yn "Enable file compression using bzip2?" Y; then + bzip2enable="on"; fn_script_log "bzip2 enabled"; fn_print_ok "bzip2 Enabled" + else + bzip2enable="off"; fn_script_log "bzip2 disabled"; fn_print_ok "bzip2 Disabled" + fi echo -en "\n" fi } @@ -119,14 +108,11 @@ fn_fastdl_config(){ fn_fastdl_gmod_config(){ # Prompt for download enforcer, that is using a .lua addfile resource generator fn_print_dots - while true; do - read -e -i "y" -p "Use client download enforcer? [Y/n]" yn - case $yn in - [Yy]* ) luaressource="on"; fn_script_log "DL enforcer Enabled"; fn_print_ok "Enforcer Enabled"; break;; - [Nn]* ) luaressource="off"; fn_script_log "DL enforcer Disabled"; fn_print_ok "Enforcer Disabled"; break;; - * ) echo "Please answer yes or no.";; - esac - done + if fn_prompt_yn "Use client download enforcer?" Y; then + luaressource="on"; fn_script_log "DL enforcer Enabled"; fn_print_ok "Enforcer Enabled" + else + luaressource="off"; fn_script_log "DL enforcer Disabled"; fn_print_ok "Enforcer Disabled" + fi echo -en "\n" } diff --git a/lgsm/functions/command_install_resources_mta.sh b/lgsm/functions/command_install_resources_mta.sh index 678e412ad..b4432e0f5 100644 --- a/lgsm/functions/command_install_resources_mta.sh +++ b/lgsm/functions/command_install_resources_mta.sh @@ -21,11 +21,6 @@ fn_install_resources(){ fn_print_header fn_print_warning_nl "Installing the default resources with existing resources may cause issues." -while true; do - read -e -i "y" -p "Do you want to install MTA default resources? [Y/n]" yn - case $yn in - [Yy]* ) fn_install_resources && break;; - [Nn]* ) break;; - * ) echo "Please answer yes or no.";; - esac -done +if fn_prompt_yn "Do you want to install MTA default resources?" Y; then + fn_install_resources +fi diff --git a/lgsm/functions/command_mods_install.sh b/lgsm/functions/command_mods_install.sh index 2d85c12f6..9610d5e91 100644 --- a/lgsm/functions/command_mods_install.sh +++ b/lgsm/functions/command_mods_install.sh @@ -87,14 +87,9 @@ if [ -f "${modsinstalledlistfullpath}" ]; then fn_script_log_warn "${modprettyname} is already installed" sleep 1 echo " * Any configs may be overwritten." - while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; core_exit.sh;; - * ) echo "Please answer yes or no.";; - esac - done + if ! fn_prompt_yn "Continue?" Y; then + echo Exiting; core_exit.sh + fi fn_script_log_info "User selected to continue" fi fi diff --git a/lgsm/functions/command_mods_remove.sh b/lgsm/functions/command_mods_remove.sh index d63a00101..932a3d733 100644 --- a/lgsm/functions/command_mods_remove.sh +++ b/lgsm/functions/command_mods_remove.sh @@ -45,14 +45,9 @@ done fn_print_warning_nl "You are about to remove ${cyan}${usermodselect}${default}." echo " * Any custom files/configuration will be removed." -while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; exit;; - * ) echo "Please answer yes or no.";; -esac -done +if ! fn_prompt_yn "Continue?" Y; then + echo Exiting; exit +fi currentmod="${usermodselect}" fn_mod_get_info diff --git a/lgsm/functions/command_ts3_server_pass.sh b/lgsm/functions/command_ts3_server_pass.sh index 1a9896889..529b705b1 100644 --- a/lgsm/functions/command_ts3_server_pass.sh +++ b/lgsm/functions/command_ts3_server_pass.sh @@ -19,14 +19,9 @@ fn_serveradmin_password_prompt(){ fn_print_information_nl "You are about to change the ${gamename} ServerAdmin password." fn_print_warning_nl "${gamename} will restart during this process." echo "" - while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; exit;; - * ) echo "Please answer yes or no.";; - esac - done + if ! fn_prompt_yn "Continue?" Y; then + echo Exiting; exit + fi fn_script_log_info "Initiating ${gamename} ServerAdmin password change" read -p "Enter new password : " newpassword } diff --git a/lgsm/functions/command_wipe.sh b/lgsm/functions/command_wipe.sh index 440c8080e..d50e354fc 100644 --- a/lgsm/functions/command_wipe.sh +++ b/lgsm/functions/command_wipe.sh @@ -105,18 +105,13 @@ fn_wipe_server_remove_files(){ if [ "${gamename}" == "Rust" ]; then if [ -d "${serveridentitydir}/storage" ]||[ -d "${serveridentitydir}/user" ]||[ -n "$(find "${serveridentitydir}" -type f -name "proceduralmap*.sav")" ]||[ -n "$(find "${serveridentitydir}" -type f -name "Log.*.txt")" ]; then fn_print_warning_nl "Any user, storage, log and map data from ${serveridentitydir} will be erased." - while true; do - read -e -i "y" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; core_exit.sh;; - * ) echo "Please answer yes or no.";; - esac - done + if ! fn_prompt_yn "Continue?" Y; then + echo Exiting; core_exit.sh + fi fn_script_log_info "User selects to erase any user, storage, log and map data from ${serveridentitydir}" sleep 1 fn_wipe_server_process - else + else fn_print_information_nl "No data to wipe was found" fn_script_log_info "No data to wipe was found." sleep 1 diff --git a/lgsm/functions/compress_unreal2_maps.sh b/lgsm/functions/compress_unreal2_maps.sh index 67d3621e2..f2bcb2135 100644 --- a/lgsm/functions/compress_unreal2_maps.sh +++ b/lgsm/functions/compress_unreal2_maps.sh @@ -19,14 +19,9 @@ echo "Compressed maps saved to:" echo "" echo "${compressedmapsdir}" echo "" -while true; do - read -e -i "y" -p "Start compression [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; return;; - * ) echo "Please answer yes or no.";; - esac -done +if ! fn_prompt_yn "Start compression?" Y; then + echo Exiting; return +fi mkdir -pv "${compressedmapsdir}" > /dev/null 2>&1 rm -rfv "${filesdir}/Maps/"*.ut2.uz2 cd "${systemdir}" @@ -34,4 +29,4 @@ for map in "${filesdir}/Maps/"*; do ./ucc-bin compress "${map}" --nohomedir done mv -fv "${filesdir}/Maps/"*.ut2.uz2 "${compressedmapsdir}" -core_exit.sh \ No newline at end of file +core_exit.sh diff --git a/lgsm/functions/compress_ut99_maps.sh b/lgsm/functions/compress_ut99_maps.sh index 3ef6e140e..872b3da06 100644 --- a/lgsm/functions/compress_ut99_maps.sh +++ b/lgsm/functions/compress_ut99_maps.sh @@ -19,14 +19,9 @@ echo "Compressed maps saved to:" echo "" echo "${compressedmapsdir}" echo "" -while true; do - read -e -i "y" -p "Start compression [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) echo Exiting; return;; - * ) echo "Please answer yes or no.";; - esac -done +if ! fn_prompt_yn "Start compression?" Y; then + echo Exiting; return +fi mkdir -pv "${compressedmapsdir}" > /dev/null 2>&1 rm -rfv "${filesdir}/Maps/"*.unr.uz cd "${systemdir}" @@ -34,4 +29,4 @@ for map in "${filesdir}/Maps/"*; do ./ucc-bin compress "${map}" --nohomedir done mv -fv "${filesdir}/Maps/"*.unr.uz "${compressedmapsdir}" -core_exit.sh \ No newline at end of file +core_exit.sh diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index 540729af7..1d3623173 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -1,6 +1,7 @@ #!/bin/bash # LGSM core_messages.sh function # Author: Daniel Gibbs +# Contributor: s-eam # Website: https://gameservermanagers.com # Description: Defines on-screen messages such as [ OK ] and how script logs look. @@ -268,6 +269,29 @@ fn_print_information_nl(){ echo -e "${cyan}Information!${default} $@" } +# Y/N Prompt +fn_prompt_yn(){ + local prompt="$1" + local initial="$2" + + if [ "${initial}" == "Y" ]; then + prompt+=" [Y/n] " + elif [ "${initial}" == "N" ]; then + prompt+=" [y/N] " + else + prompt+=" [y/n] " + fi + + while true; do + read -e -i "${initial}" -p "${prompt}" -r yn + case "${yn}" in + [Yy]|[Yy][Ee][Ss]) return 0 ;; + [Nn]|[Nn][Oo]) return 1 ;; + *) echo "Please answer yes or no." ;; + esac + done +} + # On-Screen End of Line ################################## diff --git a/lgsm/functions/install_dst_token.sh b/lgsm/functions/install_dst_token.sh index 2e9713e71..27966bcbc 100644 --- a/lgsm/functions/install_dst_token.sh +++ b/lgsm/functions/install_dst_token.sh @@ -21,15 +21,12 @@ if [ -z "${autoinstall}" ]; then if [ -s "${clustercfgdir}/cluster_token.txt" ]; then echo "The cluster token is already set. Do you want to overwrite it?" fn_script_log_info "Don't Starve Together cluster token is already set" - while true; do - read -e -i "n" -p "Continue? [Y/n]" yn - case $yn in - [Yy]* ) overwritetoken="true"; break;; - [Nn]* ) overwritetoken="false"; break;; - * ) echo "Please answer yes or no.";; - esac - done - fi + if fn_prompt_yn "Continue?" N; then + overwritetoken="true" + else + overwritetoken="false" + fi + fi if [ "${overwritetoken}" == "true" ]; then echo "Once you have the cluster token, enter it below" echo -n "Cluster Token: " diff --git a/lgsm/functions/install_minecraft_eula.sh b/lgsm/functions/install_minecraft_eula.sh index 410e283b4..e4901979b 100644 --- a/lgsm/functions/install_minecraft_eula.sh +++ b/lgsm/functions/install_minecraft_eula.sh @@ -16,18 +16,13 @@ echo "eula=false" > "${filesdir}/eula.txt" if [ -z "${autoinstall}" ]; then echo "By continuing you are indicating your agreement to the EULA." echo "" - while true; do - read -e -i "y" -p "Continue [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) core_exit.sh;; - * ) echo "Please answer yes or no.";; - esac - done + if ! fn_prompt_yn "Continue?" Y; then + core_exit.sh + fi else echo "By using auto-install you are indicating your agreement to the EULA." echo "" sleep 5 fi -sed -i "s/eula=false/eula=true/g" "${filesdir}/eula.txt" \ No newline at end of file +sed -i "s/eula=false/eula=true/g" "${filesdir}/eula.txt" diff --git a/lgsm/functions/install_retry.sh b/lgsm/functions/install_retry.sh index d0ca16fef..757dd6574 100644 --- a/lgsm/functions/install_retry.sh +++ b/lgsm/functions/install_retry.sh @@ -8,11 +8,8 @@ local commandname="INSTALL" local commandaction="Install" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" -while true; do - read -e -i "y" -p "Retry install? [Y/n]" yn - case $yn in - [Yy]* ) command_install.sh; exit;; - [Nn]* ) echo Exiting; exit;; - * ) echo "Please answer yes or no.";; - esac -done \ No newline at end of file +if fn_prompt_yn "Retry install?" Y; then + command_install.sh; exit +else + echo Exiting; exit +fi diff --git a/lgsm/functions/install_server_dir.sh b/lgsm/functions/install_server_dir.sh index d527b6193..1cd64110d 100644 --- a/lgsm/functions/install_server_dir.sh +++ b/lgsm/functions/install_server_dir.sh @@ -19,16 +19,11 @@ if [ -d "${filesdir}" ]; then fn_print_warning_nl "A server is already installed here." fi if [ -z "${autoinstall}" ]; then - while true; do - read -e -i "y" -p "Continue [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) exit;; - * ) echo "Please answer yes or no.";; - esac - done + if ! fn_prompt_yn "Continue?" Y; then + exit + fi fi if [ ! -d "${filesdir}" ]; then mkdir -v "${filesdir}" fi -sleep 1 \ No newline at end of file +sleep 1 diff --git a/lgsm/functions/install_server_files.sh b/lgsm/functions/install_server_files.sh index 9b099edd4..4d4dfe892 100644 --- a/lgsm/functions/install_server_files.sh +++ b/lgsm/functions/install_server_files.sh @@ -146,12 +146,7 @@ fi if [ -z "${autoinstall}" ]; then echo "" echo "=================================" - while true; do - read -e -i "y" -p "Was the install successful? [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) install_retry.sh;; - * ) echo "Please answer yes or no.";; - esac - done + if ! fn_prompt_yn "Was the install successful?" Y; then + install_retry.sh + fi fi diff --git a/lgsm/functions/install_ts3db.sh b/lgsm/functions/install_ts3db.sh index bada12c0b..dec3b6773 100644 --- a/lgsm/functions/install_ts3db.sh +++ b/lgsm/functions/install_ts3db.sh @@ -48,14 +48,9 @@ fn_install_ts3db_mariadb(){ if [ -z "${autoinstall}" ]; then echo "" - while true; do - read -e -i "n" -p "Do you want to use MariaDB/MySQL instead of sqlite (Database Server including user and database already has to be set up!)? [y/N]" yn - case $yn in - [Yy]* ) fn_install_ts3db_mariadb && break;; - [Nn]* ) break;; - * ) echo "Please answer yes or no.";; - esac - done + if ! fn_prompt_yn "Do you want to use MariaDB/MySQL instead of sqlite (Database Server including user and database already has to be set up!)?" N; then + fn_install_ts3db_mariadb + fi else fn_print_warning_nl "./${selfname} auto-install is uses sqlite. For MariaDB/MySQL use ./${selfname} install" fi diff --git a/lgsm/functions/install_unreal_tournament_eula.sh b/lgsm/functions/install_unreal_tournament_eula.sh index b39f9b2e2..f2a5eb445 100644 --- a/lgsm/functions/install_unreal_tournament_eula.sh +++ b/lgsm/functions/install_unreal_tournament_eula.sh @@ -16,18 +16,13 @@ echo "eula=false" > "${filesdir}/eula.txt" if [ -z "${autoinstall}" ]; then echo "By continuing you are indicating your agreement to the EULA." echo "" - while true; do - read -e -i "y" -p "Continue [Y/n]" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) core_exit.sh;; - * ) echo "Please answer yes or no.";; - esac - done + if ! fn_prompt_yn "Continue?" Y; then + core_exit.sh + fi else echo "By using auto-install you are indicating your agreement to the EULA." echo "" sleep 5 fi -sed -i "s/eula=false/eula=true/g" "${filesdir}/eula.txt" \ No newline at end of file +sed -i "s/eula=false/eula=true/g" "${filesdir}/eula.txt"