mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 03:53:01 +02:00
fix: conditional remote url logic
This commit is contained in:
parent
01081a29e7
commit
0197e0f921
1 changed files with 46 additions and 14 deletions
58
dzgui.sh
58
dzgui.sh
|
@ -54,16 +54,18 @@ km_helper="$helpers_path/latlon"
|
||||||
sums_path="$helpers_path/sums.md5"
|
sums_path="$helpers_path/sums.md5"
|
||||||
func_helper="$helpers_path/funcs"
|
func_helper="$helpers_path/funcs"
|
||||||
|
|
||||||
#URLS
|
#REMOTE
|
||||||
|
remote_host=gh
|
||||||
author="aclist"
|
author="aclist"
|
||||||
repo="dzgui"
|
repo="dztui"
|
||||||
url_prefix="https://codeberg.org/$author/$repo/raw/branch"
|
url_prefix="https://raw.githubusercontent.com/$author/$repo"
|
||||||
stable_url="$url_prefix/dzgui"
|
stable_url="$url_prefix/dzgui"
|
||||||
testing_url="$url_prefix/testing"
|
testing_url="$url_prefix/testing"
|
||||||
releases_url="https://codeberg.org/$author/$repo/releases/download/browser"
|
releases_url="https://github.com/$author/$repo/releases/download/browser"
|
||||||
km_helper_url="$releases_url/latlon"
|
km_helper_url="$releases_url/latlon"
|
||||||
geo_file_url="$releases_url/ips.csv.gz"
|
geo_file_url="$releases_url/ips.csv.gz"
|
||||||
|
|
||||||
|
|
||||||
set_im_module(){
|
set_im_module(){
|
||||||
#TODO: drop pending SteamOS changes
|
#TODO: drop pending SteamOS changes
|
||||||
pgrep -a gamescope | grep -q "generate-drm-mode"
|
pgrep -a gamescope | grep -q "generate-drm-mode"
|
||||||
|
@ -312,13 +314,14 @@ check_unmerged(){
|
||||||
check_version(){
|
check_version(){
|
||||||
local version_url=$(format_version_url)
|
local version_url=$(format_version_url)
|
||||||
local upstream=$(curl -Ls "$version_url" | awk -F= '/^version=/ {print $2}')
|
local upstream=$(curl -Ls "$version_url" | awk -F= '/^version=/ {print $2}')
|
||||||
|
#2024-12-12: do not clobber local version if unreachable
|
||||||
|
[[ -z $upstream ]] && return
|
||||||
logger INFO "Local branch: '$branch', local version: $version"
|
logger INFO "Local branch: '$branch', local version: $version"
|
||||||
if [[ $branch == "stable" ]]; then
|
if [[ $branch == "stable" ]]; then
|
||||||
version_url="$stable_url/dzgui.sh"
|
version_url="$stable_url/dzgui.sh"
|
||||||
elif [[ $branch == "testing" ]]; then
|
elif [[ $branch == "testing" ]]; then
|
||||||
version_url="$testing_url/dzgui.sh"
|
version_url="$testing_url/dzgui.sh"
|
||||||
fi
|
fi
|
||||||
local upstream=$(curl -Ls "$version_url" | awk -F= '/^version=/ {print $2}')
|
|
||||||
[[ ! -f "$freedesktop_path/$app_name.desktop" ]] && freedesktop_dirs
|
[[ ! -f "$freedesktop_path/$app_name.desktop" ]] && freedesktop_dirs
|
||||||
if [[ $version == $upstream ]]; then
|
if [[ $version == $upstream ]]; then
|
||||||
logger INFO "Local version is same as upstream"
|
logger INFO "Local version is same as upstream"
|
||||||
|
@ -371,9 +374,14 @@ prompt_dl(){
|
||||||
}
|
}
|
||||||
dl_changelog(){
|
dl_changelog(){
|
||||||
local mdbranch
|
local mdbranch
|
||||||
|
local md
|
||||||
[[ $branch == "stable" ]] && mdbranch="dzgui"
|
[[ $branch == "stable" ]] && mdbranch="dzgui"
|
||||||
[[ $branch == "testing" ]] && mdbranch="testing"
|
[[ $branch == "testing" ]] && mdbranch="testing"
|
||||||
local md="https://codeberg.org/$author/dzgui/raw/branch/${mdbranch}/CHANGELOG.md"
|
if [[ $remote_host == "gh" ]]; then
|
||||||
|
md="https://raw.githubusercontent.com/$author/$repo/${mdbranch}/CHANGELOG.md"
|
||||||
|
else
|
||||||
|
md="https://codeberg.org/$author/$repo/raw/branch/${mdbranch}/CHANGELOG.md"
|
||||||
|
fi
|
||||||
curl -Ls "$md" > "$state_path/CHANGELOG.md"
|
curl -Ls "$md" > "$state_path/CHANGELOG.md"
|
||||||
}
|
}
|
||||||
test_display_mode(){
|
test_display_mode(){
|
||||||
|
@ -596,7 +604,13 @@ fetch_helpers_by_sum(){
|
||||||
file="$i"
|
file="$i"
|
||||||
sum="${sums[$i]}"
|
sum="${sums[$i]}"
|
||||||
full_path="$helpers_path/$file"
|
full_path="$helpers_path/$file"
|
||||||
|
|
||||||
|
if [[ $remote_host == "gh" ]]; then
|
||||||
|
url="https://raw.githubusercontent.com/$author/$repo/$realbranch/helpers/$file"
|
||||||
|
else
|
||||||
url="https://codeberg.org/$author/$repo/raw/branch/$realbranch/helpers/$file"
|
url="https://codeberg.org/$author/$repo/raw/branch/$realbranch/helpers/$file"
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ -f "$full_path" ]] && [[ $(get_hash "$full_path") == $sum ]]; then
|
if [[ -f "$full_path" ]] && [[ $(get_hash "$full_path") == $sum ]]; then
|
||||||
logger INFO "$file is current"
|
logger INFO "$file is current"
|
||||||
else
|
else
|
||||||
|
@ -845,14 +859,32 @@ is_steam_running(){
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
get_response_code(){
|
||||||
|
local url="$1"
|
||||||
|
curl -Ls -I -o /dev/null -w "%{http_code}" "$url"
|
||||||
|
}
|
||||||
test_connection(){
|
test_connection(){
|
||||||
ping -c1 -4 github.com 1>/dev/null 2>&1
|
source "$config_file"
|
||||||
if [[ ! $? -eq 0 ]]; then
|
declare -A hr
|
||||||
raise_error_and_quit "No connection could be established to the remote server (github.com)."
|
local res1
|
||||||
fi
|
local res2
|
||||||
ping -c1 -4 api.steampowered.com 1>/dev/null 2>&1
|
local str="No connection could be established to the remote server"
|
||||||
if [[ ! $? -eq 0 ]]; then
|
hr=(
|
||||||
raise_error_and_quit "No connection could be established to the remote server (steampowered.com)."
|
["steampowered.com"]="https://api.steampowered.com/IGameServersService/GetServerList/v1/?key=$steam_api"
|
||||||
|
["github.com"]="https://github.com/$author"
|
||||||
|
["codeberg.org"]="https://codeberg.org/$author"
|
||||||
|
)
|
||||||
|
res=$(get_response_code "${hr["github.com"]}")
|
||||||
|
[[ $res -ne 200 ]] && remote_host=cb
|
||||||
|
res=$(get_response_code "${hr["codeberg.org"]}")
|
||||||
|
[[ $res -ne 200 ]] && raise_error_and_quit "$str (${hr["codeberg.org"]})"
|
||||||
|
# steam API is mandatory
|
||||||
|
res=$(get_response_code "${hr["steampowered.com"]}")
|
||||||
|
[[ $res -ne 200 ]] && raise_error_and_quit "$str ${hr["steampowered.com"]}"
|
||||||
|
|
||||||
|
if [[ $remote_host == "cb" ]]; then
|
||||||
|
url_prefix="https://codeberg.org/$author/$repo/raw/branch"
|
||||||
|
releases_url="https://codeberg.org/$author/$repo/releases/download/browser"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
legacy_cols(){
|
legacy_cols(){
|
||||||
|
|
Loading…
Reference in a new issue