Browse Source

feat: add 24h caching to external ip gathering

this will prevent querying of external ip tool repeatedly
Also tidied up a few rm commands
pull/4123/head
Daniel Gibbs 2 years ago
parent
commit
4898caa345
  1. 2
      lgsm/functions/command_dev_debug.sh
  2. 4
      lgsm/functions/command_fastdl.sh
  3. 2
      lgsm/functions/command_start.sh
  4. 2
      lgsm/functions/core_dl.sh
  5. 2
      lgsm/functions/core_steamcmd.sh
  6. 31
      lgsm/functions/info_game.sh
  7. 2
      lgsm/functions/info_stats.sh
  8. 4
      lgsm/functions/mods_core.sh
  9. 2
      linuxgsm.sh
  10. 2
      tests/tests_fctrserver.sh
  11. 2
      tests/tests_jc2server.sh
  12. 2
      tests/tests_mcserver.sh
  13. 2
      tests/tests_ts3server.sh

2
lgsm/functions/command_dev_debug.sh

@ -11,7 +11,7 @@ functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
fn_firstcommand_reset fn_firstcommand_reset
if [ -f "${rootdir}/.dev-debug" ]; then if [ -f "${rootdir}/.dev-debug" ]; then
rm "${rootdir:?}/.dev-debug" rm -f "${rootdir:?}/.dev-debug"
fn_print_ok_nl "Disabled dev-debug" fn_print_ok_nl "Disabled dev-debug"
fn_script_log_info "Disabled dev-debug" fn_script_log_info "Disabled dev-debug"
else else

4
lgsm/functions/command_fastdl.sh

@ -68,7 +68,7 @@ fn_clear_old_fastdl() {
# Clearing old FastDL. # Clearing old FastDL.
if [ -d "${fastdldir}" ]; then if [ -d "${fastdldir}" ]; then
echo -en "clearing existing FastDL directory ${fastdldir}..." echo -en "clearing existing FastDL directory ${fastdldir}..."
rm -fR "${fastdldir:?}" rm -rf "${fastdldir:?}"
exitcode=$? exitcode=$?
if [ "${exitcode}" != 0 ]; then if [ "${exitcode}" != 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
@ -277,7 +277,7 @@ fn_fastdl_gmod() {
# Clear addons directory in fastdl. # Clear addons directory in fastdl.
echo -en "clearing addons dir from fastdl dir..." echo -en "clearing addons dir from fastdl dir..."
fn_sleep_time fn_sleep_time
rm -fR "${fastdldir:?}/addons" rm -rf "${fastdldir:?}/addons"
exitcode=$? exitcode=$?
if [ "${exitcode}" != 0 ]; then if [ "${exitcode}" != 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl

2
lgsm/functions/command_start.sh

@ -171,7 +171,7 @@ fn_start_tmux() {
fn_print_ok "${servername}" fn_print_ok "${servername}"
fn_script_log_pass "Started ${servername}" fn_script_log_pass "Started ${servername}"
fi fi
rm "${lgsmlogdir:?}/.${selfname}-tmux-error.tmp" 2> /dev/null rm -f "${lgsmlogdir:?}/.${selfname}-tmux-error.tmp" 2> /dev/null
echo -en "\n" echo -en "\n"
} }

2
lgsm/functions/core_dl.sh

@ -374,7 +374,7 @@ fn_fetch_file() {
# Download will fail if downloads a html file. # Download will fail if downloads a html file.
if [ -f "${local_filedir}/${local_filename}" ]; then if [ -f "${local_filedir}/${local_filename}" ]; then
if [ -n "$(head "${local_filedir}/${local_filename}" | grep "DOCTYPE")" ]; then if [ -n "$(head "${local_filedir}/${local_filename}" | grep "DOCTYPE")" ]; then
rm "${local_filedir:?}/${local_filename:?}" rm -f "${local_filedir:?}/${local_filename:?}"
local exitcode=2 local exitcode=2
fi fi
fi fi

2
lgsm/functions/core_steamcmd.sh

@ -73,7 +73,7 @@ fn_check_steamcmd_dir() {
# Symbolic links to Steam installation directory. # Symbolic links to Steam installation directory.
if [ ! -L "${HOME}/.steam/root" ]; then if [ ! -L "${HOME}/.steam/root" ]; then
if [ -d "${HOME}/.steam/root" ]; then if [ -d "${HOME}/.steam/root" ]; then
rm "${HOME}/.steam/root" rm -f "${HOME:?}/.steam/root"
fi fi
ln -s "${XDG_DATA_HOME:="${HOME}/.local/share"}/Steam" "${HOME}/.steam/root" ln -s "${XDG_DATA_HOME:="${HOME}/.local/share"}/Steam" "${HOME}/.steam/root"
fi fi

31
lgsm/functions/info_game.sh

@ -2561,27 +2561,24 @@ elif [ "${engine}" == "unreal2" ]; then
fi fi
# External IP address # External IP address
if [ -z "${extip}" ]; then # Cache external IP address for 24 hours
if [ -f "${tmpdir}/extip.txt" ]; then
if [ "$(find "${tmpdir}/extip.txt" -mmin +1440)" ]; then
rm -f "${tmpdir:?}/extip.txt"
fi
fi
if [ ! -f "${tmpdir}/extip.txt" ]; then
extip="$(curl --connect-timeout 10 -s https://api.ipify.org 2> /dev/null)" extip="$(curl --connect-timeout 10 -s https://api.ipify.org 2> /dev/null)"
exitcode=$? exitcode=$?
# Should ifconfig.co return an error will use last known IP. # if curl passes add extip to externalip.txt
if [ ${exitcode} -eq 0 ]; then if [ "${exitcode}" == "0" ]; then
if [[ "${extip}" != *"DOCTYPE"* ]]; then echo "${extip}" > "${tmpdir}/extip.txt"
echo -e "${extip}" > "${tmpdir}/extip.txt"
else
if [ -f "${tmpdir}/extip.txt" ]; then
extip="$(cat "${tmpdir}/extip.txt")"
else
fn_print_error_nl "Unable to get external IP"
fi
fi
else else
if [ -f "${tmpdir}/extip.txt" ]; then echo "Unable to get external IP address"
extip="$(cat "${tmpdir}/extip.txt")"
else
fn_print_error_nl "Unable to get external IP"
fi
fi fi
else
extip="$(cat "${tmpdir}/extip.txt")"
fi fi
# Alert IP address # Alert IP address

2
lgsm/functions/info_stats.sh

@ -12,7 +12,7 @@ info_distro.sh
# remove uuid that was used in v20.2.0 and below # remove uuid that was used in v20.2.0 and below
if [ -f "${datadir}/uuid.txt" ]; then if [ -f "${datadir}/uuid.txt" ]; then
rm "${datadir:?}/uuid.txt" rm -f "${datadir:?}/uuid.txt"
fi fi
# generate uuid's # generate uuid's

4
lgsm/functions/mods_core.sh

@ -440,7 +440,7 @@ fn_mods_create_tmp_dir() {
fn_mods_clear_tmp_dir() { fn_mods_clear_tmp_dir() {
if [ -d "${modstmpdir}" ]; then if [ -d "${modstmpdir}" ]; then
echo -en "clearing mod download directory ${modstmpdir}..." echo -en "clearing mod download directory ${modstmpdir}..."
rm -fr "${modstmpdir:?}" rm -rf "${modstmpdir:?}"
exitcode=$? exitcode=$?
if [ "${exitcode}" != 0 ]; then if [ "${exitcode}" != 0 ]; then
fn_print_fail_eol_nl fn_print_fail_eol_nl
@ -742,7 +742,7 @@ fn_mod_remove_amxmodx_file() {
# if file is empty, remove it. # if file is empty, remove it.
if [ -f "${modinstalldir}/addons/metamod/plugins.ini" ]; then if [ -f "${modinstalldir}/addons/metamod/plugins.ini" ]; then
rm "${modinstalldir}/addons/metamod/plugins.ini" rm -f "${modinstalldir}/addons/metamod/plugins.ini"
fn_script_log_pass "file removed ${modinstalldir}/addons/metamod/plugins.ini because it was empty" fn_script_log_pass "file removed ${modinstalldir}/addons/metamod/plugins.ini because it was empty"
fi fi
fi fi

2
linuxgsm.sh

@ -113,7 +113,7 @@ fn_bootstrap_fetch_file() {
# Download will fail if downloads a html file. # Download will fail if downloads a html file.
if [ -f "${local_filedir}/${local_filename}" ]; then if [ -f "${local_filedir}/${local_filename}" ]; then
if [ -n "$(head "${local_filedir}/${local_filename}" | grep "DOCTYPE")" ]; then if [ -n "$(head "${local_filedir}/${local_filename}" | grep "DOCTYPE")" ]; then
rm "${local_filedir:?}/${local_filename:?}" rm -f "${local_filedir:?}/${local_filename:?}"
local exitcode=2 local exitcode=2
fi fi
fi fi

2
tests/tests_fctrserver.sh

@ -112,7 +112,7 @@ fn_bootstrap_fetch_file() {
# Download will fail if downloads a html file. # Download will fail if downloads a html file.
if [ -f "${local_filedir}/${local_filename}" ]; then if [ -f "${local_filedir}/${local_filename}" ]; then
if [ -n "$(head "${local_filedir}/${local_filename}" | grep "DOCTYPE")" ]; then if [ -n "$(head "${local_filedir}/${local_filename}" | grep "DOCTYPE")" ]; then
rm "${local_filedir:?}/${local_filename:?}" rm -f "${local_filedir:?}/${local_filename:?}"
local exitcode=2 local exitcode=2
fi fi
fi fi

2
tests/tests_jc2server.sh

@ -113,7 +113,7 @@ fn_bootstrap_fetch_file() {
# Download will fail if downloads a html file. # Download will fail if downloads a html file.
if [ -f "${local_filedir}/${local_filename}" ]; then if [ -f "${local_filedir}/${local_filename}" ]; then
if [ -n "$(head "${local_filedir}/${local_filename}" | grep "DOCTYPE")" ]; then if [ -n "$(head "${local_filedir}/${local_filename}" | grep "DOCTYPE")" ]; then
rm "${local_filedir:?}/${local_filename:?}" rm -f "${local_filedir:?}/${local_filename:?}"
local exitcode=2 local exitcode=2
fi fi
fi fi

2
tests/tests_mcserver.sh

@ -113,7 +113,7 @@ fn_bootstrap_fetch_file() {
# Download will fail if downloads a html file. # Download will fail if downloads a html file.
if [ -f "${local_filedir}/${local_filename}" ]; then if [ -f "${local_filedir}/${local_filename}" ]; then
if [ -n "$(head "${local_filedir}/${local_filename}" | grep "DOCTYPE")" ]; then if [ -n "$(head "${local_filedir}/${local_filename}" | grep "DOCTYPE")" ]; then
rm "${local_filedir:?}/${local_filename:?}" rm -f "${local_filedir:?}/${local_filename:?}"
local exitcode=2 local exitcode=2
fi fi
fi fi

2
tests/tests_ts3server.sh

@ -113,7 +113,7 @@ fn_bootstrap_fetch_file() {
# Download will fail if downloads a html file. # Download will fail if downloads a html file.
if [ -f "${local_filedir}/${local_filename}" ]; then if [ -f "${local_filedir}/${local_filename}" ]; then
if [ -n "$(head "${local_filedir}/${local_filename}" | grep "DOCTYPE")" ]; then if [ -n "$(head "${local_filedir}/${local_filename}" | grep "DOCTYPE")" ]; then
rm "${local_filedir:?}/${local_filename:?}" rm -f "${local_filedir:?}/${local_filename:?}"
local exitcode=2 local exitcode=2
fi fi
fi fi

Loading…
Cancel
Save