Browse Source

Cleaning & fixes & functions rearranging

pull/1331/head
UltimateByte 8 years ago
committed by GitHub
parent
commit
bf8ebfe363
  1. 244
      lgsm/functions/command_fastdl.sh

244
lgsm/functions/command_fastdl.sh

@ -22,57 +22,97 @@ luasvautorundir="${systemdir}/lua/autorun/server"
luafastdlfile="lgsm_cl_force_fastdl.lua" luafastdlfile="lgsm_cl_force_fastdl.lua"
luafastdlfullpath="${luasvautorundir}/${luafastdlfile}" luafastdlfullpath="${luasvautorundir}/${luafastdlfile}"
fn_check_bzip2(){ # Check if bzip2 is installed
# Returns true if not installed if [ -z "$(command -v bzip2)" ]; then
if [ -z "$(command -v bzip2)" ]; then fn_print_fail "bzip2 is not installed"
fn_print_fail "bzip2 is not installed" fn_script_log_fatal "bzip2 is not installed"
fn_script_log_fatal "bzip2 is not installed" core_exit.sh
core_exit.sh fi
fi
} # Header
fn_print_header
echo "More info: https://git.io/vyk9a"
echo ""
# Prompts user for FastDL creation settings # Prompts user for FastDL creation settings
fn_fastdl_config(){ echo "${commandaction} setup"
echo "FastDL setup" echo "================================="
echo "================================="
# Prompt for clearing old files if directory was already here # Prompt for clearing old files if directory was already here
if [ -d "${fastdldir}" ]; then if [ -d "${fastdldir}" ]; then
fn_print_warning_nl "FastDL directory already exists." fn_print_warning_nl "FastDL directory already exists."
echo "${fastdldir}" echo "${fastdldir}"
echo "" echo ""
if fn_prompt_yn "Overwrite existing directory?" Y; then if fn_prompt_yn "Overwrite existing directory?" Y; then
fn_script_log_info "Overwrite existing directory: YES" fn_script_log_info "Overwrite existing directory: YES"
else else
core_exit.sh core_exit.sh
fi
fi fi
fi
# Garry's Mod Specific # Garry's Mod Specific
if [ "${gamename}" == "Garry's Mod" ]; then if [ "${gamename}" == "Garry's Mod" ]; then
# Prompt to clear addons dir from fastdl, can use unnecessary space or not be required depending on addon's file structures # Prompt for download enforcer, which is using a .lua addfile resource generator
if fn_prompt_yn "Clear addons directory from FastDL?" Y; then if fn_prompt_yn "Force clients to download files?" Y; then
cleargmodaddons="on"; luaresource="on"
fn_script_log_info "Clear addons directory from FastDL: YES" fn_script_log_info "Force clients to download files: YES"
else else
cleargmodaddons="off"; luaresource="off"
fn_script_log_info "Clear addons directory from FastDL: NO" fn_script_log_info "Force clients to download filesr: NO"
fi fi
fi
fn_clear_old_fastdl(){
# Clearing old FastDL
if [ -d "${fastdldir}" ];then
echo -en "clearing existing FastDL directory ${fastdldir}..."
rm -R "${fastdldir:?}"/*
exitcode=$?
if [ ${exitcode} -ne 0 ]; then
fn_print_fail_eol_nl
fn_script_log_fatal "Clearing existing FastDL directory ${fastdldir}"
core_exit.sh
else
fn_print_ok_eol_nl
fn_script_log_pass "Clearing existing FastDL directory ${fastdldir}"
fi
sleep 0.5
fi
}
# Prompt for download enforcer, which is using a .lua addfile resource generator fn_clear_old_fastdl_alt(){
if fn_prompt_yn "Use client download enforcer?" Y; then if [ -d "${fastdldir}" ]; then
luaressource="on" echo -e "removing existing FastDL files"
fn_script_log_info "Use client download enforcer: YES" sleep 0.1
fileswc=1
totalfileswc=$(find "${fastdldir}" | wc -l)
tput sc
while read -r filetoremove; do
tput rc; tput el
printf "removing ${fileswc} / ${totalfileswc} : ${filetoremove}..."
((fileswc++))
rm -rf "${filetoremove}"
((exitcode=$?))
if [ ${exitcode} -ne 0 ]; then
fn_script_log_fatal "Removing ${filetoremove}"
break
else
fn_script_log_pass "Removing ${filetoremove}"
fi
sleep 0.01
done < <(find "${fastdldir}")
if [ ${exitcode} -ne 0 ]; then
fn_print_fail_eol_nl
core_exit.sh
else else
luaressource="off" fn_print_ok_eol_nl
fn_script_log_info "Use client download enforcer: NO"
fi fi
fi fi
} }
fn_fastdl_dirs(){ fn_fastdl_dirs(){
# Check and create directories # Check and create directories
if [ ! -d "${modsdir}" ];then if [ ! -d "${webdir}" ];then
echo -en "creating web directory ${webdir}..." echo -en "creating web directory ${webdir}..."
mkdir -p "${webdir}" mkdir -p "${webdir}"
exitcode=$? exitcode=$?
@ -102,57 +142,12 @@ fn_fastdl_dirs(){
fi fi
} }
fn_clear_old_fastdl(){
# Clearing old FastDL if user answered yes
if [ ! -d "${modsdir}" ];then
echo -en "clearing existing FastDL directory ${fastdldir}..."
rm -R "${fastdldir:?}"/*
exitcode=$?
if [ ${exitcode} -ne 0 ]; then
fn_print_fail_eol_nl
fn_script_log_fatal "Clearing existing FastDL directory ${fastdldir}"
core_exit.sh
else
fn_print_ok_eol_nl
fn_script_log_pass "Clearing existing FastDL directory ${fastdldir}"
fi
sleep 0.5
fi
}
fn_fastdl_gmod(){ fn_fastdl_gmod(){
# Copy all needed files for FastDL # Copy all needed files for FastDL
if [ -n "${copyflag}" ]; then if [ -n "${copyflag}" ]; then
# Removes all existing FastDL files. # Clear previous FastDL dir
if [ -d "${fastdldir}" ]; then fn_clear_old_fastdl_alt
echo -e "removing existing FastDL files"
sleep 0.1
fileswc=1
totalfileswc=$(find "${fastdldir}" | wc -l)
tput sc
while read -r filetoremove; do
tput rc; tput el
printf "removing ${fileswc} / ${totalfileswc} : ${filetoremove}..."
((fileswc++))
rm -rf "${filetoremove}"
((exitcode=$?))
if [ ${exitcode} -ne 0 ]; then
fn_script_log_fatal "Removing ${filetoremove}"
break
else
fn_script_log_pass "Removing ${filetoremove}"
fi
sleep 0.01
done < <(find "${fastdldir}")
if [ ${exitcode} -ne 0 ]; then
fn_print_fail_eol_nl
core_exit.sh
else
fn_print_ok_eol_nl
fi
fi
fn_fastdl_dirs fn_fastdl_dirs
echo -e "copying files to ${fastdldir}" echo -e "copying files to ${fastdldir}"
fn_script_log_info "Copying files to ${fastdldir}" fn_script_log_info "Copying files to ${fastdldir}"
else else
@ -217,19 +212,17 @@ fn_fastdl_gmod(){
fn_script_log_pass "updating addons file structure" fn_script_log_pass "updating addons file structure"
fi fi
# Clear addons directory in fastdl # Clear addons directory in fastdl
if [ "${cleargmodaddons}" == "on" ]; then echo -en "clearing addons dir from fastdl dir..."
echo -en "clearing addons dir from fastdl dir..." sleep 1
sleep 1 rm -R "${fastdldir:?}/addons"
rm -R "${fastdldir:?}/addons" exitcode=$?
exitcode=$? if [ ${exitcode} -ne 0 ]; then
if [ ${exitcode} -ne 0 ]; then fn_print_fail_eol_nl
fn_print_fail_eol_nl fn_script_log_fatal "clearing addons dir from fastdl dir"
fn_script_log_fatal "clearing addons dir from fastdl dir" core_exit.sh
core_exit.sh else
else fn_print_ok_eol_nl
fn_print_ok_eol_nl fn_script_log_pass "clearing addons dir from fastdl dir"
fn_script_log_pass "clearing addons dir from fastdl dir"
fi
fi fi
fi fi
# Correct content that may be into a lua directory by mistake like some darkrpmodification addons # Correct content that may be into a lua directory by mistake like some darkrpmodification addons
@ -307,36 +300,8 @@ fn_human_readable_file_size() {
fn_fastdl_source(){ fn_fastdl_source(){
# Copy all needed files for FastDL # Copy all needed files for FastDL
if [ -n "${copyflag}" ]; then if [ -n "${copyflag}" ]; then
# Removes all existing FastDL files. fn_clear_old_fastdl_alt
if [ -d "${fastdldir}" ]; then
echo -e "removing existing FastDL files"
sleep 0.1
fileswc=1
totalfileswc=$(find "${fastdldir}" | wc -l)
tput sc
while read -r filetoremove; do
tput rc; tput el
printf "removing ${fileswc} / ${totalfileswc} : ${filetoremove}..."
((fileswc++))
rm -rf "${filetoremove}"
((exitcode=$?))
if [ ${exitcode} -ne 0 ]; then
fn_script_log_fatal "Removing ${filetoremove}"
break
else
fn_script_log_pass "Removing ${filetoremove}"
fi
sleep 0.01
done < <(find "${fastdldir}")
if [ ${exitcode} -ne 0 ]; then
fn_print_fail_eol_nl
core_exit.sh
else
fn_print_ok_eol_nl
fi
fi
fn_fastdl_dirs fn_fastdl_dirs
echo -e "copying files to ${fastdldir}" echo -e "copying files to ${fastdldir}"
fn_script_log_info "Copying files to ${fastdldir}" fn_script_log_info "Copying files to ${fastdldir}"
else else
@ -347,8 +312,8 @@ fn_fastdl_source(){
fn_script_log_info "Analysing required files" fn_script_log_info "Analysing required files"
fi fi
local directorys_array=( "maps" "materials" "models" "particles" "sounds" "resources" ) local directories_array=( "maps" "materials" "models" "particles" "sounds" "resources" )
for directory in "${directorys_array[@]}" for directory in "${directories_array[@]}"
do do
if [ -d "${systemdir}/${directory}" ]; then if [ -d "${systemdir}/${directory}" ]; then
if [ "${directory}" == "maps" ]; then if [ "${directory}" == "maps" ]; then
@ -449,7 +414,7 @@ fn_fastdl_gmod_lua_enforcer(){
fi fi
fi fi
# Generate new one if user said yes # Generate new one if user said yes
if [ "${luaressource}" == "on" ]; then if [ "${luaresource}" == "on" ]; then
echo -en "creating new download enforcer: ${luafastdlfile}..." echo -en "creating new download enforcer: ${luafastdlfile}..."
touch "${luafastdlfullpath}" touch "${luafastdlfullpath}"
# Read all filenames and put them into a lua file at the right path # Read all filenames and put them into a lua file at the right path
@ -484,24 +449,15 @@ fn_fastdl_bzip2(){
done < <(find "${fastdldir:?}" \( -type f ! -name "*.bz2" \)) done < <(find "${fastdldir:?}" \( -type f ! -name "*.bz2" \))
} }
fn_fastdl_completed(){
# Finished message
echo "FastDL files are located in:"
echo "${webdir}"
echo "FastDL completed"
fn_script_log_info "FastDL completed"
}
# Run functions # Run functions
fn_print_header
echo "More info: https://git.io/vyk9a"
echo ""
fn_fastdl_config
if [ "${gamename}" == "Garry's Mod" ]; then if [ "${gamename}" == "Garry's Mod" ]; then
fn_fastdl_gmod fn_fastdl_gmod
else else
fn_fastdl_source fn_fastdl_source
fi fi
fn_fastdl_completed # Finished message
echo "FastDL files are located in:"
echo "${webdir}"
echo "FastDL completed"
fn_script_log_info "FastDL completed"
core_exit.sh core_exit.sh

Loading…
Cancel
Save