mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-11-29 02:42:51 +00:00
Updated bash script: safe file replace system now saves it from rewrite if the downloaded file is empty
This commit is contained in:
parent
11031dad00
commit
c7e9018e71
1 changed files with 52 additions and 8 deletions
|
|
@ -1,24 +1,65 @@
|
|||
#!/bin/sh
|
||||
|
||||
safe_download_and_update() {
|
||||
url="$1"
|
||||
dest="$2"
|
||||
|
||||
# Create a temporary file
|
||||
tmp=$(mktemp "${dest}.XXXXXX") || return 1
|
||||
|
||||
# Download file into a temporary location
|
||||
if wget -q -O "$tmp" "$url"; then
|
||||
# Check that the downloaded file is not empty
|
||||
if [ -s "$tmp" ]; then
|
||||
# Atomically replace the destination file
|
||||
mv "$tmp" "$dest"
|
||||
echo "[OK] Downloaded: $dest"
|
||||
else
|
||||
echo "[ERR] Downloaded file is empty: $url"
|
||||
rm -f "$tmp"
|
||||
return 1
|
||||
fi
|
||||
else
|
||||
echo "[ERR] Failed to download: $url"
|
||||
rm -f "$tmp"
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
update_all_geofiles() {
|
||||
update_main_geofiles
|
||||
# update_ir_geofiles
|
||||
# update_ru_geofiles
|
||||
update_ir_geofiles
|
||||
update_ru_geofiles
|
||||
}
|
||||
|
||||
update_main_geofiles() {
|
||||
wget -O geoip.dat https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geoip.dat
|
||||
wget -O geosite.dat https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geosite.dat
|
||||
safe_download_and_update \
|
||||
"https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geoip.dat" \
|
||||
"geoip.dat"
|
||||
|
||||
safe_download_and_update \
|
||||
"https://github.com/Loyalsoldier/v2ray-rules-dat/releases/latest/download/geosite.dat" \
|
||||
"geosite.dat"
|
||||
}
|
||||
|
||||
update_ir_geofiles() {
|
||||
wget -O geoip_IR.dat https://github.com/chocolate4u/Iran-v2ray-rules/releases/latest/download/geoip.dat
|
||||
wget -O geosite_IR.dat https://github.com/chocolate4u/Iran-v2ray-rules/releases/latest/download/geosite.dat
|
||||
safe_download_and_update \
|
||||
"https://github.com/chocolate4u/Iran-v2ray-rules/releases/latest/download/geoip.dat" \
|
||||
"geoip_IR.dat"
|
||||
|
||||
safe_download_and_update \
|
||||
"https://github.com/chocolate4u/Iran-v2ray-rules/releases/latest/download/geosite.dat" \
|
||||
"geosite_IR.dat"
|
||||
}
|
||||
|
||||
update_ru_geofiles() {
|
||||
wget -O geoip_RU.dat https://github.com/runetfreedom/russia-v2ray-rules-dat/releases/latest/download/geoip.dat
|
||||
wget -O geosite_RU.dat https://github.com/runetfreedom/russia-v2ray-rules-dat/releases/latest/download/geosite.dat
|
||||
safe_download_and_update \
|
||||
"https://github.com/runetfreedom/russia-v2ray-rules-dat/releases/latest/download/geoip.dat" \
|
||||
"geoip_RU.dat"
|
||||
|
||||
safe_download_and_update \
|
||||
"https://github.com/runetfreedom/russia-v2ray-rules-dat/releases/latest/download/geosite.dat" \
|
||||
"geosite_RU.dat"
|
||||
}
|
||||
|
||||
update_geodata_in_docker() {
|
||||
|
|
@ -102,6 +143,9 @@ if [ "${0##*/}" = "xray-tools.sh" ]; then
|
|||
# args: XRAYDIR
|
||||
update_geodata_in_docker "$@"
|
||||
;;
|
||||
update_all_geofiles)
|
||||
update_all_geofiles
|
||||
;;
|
||||
""|help|-h|--help)
|
||||
echo "Usage:"
|
||||
echo " $0 install_xray_core TARGETARCH XRAYDIR XRAY_VERSION"
|
||||
|
|
|
|||
Loading…
Reference in a new issue