1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-05 03:53:01 +02:00

Merge changes

This commit is contained in:
aclist 2022-10-08 13:04:09 +09:00
commit 276d856652
4 changed files with 488 additions and 33 deletions

170
dzgui.sh
View file

@ -1,7 +1,7 @@
#!/bin/bash
set -o pipefail
version=2.8.0-rc.2
version=2.8.0-rc.3
aid=221100
game="dayz"
@ -27,9 +27,13 @@ helpers_path="$sd_install_path/helpers"
geo_file="$helpers_path/ips.csv"
km_helper="$helpers_path/latlon"
sums_path="$helpers_path/sums.md5"
scmd_file="$helpers_path/scmd.sh"
km_helper_url="$releases_url/latlon"
db_file="$releases_url/ips.csv.gz"
sums_url="$testing_url/helpers/sums.md5"
scmd_url="$testing_url/helpers/scmd.sh"
notify_url="$testing_url/helpers/d.html"
notify_img_url="$testing_url/helpers/d.webp"
update_last_seen(){
mv $config_file ${config_path}dztuirc.old
@ -90,10 +94,10 @@ items=(
" Delete server"
"[Options]"
" List installed mods"
" Toggle debug mode"
" Report bug (opens in browser)"
" Help file (opens in browser)"
" View changelog"
" Advanced options"
)
}
warn_and_exit(){
@ -178,7 +182,7 @@ term="$term"
auto_install="$auto_install"
#Automod staging directory
staging_dir="/tmp"
staging_dir="$staging_dir"
END
}
write_desktop_file(){
@ -210,15 +214,14 @@ freedesktop_dirs(){
fi
}
file_picker(){
#TODO: unimplemented
while true; do
local path=$(zenity --file-selection --directory 2>/dev/null)
if [[ -z "$path" ]] || [[ ! -d "$path" ]] || [[ ! "$path" =~ steamapps/common/DayZ ]]; then
continue
if [[ -z "$path" ]]; then
return
else
echo "[DZGUI]" Set path to $path
clean_path=$(echo -e "$path" | awk -F"/steamapps" '{print $1}')
steam_path="$clean_path"
echo "[DZGUI]" Set mod staging path to "$path"
staging_dir="$path"
write_config > $config_file
return
fi
done
@ -356,6 +359,52 @@ steam_deck_mods(){
compare
done
}
set_term(){
local term="$1"
local tterm="term=\"$term\""
mv $config_file ${config_path}dztuirc.old
nr=$(awk '/term=/ {print NR}' ${config_path}dztuirc.old)
awk -v "var=$tterm" -v "nr=$nr" 'NR==nr {$0=var}{print}' ${config_path}dztuirc.old > $config_file
printf "[DZGUI] Set term to '$term'\n"
source $config_file
}
sel_term(){
if [[ $is_steam_deck -eq 1 ]]; then
set_term konsole
return 0
fi
#only terminals known to support -e flag
for i in "$TERMINAL" urxvt alacritty konsole gnome-terminal terminator xfce4-terminal xterm st tilix; do
[[ $(command -v $i) ]] && terms+=($i)
done
#FIXME: if no terms, error
local terms=$(printf "%s\n" "${terms[@]}" | sort -u)
term=$(echo "$terms" | zenity --list --column=Terminal --height=800 --width=1200 --text="Select your preferred terminal emulator to run steamcmd (setting will be saved)" --title=DZGUI 2>/dev/null)
}
calc_mod_sizes(){
for i in "$diff"; do
local mods+=$(grep -w "$i" /tmp/modsizes | awk '{print $1}')
done
totalmodsize=$(echo -e "${mods[@]}" | awk '{s+=$1}END{print s}')
}
auto_mod_install(){
cmd=$(printf "%q " "$@")
if [[ -z "$term" ]]; then
sel_term && set_term "$term"
fi
[[ -z "$term" ]] && return 1
echo "[DZGUI] Kicking off auto mod script"
calc_mod_sizes
$term -e bash -c "/$helpers_path/scmd.sh $totalmodsize $cmd"
compare
if [[ -z $diff ]]; then
passed_mod_check > >(zenity --pulsate --progress --auto-close --width=500 2>/dev/null)
launch
else
warn "Auto mod installation failed or some mods missing.\nReverting to manual mode."
return 1
fi
}
manual_mod_install(){
l=0
if [[ $is_steam_deck -eq 0 ]]; then
@ -443,7 +492,13 @@ connect(){
[[ $rc -eq 1 ]] && return
compare
if [[ -n $diff ]]; then
manual_mod_install
if [[ $auto_install -eq 1 ]]; then
auto_mod_install "$diff"
rc=$?
[[ $rc -eq 1 ]] && manual_mod_install
else
manual_mod_install
fi
else
passed_mod_check > >(zenity --pulsate --progress --auto-close --width=500 2>/dev/null)
launch
@ -599,7 +654,9 @@ query_defunct(){
post(){
curl -s -X POST -H "Content-Type:application/x-www-form-urlencoded" -d "$(payload)" 'https://api.steampowered.com/ISteamRemoteStorage/GetPublishedFileDetails/v1/?format=json'
}
readarray -t newlist <<< $(post | jq -r '.[].publishedfiledetails[] | select(.result==1) .publishedfileid')
result=$(post | jq -r '.[].publishedfiledetails[] | select(.result==1) | "\(.file_size) \(.publishedfileid)"')
echo "$result" > /tmp/modsizes
readarray -t newlist <<< $(echo -e "$result" | awk '{print $2}')
}
validate_mods(){
url="https://steamcommunity.com/sharedfiles/filedetails/?id="
@ -635,7 +692,7 @@ concat_mods(){
launch(){
mods=$(concat_mods)
if [[ $debug -eq 1 ]]; then
launch_options="steam -applaunch $aid -connect=$ip -nolauncher -nosplash -skipintro \"-mod=$mods\""
launch_options="steam -applaunch $aid -connect=$ip -nolauncher -nosplash -name=$name -skipintro \"-mod=$mods\""
print_launch_options="$(printf "This is a dry run.\nThese options would have been used to launch the game:\n\n$launch_options\n" | fold -w 60)"
zenity --question --title="DZGUI" --ok-label="Write to file" --cancel-label="Back"\
--text="$print_launch_options" 2>/dev/null
@ -762,14 +819,16 @@ connect_to_fav(){
}
set_header(){
[[ $auto_install -eq 1 ]] && install_mode=auto
[[ $auto_install -eq 0 ]] && install_mode=manual
if [[ $1 == "delete" ]]; then
sel=$(cat $tmp | zenity $sd_res --list $cols --title="DZGUI" --text="DZGUI $version | Mode: $mode | Branch: $branch | Fav: $fav_label" \
sel=$(cat $tmp | zenity $sd_res --list $cols --title="DZGUI" --text="DZGUI $version | Mode: $mode | Branch: $branch | Mods: $install_mode | Fav: $fav_label" \
--separator="$separator" --print-column=1,2 --ok-label="Delete" 2>/dev/null)
elif [[ $1 == "populate" ]]; then
sel=$(cat $tmp | zenity $sd_res --list $cols --title="DZGUI" --text="DZGUI $version | Mode: $mode | Branch: $branch | Fav: $fav_label" \
sel=$(cat $tmp | zenity $sd_res --list $cols --title="DZGUI" --text="DZGUI $version | Mode: $mode | Branch: $branch | Mods: $install_mode | Fav: $fav_label" \
--separator="$separator" --print-column=2,6 2>/dev/null)
elif [[ $1 == "main_menu" ]]; then
sel=$(zenity $sd_res --list --title="DZGUI" --text="${news}DZGUI $version | Mode: $mode | Branch: $branch | Fav: $fav_label" \
sel=$(zenity $sd_res --list --title="DZGUI" --text="${news}DZGUI $version | Mode: $mode | Branch: $branch | Mods: $install_mode | Fav: $fav_label" \
--cancel-label="Exit" --ok-label="Select" --column="Select launch option" --hide-header "${items[@]}" 2>/dev/null)
fi
}
@ -798,10 +857,46 @@ generate_log(){
$(list_mods)
DOC
}
debug_menu(){
automods_prompt(){
cat <<- HERE
Auto-mod installation set to ON.
READ THIS FIRST:
With this setting on, DZGUI will attempt to download and prepare mods using Valve's steamcmd tool.
The first time this process is run, DZGUI will ask you to select a terminal emulator of your preference to spawn the installation routine. If you don't have a preference or don't know, you can pick any.
Installation will kick off in a separate window and may ask you for input such as your sudo password in order to install system packages and create the steamcmd user.
steamcmd itself will ask for your Steam credentials. This information is used directly by Valve's steamcmd tool to authenticate your account and let you download mods headlessly. steamcmd is an official program created by Valve and communicates only with their servers.
NOTE: it can take some time for large mods to download, and steamcmd will not inform you of activity until each one is finished downloading.
If your distribution is unsupported, you don't have enough disk space to stage all of the mods, or there are other problems, DZGUI will warn you and write a report to $HOME/.local/share/dzgui/helpers/SCMD.log. You can attach this file to a bug report.
HERE
}
toggle_automods(){
mv $config_file ${config_path}dztuirc.old
local nr=$(awk '/auto_install=/ {print NR}' ${config_path}dztuirc.old)
if [[ $auto_install == "1" ]]; then
auto_install="0"
else
auto_install="1"
fi
local flip_state="auto_install=\"$auto_install\""
awk -v "var=$flip_state" -v "nr=$nr" 'NR==nr {$0=var}{print}' ${config_path}dztuirc.old > $config_file
printf "[DZGUI] Toggled auto-mod install to '$auto_install'\n"
source $config_file
[[ $auto_install == "1" ]] && zenity --info --text="$(automods_prompt)"
}
options_menu(){
debug_list=(
"Toggle branch"
"Toggle debug mode"
"Generate debug log"
"Toggle auto-mod install (experimental)"
"Set auto-mod staging directory [$staging_dir]"
)
debug_sel=$(zenity --list --width=1280 --height=800 --column="Options" --title="DZGUI" --hide-header "${debug_list[@]}" 2>/dev/null)
if [[ $debug_sel == "${debug_list[0]}" ]]; then
@ -809,11 +904,17 @@ debug_menu(){
toggle_branch &&
check_version
elif [[ $debug_sel == "${debug_list[1]}" ]]; then
toggle_debug
elif [[ $debug_sel == "${debug_list[2]}" ]]; then
source_script=$(realpath "$0")
source_dir=$(dirname "$source_script")
generate_log > "$source_dir/log"
printf "[DZGUI] Wrote log file to %s/log\n" "$source_dir"
zenity --info --width 500 --title="DZGUI" --text="Wrote log file to \n$source_dir/log" 2>/dev/null
elif [[ $debug_sel == "${debug_list[3]}" ]]; then
toggle_automods
elif [[ $debug_sel == "${debug_list[4]}" ]]; then
file_picker
fi
}
query_and_connect(){
@ -919,6 +1020,7 @@ check_geo_file(){
cd "$helpers_path"
md5sum -c "$sums_path" 2>/dev/null 1>&2
local res=$?
cd $OLDPWD
if [[ $res -eq 1 ]]; then
run(){
mkdir -p "$helpers_path"
@ -1098,15 +1200,14 @@ server_browser(){
}
mods_disk_size(){
printf "Total size on disk: %s" $(du -sh "$game_dir" | awk '{print $1}')
printf "Total size on disk: %s |" $(du -sh "$game_dir" | awk '{print $1}')
printf "Mods location: $steam_path/steamapps/workshop/content/221100"
}
main_menu(){
print_news
set_mode
if [[ $debug -eq 1 ]]; then
items+=(" Debug options")
fi
if [[ -n $fav ]]; then
items[7]=" Change favorite server"
fi
@ -1142,17 +1243,15 @@ main_menu(){
--title="DZGUI" $sd_res --text="$(mods_disk_size)" \
--print-column="" 2>/dev/null
elif [[ $sel == "${items[11]}" ]]; then
toggle_debug
report_bug
elif [[ $sel == "${items[12]}" ]]; then
help_file
elif [[ $sel == "${items[13]}" ]]; then
changelog | zenity --text-info $sd_res --title="DZGUI" 2>/dev/null
elif [[ $sel == "${items[14]}" ]]; then
options_menu
main_menu
return
elif [[ $sel == "${items[12]}" ]]; then
report_bug
elif [[ $sel == "${items[13]}" ]]; then
help_file
elif [[ $sel == "${items[14]}" ]]; then
changelog | zenity --text-info $sd_res --title="DZGUI" 2>/dev/null
elif [[ $sel == "${items[15]}" ]]; then
debug_menu
else
warn "This feature is not yet implemented."
fi
@ -1250,6 +1349,7 @@ check_unmerged(){
merge_config(){
source $config_file
mv $config_file ${config_path}dztuirc.old
[[ -z $staging_dir ]] && staging_dir="/tmp"
write_config > $config_file
printf "[DZGUI] Wrote new config file to %sdztuirc\n" $config_path
zenity --info --width 500 --title="DZGUI" --text="Wrote new config format to \n${config_path}dztuirc\nIf errors occur, you can restore the file:\n${config_path}dztuirc.old" 2>/dev/null
@ -1298,7 +1398,7 @@ enforce_dl(){
download_new_version > >(zenity --progress --pulsate --auto-close --no-cancel --width=500)
}
prompt_dl(){
zenity --question --title="DZGUI" --text "Version conflict.\n\nYour branch:\t\t$branch\nYour version\t\t$version\nUpstream version:\t\t$upstream\n\nVersion updates introduce important bug fixes and are encouraged.\n\nAttempt to download latest version?" --width=500 --ok-label="Yes" --cancel-label="No" 2>/dev/null
zenity --question --title="DZGUI" --text "Version conflict.\n\nYour branch:\t\t\t$branch\nYour version\t\t\t$version\nUpstream version:\t\t$upstream\n\nVersion updates introduce important bug fixes and are encouraged.\n\nAttempt to download latest version?" --width=500 --ok-label="Yes" --cancel-label="No" 2>/dev/null
rc=$?
if [[ $rc -eq 1 ]]; then
return
@ -1361,8 +1461,6 @@ toggle_debug(){
nr=$(awk '/debug=/ {print NR}' ${config_path}dztuirc.old)
if [[ $debug -eq 1 ]]; then
debug=0
items=()
init_items
else
debug=1
fi
@ -1435,6 +1533,13 @@ lock(){
echo $$ > $config_path/.lockfile
fi
}
fetch_scmd_helper(){
mkdir -p "$helpers_path"
curl -Ls "$scmd_url" > "$helpers_path/scmd.sh"
chmod +x "$helpers_path/scmd.sh"
[[ ! -f "$helpers_path/d.html" ]] && curl -Ls "$notify_url" > "$helpers_path/d.html"
[[ ! -f "$helpers_path/d.webp" ]] && curl -Ls "$notify_img_url" > "$helpers_path/d.webp"
}
initial_setup(){
echo "# Initial setup"
run_depcheck
@ -1442,6 +1547,7 @@ initial_setup(){
check_version
check_map_count
config
fetch_scmd_helper
run_varcheck
init_items
setup

5
helpers/d.html Normal file
View file

@ -0,0 +1,5 @@
<html>
<body style="background-color:black">
<img style="position:absolute;inset:0;image-orientation:from-image" src="d.webp" width="364" height="384"></img>
</body>
</html>

BIN
helpers/d.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

344
helpers/scmd.sh Normal file
View file

@ -0,0 +1,344 @@
#!/bin/bash
conf=$HOME/.config/dztui/dztuirc
source $conf
[[ -z $staging_dir ]] && staging_dir="/tmp"
aid=221100
steamcmd_user=steam
workshop_dir="$steam_path/steamapps/workshop/content/$aid"
log(){
printf "$(tput setaf 3)[INFO]$(tput sgr0) %s\n" "$1"
}
pass(){
printf "$(tput setaf 2)[PASS]$(tput sgr0) %s\n" "$1"
}
fail(){
printf "$(tput setaf 1)[FAIL]$(tput sgr0) %s\n" "$1"
}
steamcmd_modlist(){
printf "force_install_dir %s\n" "$staging_dir"
printf "login %s\n" "$steam_username"
for i in "${ids[@]}"; do
printf "workshop_download_item %s %s validate\n" $aid $i
done
printf "quit"
}
move_files(){
printf "\n"
log "Moving mods from $staging_dir to $workshop_dir"
if [[ $staging_dir == "/tmp" ]]; then
sudo chown -R $USER:$gid "$staging_dir"/steamapps
fi
cp -R "$staging_dir"/steamapps/workshop/content/$aid/* "$workshop_dir"
sudo rm -rf "$staging_dir"/steamapps
}
#tutorial(){
#cat <<- HERE
#
#INSTRUCTIONS
#
#Keep this window adjacent to your terminal as a guide.
#
#1. In the steamcmd prompt, enter "login [id] [pass] [2FA]" (if applicable)
#and type Enter. E.g., if the user is Billy, pass is Banana, and 2FA token is 777:
#
#login Billy Banana 777 [Enter]
#
#2. Then enter: runscript /tmp/mods.txt and type Enter
#
#3. The auto-mod process will begin to headlessly download the mods.
#
#Valve uses a long-lived token to cache credentials,
#so you may be able to simply type [id] and "quit"
#on subsequent invocations, but it expires after some time.
#HERE
#}
#ctdw(){
# for((i=3;i>0;i--)); do
# printf "[INFO] Downloading mods in %i\r" "$i"
# sleep 1s
# done
#}
test_dir(){
if [[ $dist == "steamos" ]]; then
staging_dir="$HOME/.local/share/dzgui/mods"
mkdir -p $staging_dir
return 0
fi
sudo -u steam test -w "$staging_dir"
rc=$?
if [[ $rc -eq 1 ]]; then
fail "User '$steamcmd_user' does not have write access to $staging_dir. Reverting to /tmp"
staging_dir="/tmp"
return 0
fi
}
auto_mod_download(){
while true; do
read -p 'Enter Steam username: ' steam_username
[[ -z $steam_username ]] && { fail "Username can't be empty"; continue; }
[[ -n $steam_username ]] && break
done
if [[ -d "$staging_dir/steamapps" ]]; then
log "Sanitizing $staging_dir"
if [[ $staging_dir == "/tmp" ]]; then
sudo chown -R $USER:$gid "$staging_dir"/steamapps
fi
sudo rm -rf "$staging_dir"/steamapps
fi
tput civis
[[ ${#ids[@]} -gt 1 ]] && s=s
tput cnorm
test_dir
steamcmd_modlist > "/tmp/mods.txt"
log "Preparing to download ${#ids[@]} mod$s. This may take some time. Abort with Ctrl+c."
if [[ $dist == "steamos" ]]; then
$steamcmd_path +runscript /tmp/mods.txt
else
#sudo -iu $steamcmd_user bash -c "$steamcmd_path +force_install_dir $staging_dir +login $steam_username $(steamcmd_modlist) +quit"
sudo -iu $steamcmd_user bash -c "$steamcmd_path +runscript /tmp/mods.txt"
fi
rc=$?
rm "/tmp/mods.txt"
if [[ $rc -eq 0 ]]; then
move_files
else
return 1
fi
}
find_steam_cmd(){
for i in "/home/steam" "/usr/bin" "/usr/local/bin" "/usr/games"; do
if [[ -f "$i/steamcmd" ]]; then
steamcmd_path="$i/steamcmd"
pass "Found steamcmd: $steamcmd_path"
return 0
fi
done
fail "Failed to find steamcmd"
return 1
}
create_user(){
log "Creating steamcmd user"
sudo useradd -m steam
rc=$?
if [[ $rc -eq 0 ]]; then
log "Set a password for the headless steamcmd user"
sudo passwd steam
else
return 1
fi
}
check_user(){
id $steamcmd_user &>/dev/null
rc=$?
if [[ $rc -eq 1 ]]; then
fail "steamcmd user missing"
create_user
rc=$?
[[ $rc -eq 1 ]] && return 1
else
pass "Found user: $steamcmd_user"
fi
while true; do
local stat=$(sudo passwd $steamcmd_user --status | awk '{print $2}')
if
[[ $stat == "L" ]] || [[ $stat == "NP" ]]; then
fail "steamcmd user has a locked or empty password"
sudo passwd $steamcmd_user
else
return 0
fi
done
}
generic_install(){
fail "Unrecognized distro: $dist."
log "Please report this upstream for whitelisting and attach your SCMD.log"
log "Location: $HOME/.local/share/dzgui/helpers/SCMD.log"
return 1
}
fedora_install(){
#TODO
:
}
#ubuntu related
# dep: debconf
# Debian configuration management system
#
# dep: debconf (>= 0.5)
# Debian configuration management system
# or debconf-2.0
# virtual package provided by cdebconf, cdebconf-udeb, debconf
#
# dep: libc6 (>= 2.12)
# GNU C Library: Shared libraries
# also a virtual package provided by libc6-udeb
#
# dep: libstdc++6
# GNU Standard C++ Library v3
#
# sug: steam
# Valve's Steam digital software delivery system
#
deb_install(){
check_user
rc=$?
[[ $rc -eq 1 ]] && return 1
find_steam_cmd
rc=$?
if [[ $rc -eq 1 ]]; then
log "Installing distribution steamcmd packages"
sudo add-apt-repository -y multiverse
sudo apt install -y software-properties-common
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install -y steamcmd
find_steam_cmd
fi
dpkg -s lib32gcc-s1 1>/dev/null
rc=$?
if [[ $rc -eq 1 ]]; then
fail "Missing deps: lib32-gcc-libs"
sudo apt install -y lib32gcc-s1
else
pass "Found deps: lib32-gcc-libs"
fi
}
deck_install(){
#TODO: konsole input in game mode
pacman -Qi lib32-gcc-libs 2>/dev/null 1>&2
rc=$?
[[ ! $rc -eq 0 ]] && return 1
if [[ ! -f $HOME/.local/share/dzgui/helpers/steamcmd ]]; then
local tarball="steamcmd_linux.tar.gz"
mkdir -p $HOME/.local/share/dzgui/helpers/steamcmd
curl -Ls "https://steamcdn-a.akamaihd.net/client/installer/$tarball" > $HOME/.local/share/dzgui/helpers/steamcmd/$tarball
$(cd $HOME/.local/share/dzgui/helpers/steamcmd; tar xvf $tarball)
fi
steamcmd_path="$HOME/.local/share/dzgui/helpers/steamcmd/steamcmd.sh"
}
arch_install(){
check_user
rc=$?
[[ $rc -eq 1 ]] && return 1
find_steam_cmd
rc=$?
if [[ $rc -eq 1 ]]; then
log "Checking prerequisites"
for i in makepkg git; do
if [[ ! $(command -v $i) ]]; then
fail "Missing package: $i"
info "Script will fetch build tools now. Partial upgrades on Arch Linux are discouraged, so triggering a full update.\n
Type any key to proceed."
read -n1 key
case $key in
*) sudo pacman -Syu base-devel git lib32-gcc-libs --noconfirm
esac
break
else
pass "Found deps: $i"
fi
done
log "Installing steamcmd from distribution"
[[ -d /tmp/steamcmd ]] && rm -rf /tmp/steamcmd
git clone https://aur.archlinux.org/steamcmd.git /tmp/steamcmd
cd /tmp/steamcmd && makepkg -si --noconfirm && cd $OLDPWD
#TODO: check symlink
log "Symlinking steamcmd"
sudo ln -s /usr/bin/steamcmd /home/steam/steamcmd
rm -rf /tmp/steamcmd
find_steam_cmd
fi
sudo pacman -Qi lib32-gcc-libs 2>/dev/null 1>&2
rc=$?
if [[ $rc -eq 1 ]]; then
fail "Missing deps: lib32-gcc-libs"
info "Script will fetch build tools now. Partial upgrades on Arch Linux are discouraged, so triggering a full update.\n
Type any key to proceed."
read -n1 key
case $key in
*) sudo pacman -Syu lib32-gcc-libs --noconfirm
esac
else
pass "Found deps: lib32-gcc-libs"
fi
}
check_dist(){
os=/etc/os-release
dist=$(awk -F= '/^ID=/ {print $2}' $os)
pass "Found OS: $dist"
case $dist in
ubuntu|linuxmint|pop|debian) deb_install ;;
arch|antergos|manjaro) arch_install ;;
steamos) deck_install ;;
fedora) generic_install ;;
*) generic_install ;;
esac
}
return_to_dzg(){
if [[ $ret -eq 1 ]]; then
fail "Errors occurred. Type any key to return to DZGUI and kick off manual install."
read -n1 key
case $key in
*) exit 1 ;;
esac
else
$(cd $HOME/.local/share/dzgui/helpers; zenity --text-info --html --width=390 --height=452 --filename="d.html" 2>/dev/null)
return 0
fi
}
cleanup(){
tput cnorm
exit
}
abort(){
tput cnorm
printf "\n"
log "Keyboard interrupt"
exit
}
check_disks(){
log "Staging dir is $staging_dir"
disksize=$(df $staging_dir --output=avail | tail -n1)
disk_bytewise=$((disksize * 1024))
hr=$(echo $(numfmt --to=iec --format "%.2f" $totalmodsize $disk_bytewise) | sed 's/ /\//')
[[ ${#ids[@]} -gt 1 ]] && s=s
if [[ $disk_bytewise -lt $totalmodsize ]]; then
fail "Required/actual: $hr. Installation will quit after /tmp reaches capacity."
else
pass "Required/actual: $hr"
fi
}
[[ -f $PWD/SCMD.log ]] && rm SCMD.log
if [[ -z $1 ]] || [[ -z $2 ]]; then
fail "Missing mod arguments"
ret=1
return_to_dzg
fi
totalmodsize="$1"
shift
for i in $@; do
ids+=("$i")
done
sudo -v
main(){
echo ""
echo "────────DZGUI automod helper────────"
log "Preparing environment"
check_disks
check_dist
if [[ $? -eq 1 ]]; then
ret=1
return_to_dzg
else
pass "All OK. Starting mod auto install process"
auto_mod_download
rc=$?
[[ $rc -eq 1 ]] && ret=1
return_to_dzg
fi
}
trap cleanup EXIT
trap abort SIGINT
main | tee -a SCMD.log