106 lines
2.6 KiB
Bash
Executable File
106 lines
2.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
BASE_URL="${BASE_URL:-https://git.jewguard.xyz/linusware/main/raw/branch/main}"
|
|
INSTALL_DIR="${HOME}/linusware"
|
|
|
|
RED='\033[0;31m'
|
|
GREEN='\033[0;32m'
|
|
YELLOW='\033[1;33m'
|
|
NC='\033[0m'
|
|
|
|
info() {
|
|
echo -e "${GREEN}[*]${NC} $1"
|
|
}
|
|
warn() {
|
|
echo -e "${YELLOW}[!]${NC} $1"
|
|
}
|
|
error() {
|
|
echo -e "${RED}[x]${NC} $1"
|
|
}
|
|
|
|
command -v curl >/dev/null 2>&1 || { error "curl is required"; exit 1; }
|
|
command -v md5sum >/dev/null 2>&1 || { error "md5sum is required"; exit 1; }
|
|
|
|
download() {
|
|
local url="$1" dest="$2"
|
|
local tmp; tmp="$(mktemp)"
|
|
curl -fsSL -o "$tmp" "$url" || { rm -f "$tmp"; return 1; }
|
|
mv "$tmp" "$dest"
|
|
}
|
|
|
|
update_edition() {
|
|
local edition="$1"
|
|
local bin_path="${INSTALL_DIR}/${edition}/linusware/linusware"
|
|
local ver_file="${INSTALL_DIR}/${edition}/version.txt"
|
|
|
|
[ -f "$bin_path" ] || return
|
|
|
|
local cur_ver=""
|
|
[ -f "$ver_file" ] && cur_ver=$(cat "$ver_file")
|
|
|
|
local tmp_status; tmp_status="$(mktemp)"
|
|
if ! download "${BASE_URL}/${edition}/status.json" "$tmp_status"; then
|
|
rm -f "$tmp_status"
|
|
warn "${edition}: could not fetch remote status"
|
|
return
|
|
fi
|
|
|
|
local remote_ver updated
|
|
remote_ver=$(sed -n 's/.*"version":[[:space:]]*"\([^"]*\)".*/\1/p' "$tmp_status")
|
|
updated=$(sed -n 's/.*"updated":[[:space:]]*\([a-z]*\).*/\1/p' "$tmp_status")
|
|
rm -f "$tmp_status"
|
|
|
|
if [ "$updated" != "true" ]; then
|
|
info "${edition}: not available (not yet released)"
|
|
return
|
|
fi
|
|
|
|
if [ "$remote_ver" = "$cur_ver" ]; then
|
|
info "${edition}: already up-to-date (v${cur_ver})"
|
|
return
|
|
fi
|
|
|
|
info "${edition}: ${cur_ver:-none} -> v${remote_ver}"
|
|
|
|
local md5_file; md5_file="$(mktemp)"
|
|
if ! download "${BASE_URL}/${edition}/bin/MD5SUM" "$md5_file"; then
|
|
rm -f "$md5_file"
|
|
warn "${edition}: could not fetch MD5SUM"
|
|
return
|
|
fi
|
|
local expected_hash; expected_hash=$(tr -cd '[:xdigit:]' < "$md5_file"); rm -f "$md5_file"
|
|
|
|
local tmp_bin; tmp_bin="$(mktemp)"
|
|
if ! download "${BASE_URL}/${edition}/bin/linusware" "$tmp_bin"; then
|
|
rm -f "$tmp_bin"
|
|
warn "${edition}: download failed"
|
|
return
|
|
fi
|
|
|
|
local actual_hash
|
|
actual_hash=$(md5sum "$tmp_bin" | cut -d' ' -f1)
|
|
if [ "$actual_hash" != "$expected_hash" ]; then
|
|
rm -f "$tmp_bin"
|
|
error "${edition}: MD5 mismatch"
|
|
return
|
|
fi
|
|
|
|
mv "$tmp_bin" "$bin_path"
|
|
chmod +x "$bin_path"
|
|
echo "$remote_ver" > "$ver_file"
|
|
info "${edition}: updated to v${remote_ver}"
|
|
}
|
|
|
|
# main
|
|
echo -e "${GREEN}------ LinusWare Updater ------${NC}"
|
|
echo ""
|
|
|
|
for dir in "${INSTALL_DIR}"/*/; do
|
|
[ -d "$dir" ] || continue
|
|
update_edition "$(basename "$dir")"
|
|
done
|
|
|
|
echo ""
|
|
info "Done."
|