mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 03:53:01 +02:00
Additional error handling
This commit is contained in:
parent
2b3e393b0d
commit
f192d57665
1 changed files with 32 additions and 22 deletions
54
dzgui.sh
54
dzgui.sh
|
@ -12,21 +12,23 @@ config_path="$HOME/.config/dztui/"
|
||||||
config_file="${config_path}dztuirc"
|
config_file="${config_path}dztuirc"
|
||||||
tmp=/tmp/dztui.tmp
|
tmp=/tmp/dztui.tmp
|
||||||
separator="%%"
|
separator="%%"
|
||||||
git_url="https://github.com/aclist/dztui/issues"
|
|
||||||
stable_url="https://raw.githubusercontent.com/aclist/dztui/dzgui/dzgui.sh"
|
|
||||||
testing_url="https://raw.githubusercontent.com/aclist/dztui/testing/dzgui.sh"
|
|
||||||
help_url="https://aclist.github.io/dzgui/dzgui"
|
|
||||||
check_config_msg="Check config values and restart."
|
check_config_msg="Check config values and restart."
|
||||||
news_url="https://raw.githubusercontent.com/aclist/dztui/testing/news"
|
issues_url="https://github.com/aclist/dztui/issues"
|
||||||
|
url_prefix="https://raw.githubusercontent.com/aclist/dztui"
|
||||||
|
stable_url="$url_prefix/dzgui"
|
||||||
|
testing_url="$url_prefix/testing"
|
||||||
|
releases_url="https://github.com/aclist/dztui/releases/download/browser"
|
||||||
|
help_url="https://aclist.github.io/dzgui/dzgui"
|
||||||
|
news_url="$testing_url/news"
|
||||||
freedesktop_path="$HOME/.local/share/applications"
|
freedesktop_path="$HOME/.local/share/applications"
|
||||||
sd_install_path="$HOME/.local/share/dzgui"
|
sd_install_path="$HOME/.local/share/dzgui"
|
||||||
helpers_path="$sd_install_path/helpers"
|
helpers_path="$sd_install_path/helpers"
|
||||||
geo_file="$sd_install_path/ips.csv"
|
geo_file="$helpers_path/ips.csv"
|
||||||
km_helper="$sd_install_path/latlon"
|
km_helper="$helpers_path/latlon"
|
||||||
sums_path="$sd_install_path/sums.md5"
|
sums_path="$helpers_path/sums.md5"
|
||||||
km_helper_url="https://github.com/aclist/dztui/releases/download/browser/latlon"
|
km_helper_url="$releases_url/latlon"
|
||||||
db_file="https://github.com/aclist/dztui/releases/download/browser/ips.csv.gz"
|
db_file="$releases_url/ips.csv.gz"
|
||||||
sums_url=""
|
sums_url="$testing_url/helpers/sums.md5"
|
||||||
|
|
||||||
update_last_seen(){
|
update_last_seen(){
|
||||||
mv $config_file ${config_path}dztuirc.old
|
mv $config_file ${config_path}dztuirc.old
|
||||||
|
@ -319,7 +321,7 @@ open_mod_links(){
|
||||||
let n++
|
let n++
|
||||||
done >> $link_file
|
done >> $link_file
|
||||||
echo "</html>" >> $link_file
|
echo "</html>" >> $link_file
|
||||||
browser "$link_file" &
|
browser "$link_file" 2>/dev/null &
|
||||||
|
|
||||||
}
|
}
|
||||||
steam_deck_mods(){
|
steam_deck_mods(){
|
||||||
|
@ -414,6 +416,10 @@ connect(){
|
||||||
else
|
else
|
||||||
fetch_mods "$bid"
|
fetch_mods "$bid"
|
||||||
fi
|
fi
|
||||||
|
if [[ $ret -eq 96 ]]; then
|
||||||
|
unset ret
|
||||||
|
return
|
||||||
|
fi
|
||||||
validate_mods
|
validate_mods
|
||||||
rc=$?
|
rc=$?
|
||||||
[[ $rc -eq 1 ]] && return
|
[[ $rc -eq 1 ]] && return
|
||||||
|
@ -428,7 +434,6 @@ fetch_mods(){
|
||||||
remote_mods=$(curl -s "$api" -H "Authorization: Bearer "$api_key"" -G -d filter[ids][whitelist]="$1" -d "sort=-players" \
|
remote_mods=$(curl -s "$api" -H "Authorization: Bearer "$api_key"" -G -d filter[ids][whitelist]="$1" -d "sort=-players" \
|
||||||
| jq -r '.data[] .attributes .details .modIds[]')
|
| jq -r '.data[] .attributes .details .modIds[]')
|
||||||
}
|
}
|
||||||
#TODO: deprecated (for now)
|
|
||||||
fetch_mods_sa(){
|
fetch_mods_sa(){
|
||||||
sa_ip=$(echo "$1" | awk -F: '{print $1}')
|
sa_ip=$(echo "$1" | awk -F: '{print $1}')
|
||||||
for i in ${qport_arr[@]}; do
|
for i in ${qport_arr[@]}; do
|
||||||
|
@ -437,12 +442,15 @@ fetch_mods_sa(){
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
echo "[DZGUI] Querying modlist on ${sa_ip}:${sa_port}"
|
echo "[DZGUI] Querying modlist on ${sa_ip}:${sa_port}"
|
||||||
remote_mods=$(curl -Ls "https://dayzsalauncher.com/api/v1/query/$sa_ip/$sa_port" | jq -r '.result.mods[].steamWorkshopId')
|
local response=$(curl -Ls "https://dayzsalauncher.com/api/v1/query/$sa_ip/$sa_port")
|
||||||
rc=$?
|
local status=$(echo "$response" | jq '.status')
|
||||||
if [[ $rc -eq 1 ]]; then
|
if [[ $status -eq 1 ]]; then
|
||||||
err "Failed to fetch modlist"
|
err "Failed to fetch modlist"
|
||||||
|
zenity --error --title=DZGUI --width=500 --text="Failed to fetch modlist" 2>/dev/null &&
|
||||||
|
ret=96
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
remote_mods=$(echo "$response" | jq -r '.result.mods[].steamWorkshopId')
|
||||||
qport_arr=()
|
qport_arr=()
|
||||||
}
|
}
|
||||||
prepare_ip_list(){
|
prepare_ip_list(){
|
||||||
|
@ -629,9 +637,9 @@ browser(){
|
||||||
report_bug(){
|
report_bug(){
|
||||||
echo "[DZGUI] Opening issues page in browser"
|
echo "[DZGUI] Opening issues page in browser"
|
||||||
if [[ $is_steam_deck -eq 1 ]]; then
|
if [[ $is_steam_deck -eq 1 ]]; then
|
||||||
steam steam://openurl/"$git_url" 2>/dev/null
|
steam steam://openurl/"$issues_url" 2>/dev/null
|
||||||
elif [[ $is_steam_deck -eq 0 ]]; then
|
elif [[ $is_steam_deck -eq 0 ]]; then
|
||||||
browser "$git_url" 2>/dev/null &
|
browser "$issues_url" 2>/dev/null &
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
help_file(){
|
help_file(){
|
||||||
|
@ -866,7 +874,8 @@ pagination(){
|
||||||
check_geo_file(){
|
check_geo_file(){
|
||||||
local gzip="$helpers_path/ips.csv.gz"
|
local gzip="$helpers_path/ips.csv.gz"
|
||||||
curl -Ls "$sums_url" > "$sums_path"
|
curl -Ls "$sums_url" > "$sums_path"
|
||||||
md5sum -c sums.md5 2>/dev/null 1>&2
|
cd "$helpers_path"
|
||||||
|
md5sum -c "$sums_path" 2>/dev/null 1>&2
|
||||||
local res=$?
|
local res=$?
|
||||||
if [[ $res -eq 1 ]]; then
|
if [[ $res -eq 1 ]]; then
|
||||||
run(){
|
run(){
|
||||||
|
@ -874,7 +883,8 @@ check_geo_file(){
|
||||||
echo "# Fetching new geolocation DB"
|
echo "# Fetching new geolocation DB"
|
||||||
curl -Ls "$db_file" > "$gzip"
|
curl -Ls "$db_file" > "$gzip"
|
||||||
echo "# Extracting coordinates"
|
echo "# Extracting coordinates"
|
||||||
gunzip "$gzip"
|
#force overwrite
|
||||||
|
gunzip -f "$gzip"
|
||||||
echo "# Preparing helper file"
|
echo "# Preparing helper file"
|
||||||
curl -Ls "$km_helper_url" > "$km_helper"
|
curl -Ls "$km_helper_url" > "$km_helper"
|
||||||
chmod +x $km_helper
|
chmod +x $km_helper
|
||||||
|
@ -1172,9 +1182,9 @@ download_new_version(){
|
||||||
}
|
}
|
||||||
check_branch(){
|
check_branch(){
|
||||||
if [[ $branch == "stable" ]]; then
|
if [[ $branch == "stable" ]]; then
|
||||||
version_url="$stable_url"
|
version_url="$stable_url/dzgui.sh"
|
||||||
elif [[ $branch == "testing" ]]; then
|
elif [[ $branch == "testing" ]]; then
|
||||||
version_url="$testing_url"
|
version_url="$testing_url/dzgui.sh"
|
||||||
fi
|
fi
|
||||||
upstream=$(curl -Ls "$version_url" | awk -F= '/^version=/ {print $2}')
|
upstream=$(curl -Ls "$version_url" | awk -F= '/^version=/ {print $2}')
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue