Browse Source

Merge pull request #1306 from s-eam/feature/prompt-user-function

Abstract Y/N Prompt Logic
pull/1323/head
Daniel Gibbs 8 years ago
committed by GitHub
parent
commit
db11f60bb5
  1. 21
      lgsm/functions/command_console.sh
  2. 11
      lgsm/functions/command_debug.sh
  3. 50
      lgsm/functions/command_fastdl.sh
  4. 11
      lgsm/functions/command_install_resources_mta.sh
  5. 11
      lgsm/functions/command_mods_install.sh
  6. 11
      lgsm/functions/command_mods_remove.sh
  7. 11
      lgsm/functions/command_ts3_server_pass.sh
  8. 11
      lgsm/functions/command_wipe.sh
  9. 13
      lgsm/functions/compress_unreal2_maps.sh
  10. 13
      lgsm/functions/compress_ut99_maps.sh
  11. 24
      lgsm/functions/core_messages.sh
  12. 13
      lgsm/functions/install_dst_token.sh
  13. 13
      lgsm/functions/install_minecraft_eula.sh
  14. 13
      lgsm/functions/install_retry.sh
  15. 13
      lgsm/functions/install_server_dir.sh
  16. 11
      lgsm/functions/install_server_files.sh
  17. 11
      lgsm/functions/install_ts3db.sh
  18. 13
      lgsm/functions/install_unreal_tournament_eula.sh

21
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_information_nl "Press \"CTRL+b\" then \"d\" to exit console."
fn_print_warning_nl "Do NOT press CTRL+c to exit." fn_print_warning_nl "Do NOT press CTRL+c to exit."
echo "" echo ""
while true; do if ! fn_prompt_yn "Continue?" Y; then
read -e -i "y" -p "Continue? [Y/n]" yn echo Exiting; return
case $yn in fi
[Yy]* ) break;;
[Nn]* ) echo Exiting; return;;
* ) echo "Please answer yes or no.";;
esac
done done
fn_print_dots "Accessing console" fn_print_dots "Accessing console"
sleep 1 sleep 1
@ -35,14 +31,9 @@ else
fn_print_error_nl "Server not running" fn_print_error_nl "Server not running"
fn_script_log_error "Failed to access: Server not running" fn_script_log_error "Failed to access: Server not running"
sleep 1 sleep 1
while true; do if fn_prompt_yn "Do you want to start the server?" Y; then
read -e -i "y" -p "Do you want to start the server? [Y/n]" yn exitbypass=1; command_start.sh
case $yn in fi
[Yy]* ) exitbypass=1; command_start.sh; break;;
[Nn]* ) break;;
* ) echo "Please answer yes or no.";;
esac
done
fi fi
core_exit.sh core_exit.sh

11
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." echo -e "Press CTRL+c to drop out of debug mode."
fn_print_warning_nl "If ${servicename} is already running it will be stopped." fn_print_warning_nl "If ${servicename} is already running it will be stopped."
echo "" echo ""
while true; do if ! fn_prompt_yn "Continue?" Y; then
read -e -i "y" -p "Continue? [Y/n]" yn echo Exiting; return
case $yn in fi
[Yy]* ) break;;
[Nn]* ) echo Exiting; return;;
* ) echo "Please answer yes or no.";;
esac
done
fn_print_info_nl "Stopping any running servers" fn_print_info_nl "Stopping any running servers"
fn_script_log_info "Stopping any running servers" fn_script_log_info "Stopping any running servers"

50
lgsm/functions/command_fastdl.sh

@ -42,14 +42,9 @@ fn_fastdl_init(){
sleep 1 sleep 1
echo -en "\n" echo -en "\n"
fn_script_log "Started FastDL creation" fn_script_log "Started FastDL creation"
while true; do if ! fn_prompt_yn "Continue?" Y; then
read -e -i "y" -p "Continue? [Y/n]" yn exit
case $yn in fi
[Yy]* ) break;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
done
fn_script_log "Initiating FastDL creation" fn_script_log "Initiating FastDL creation"
# Check and create directories # Check and create directories
@ -91,27 +86,21 @@ fn_fastdl_config(){
# Prompt for clearing old files if directory was already here # Prompt for clearing old files if directory was already here
if [ -n "${newfastdl}" ] && [ "${newfastdl}" == "0" ]; then if [ -n "${newfastdl}" ] && [ "${newfastdl}" == "0" ]; then
fn_print_dots fn_print_dots
while true; do if fn_prompt_yn "Clear old FastDL files?" Y; then
read -e -i "y" -p "Clear old FastDL files? [Y/n]" yn clearoldfastdl="on"; fn_script_log "clearoldfastdl enabled"; fn_print_ok "Clearing Enabled"
case $yn in else
[Yy]* ) clearoldfastdl="on"; fn_script_log "clearoldfastdl enabled"; fn_print_ok "Clearing Enabled"; break;; clearoldfastdl="off"; fn_script_log "clearoldfastdl disabled"; fn_print_ok "Clearing Disabled"
[Nn]* ) clearoldfastdl="off"; fn_script_log "clearoldfastdl disabled"; fn_print_ok "Clearing Disabled"; break;; fi
* ) echo "Please answer yes or no.";;
esac
done
echo -en "\n" echo -en "\n"
fi fi
# Prompt for using bzip2 if it's installed # Prompt for using bzip2 if it's installed
if [ ${bzip2installed} == 1 ]; then if [ ${bzip2installed} == 1 ]; then
fn_print_dots fn_print_dots
while true; do if fn_prompt_yn "Enable file compression using bzip2?" Y; then
read -e -i "y" -p "Enable file compression using bzip2? [Y/n]" yn bzip2enable="on"; fn_script_log "bzip2 enabled"; fn_print_ok "bzip2 Enabled"
case $yn in else
[Yy]* ) bzip2enable="on"; fn_script_log "bzip2 enabled"; fn_print_ok "bzip2 Enabled"; break;; bzip2enable="off"; fn_script_log "bzip2 disabled"; fn_print_ok "bzip2 Disabled"
[Nn]* ) bzip2enable="off"; fn_script_log "bzip2 disabled"; fn_print_ok "bzip2 Disabled"; break;; fi
* ) echo "Please answer yes or no.";;
esac
done
echo -en "\n" echo -en "\n"
fi fi
} }
@ -119,14 +108,11 @@ fn_fastdl_config(){
fn_fastdl_gmod_config(){ fn_fastdl_gmod_config(){
# Prompt for download enforcer, that is using a .lua addfile resource generator # Prompt for download enforcer, that is using a .lua addfile resource generator
fn_print_dots fn_print_dots
while true; do if fn_prompt_yn "Use client download enforcer?" Y; then
read -e -i "y" -p "Use client download enforcer? [Y/n]" yn luaressource="on"; fn_script_log "DL enforcer Enabled"; fn_print_ok "Enforcer Enabled"
case $yn in else
[Yy]* ) luaressource="on"; fn_script_log "DL enforcer Enabled"; fn_print_ok "Enforcer Enabled"; break;; luaressource="off"; fn_script_log "DL enforcer Disabled"; fn_print_ok "Enforcer Disabled"
[Nn]* ) luaressource="off"; fn_script_log "DL enforcer Disabled"; fn_print_ok "Enforcer Disabled"; break;; fi
* ) echo "Please answer yes or no.";;
esac
done
echo -en "\n" echo -en "\n"
} }

11
lgsm/functions/command_install_resources_mta.sh

@ -21,11 +21,6 @@ fn_install_resources(){
fn_print_header fn_print_header
fn_print_warning_nl "Installing the default resources with existing resources may cause issues." fn_print_warning_nl "Installing the default resources with existing resources may cause issues."
while true; do if fn_prompt_yn "Do you want to install MTA default resources?" Y; then
read -e -i "y" -p "Do you want to install MTA default resources? [Y/n]" yn fn_install_resources
case $yn in fi
[Yy]* ) fn_install_resources && break;;
[Nn]* ) break;;
* ) echo "Please answer yes or no.";;
esac
done

11
lgsm/functions/command_mods_install.sh

@ -87,14 +87,9 @@ if [ -f "${modsinstalledlistfullpath}" ]; then
fn_script_log_warn "${modprettyname} is already installed" fn_script_log_warn "${modprettyname} is already installed"
sleep 1 sleep 1
echo " * Any configs may be overwritten." echo " * Any configs may be overwritten."
while true; do if ! fn_prompt_yn "Continue?" Y; then
read -e -i "y" -p "Continue? [Y/n]" yn echo Exiting; core_exit.sh
case $yn in fi
[Yy]* ) break;;
[Nn]* ) echo Exiting; core_exit.sh;;
* ) echo "Please answer yes or no.";;
esac
done
fn_script_log_info "User selected to continue" fn_script_log_info "User selected to continue"
fi fi
fi fi

11
lgsm/functions/command_mods_remove.sh

@ -45,14 +45,9 @@ done
fn_print_warning_nl "You are about to remove ${cyan}${usermodselect}${default}." fn_print_warning_nl "You are about to remove ${cyan}${usermodselect}${default}."
echo " * Any custom files/configuration will be removed." echo " * Any custom files/configuration will be removed."
while true; do if ! fn_prompt_yn "Continue?" Y; then
read -e -i "y" -p "Continue? [Y/n]" yn echo Exiting; exit
case $yn in fi
[Yy]* ) break;;
[Nn]* ) echo Exiting; exit;;
* ) echo "Please answer yes or no.";;
esac
done
currentmod="${usermodselect}" currentmod="${usermodselect}"
fn_mod_get_info fn_mod_get_info

11
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_information_nl "You are about to change the ${gamename} ServerAdmin password."
fn_print_warning_nl "${gamename} will restart during this process." fn_print_warning_nl "${gamename} will restart during this process."
echo "" echo ""
while true; do if ! fn_prompt_yn "Continue?" Y; then
read -e -i "y" -p "Continue? [Y/n]" yn echo Exiting; exit
case $yn in fi
[Yy]* ) break;;
[Nn]* ) echo Exiting; exit;;
* ) echo "Please answer yes or no.";;
esac
done
fn_script_log_info "Initiating ${gamename} ServerAdmin password change" fn_script_log_info "Initiating ${gamename} ServerAdmin password change"
read -p "Enter new password : " newpassword read -p "Enter new password : " newpassword
} }

11
lgsm/functions/command_wipe.sh

@ -105,14 +105,9 @@ fn_wipe_server_remove_files(){
if [ "${gamename}" == "Rust" ]; then 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 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." fn_print_warning_nl "Any user, storage, log and map data from ${serveridentitydir} will be erased."
while true; do if ! fn_prompt_yn "Continue?" Y; then
read -e -i "y" -p "Continue? [Y/n]" yn echo Exiting; core_exit.sh
case $yn in fi
[Yy]* ) break;;
[Nn]* ) echo Exiting; core_exit.sh;;
* ) echo "Please answer yes or no.";;
esac
done
fn_script_log_info "User selects to erase any user, storage, log and map data from ${serveridentitydir}" fn_script_log_info "User selects to erase any user, storage, log and map data from ${serveridentitydir}"
sleep 1 sleep 1
fn_wipe_server_process fn_wipe_server_process

13
lgsm/functions/compress_unreal2_maps.sh

@ -19,14 +19,9 @@ echo "Compressed maps saved to:"
echo "" echo ""
echo "${compressedmapsdir}" echo "${compressedmapsdir}"
echo "" echo ""
while true; do if ! fn_prompt_yn "Start compression?" Y; then
read -e -i "y" -p "Start compression [Y/n]" yn echo Exiting; return
case $yn in fi
[Yy]* ) break;;
[Nn]* ) echo Exiting; return;;
* ) echo "Please answer yes or no.";;
esac
done
mkdir -pv "${compressedmapsdir}" > /dev/null 2>&1 mkdir -pv "${compressedmapsdir}" > /dev/null 2>&1
rm -rfv "${filesdir}/Maps/"*.ut2.uz2 rm -rfv "${filesdir}/Maps/"*.ut2.uz2
cd "${systemdir}" cd "${systemdir}"
@ -34,4 +29,4 @@ for map in "${filesdir}/Maps/"*; do
./ucc-bin compress "${map}" --nohomedir ./ucc-bin compress "${map}" --nohomedir
done done
mv -fv "${filesdir}/Maps/"*.ut2.uz2 "${compressedmapsdir}" mv -fv "${filesdir}/Maps/"*.ut2.uz2 "${compressedmapsdir}"
core_exit.sh core_exit.sh

13
lgsm/functions/compress_ut99_maps.sh

@ -19,14 +19,9 @@ echo "Compressed maps saved to:"
echo "" echo ""
echo "${compressedmapsdir}" echo "${compressedmapsdir}"
echo "" echo ""
while true; do if ! fn_prompt_yn "Start compression?" Y; then
read -e -i "y" -p "Start compression [Y/n]" yn echo Exiting; return
case $yn in fi
[Yy]* ) break;;
[Nn]* ) echo Exiting; return;;
* ) echo "Please answer yes or no.";;
esac
done
mkdir -pv "${compressedmapsdir}" > /dev/null 2>&1 mkdir -pv "${compressedmapsdir}" > /dev/null 2>&1
rm -rfv "${filesdir}/Maps/"*.unr.uz rm -rfv "${filesdir}/Maps/"*.unr.uz
cd "${systemdir}" cd "${systemdir}"
@ -34,4 +29,4 @@ for map in "${filesdir}/Maps/"*; do
./ucc-bin compress "${map}" --nohomedir ./ucc-bin compress "${map}" --nohomedir
done done
mv -fv "${filesdir}/Maps/"*.unr.uz "${compressedmapsdir}" mv -fv "${filesdir}/Maps/"*.unr.uz "${compressedmapsdir}"
core_exit.sh core_exit.sh

24
lgsm/functions/core_messages.sh

@ -1,6 +1,7 @@
#!/bin/bash #!/bin/bash
# LinuxGSM core_messages.sh function # LinuxGSM core_messages.sh function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Contributor: s-eam
# Website: https://gameservermanagers.com # Website: https://gameservermanagers.com
# Description: Defines on-screen messages such as [ OK ] and how script logs look. # 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} $@" 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 # On-Screen End of Line
################################## ##################################

13
lgsm/functions/install_dst_token.sh

@ -21,14 +21,11 @@ if [ -z "${autoinstall}" ]; then
if [ -s "${clustercfgdir}/cluster_token.txt" ]; then if [ -s "${clustercfgdir}/cluster_token.txt" ]; then
echo "The cluster token is already set. Do you want to overwrite it?" 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" fn_script_log_info "Don't Starve Together cluster token is already set"
while true; do if fn_prompt_yn "Continue?" N; then
read -e -i "n" -p "Continue? [Y/n]" yn overwritetoken="true"
case $yn in else
[Yy]* ) overwritetoken="true"; break;; overwritetoken="false"
[Nn]* ) overwritetoken="false"; break;; fi
* ) echo "Please answer yes or no.";;
esac
done
fi fi
if [ "${overwritetoken}" == "true" ]; then if [ "${overwritetoken}" == "true" ]; then
echo "Once you have the cluster token, enter it below" echo "Once you have the cluster token, enter it below"

13
lgsm/functions/install_minecraft_eula.sh

@ -16,18 +16,13 @@ echo "eula=false" > "${filesdir}/eula.txt"
if [ -z "${autoinstall}" ]; then if [ -z "${autoinstall}" ]; then
echo "By continuing you are indicating your agreement to the EULA." echo "By continuing you are indicating your agreement to the EULA."
echo "" echo ""
while true; do if ! fn_prompt_yn "Continue?" Y; then
read -e -i "y" -p "Continue [Y/n]" yn core_exit.sh
case $yn in fi
[Yy]* ) break;;
[Nn]* ) core_exit.sh;;
* ) echo "Please answer yes or no.";;
esac
done
else else
echo "By using auto-install you are indicating your agreement to the EULA." echo "By using auto-install you are indicating your agreement to the EULA."
echo "" echo ""
sleep 5 sleep 5
fi fi
sed -i "s/eula=false/eula=true/g" "${filesdir}/eula.txt" sed -i "s/eula=false/eula=true/g" "${filesdir}/eula.txt"

13
lgsm/functions/install_retry.sh

@ -8,11 +8,8 @@ local commandname="INSTALL"
local commandaction="Install" local commandaction="Install"
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
while true; do if fn_prompt_yn "Retry install?" Y; then
read -e -i "y" -p "Retry install? [Y/n]" yn command_install.sh; exit
case $yn in else
[Yy]* ) command_install.sh; exit;; echo Exiting; exit
[Nn]* ) echo Exiting; exit;; fi
* ) echo "Please answer yes or no.";;
esac
done

13
lgsm/functions/install_server_dir.sh

@ -19,16 +19,11 @@ if [ -d "${filesdir}" ]; then
fn_print_warning_nl "A server is already installed here." fn_print_warning_nl "A server is already installed here."
fi fi
if [ -z "${autoinstall}" ]; then if [ -z "${autoinstall}" ]; then
while true; do if ! fn_prompt_yn "Continue?" Y; then
read -e -i "y" -p "Continue [Y/n]" yn exit
case $yn in fi
[Yy]* ) break;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
done
fi fi
if [ ! -d "${filesdir}" ]; then if [ ! -d "${filesdir}" ]; then
mkdir -v "${filesdir}" mkdir -v "${filesdir}"
fi fi
sleep 1 sleep 1

11
lgsm/functions/install_server_files.sh

@ -144,12 +144,7 @@ fi
if [ -z "${autoinstall}" ]; then if [ -z "${autoinstall}" ]; then
echo "" echo ""
echo "=================================" echo "================================="
while true; do if ! fn_prompt_yn "Was the install successful?" Y; then
read -e -i "y" -p "Was the install successful? [Y/n]" yn install_retry.sh
case $yn in fi
[Yy]* ) break;;
[Nn]* ) install_retry.sh;;
* ) echo "Please answer yes or no.";;
esac
done
fi fi

11
lgsm/functions/install_ts3db.sh

@ -48,14 +48,9 @@ fn_install_ts3db_mariadb(){
if [ -z "${autoinstall}" ]; then if [ -z "${autoinstall}" ]; then
echo "" echo ""
while true; do 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
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 fn_install_ts3db_mariadb
case $yn in fi
[Yy]* ) fn_install_ts3db_mariadb && break;;
[Nn]* ) break;;
* ) echo "Please answer yes or no.";;
esac
done
else else
fn_print_warning_nl "./${selfname} auto-install is uses sqlite. For MariaDB/MySQL use ./${selfname} install" fn_print_warning_nl "./${selfname} auto-install is uses sqlite. For MariaDB/MySQL use ./${selfname} install"
fi fi

13
lgsm/functions/install_unreal_tournament_eula.sh

@ -16,18 +16,13 @@ echo "eula=false" > "${filesdir}/eula.txt"
if [ -z "${autoinstall}" ]; then if [ -z "${autoinstall}" ]; then
echo "By continuing you are indicating your agreement to the EULA." echo "By continuing you are indicating your agreement to the EULA."
echo "" echo ""
while true; do if ! fn_prompt_yn "Continue?" Y; then
read -e -i "y" -p "Continue [Y/n]" yn core_exit.sh
case $yn in fi
[Yy]* ) break;;
[Nn]* ) core_exit.sh;;
* ) echo "Please answer yes or no.";;
esac
done
else else
echo "By using auto-install you are indicating your agreement to the EULA." echo "By using auto-install you are indicating your agreement to the EULA."
echo "" echo ""
sleep 5 sleep 5
fi fi
sed -i "s/eula=false/eula=true/g" "${filesdir}/eula.txt" sed -i "s/eula=false/eula=true/g" "${filesdir}/eula.txt"

Loading…
Cancel
Save