41 lines
1.9 KiB
Bash
41 lines
1.9 KiB
Bash
#!/bin/bash
|
|
|
|
set_lock() {
|
|
exec 884>"/tmp/lock/openclash_clash_version.lock" 2>/dev/null
|
|
flock -x 884 2>/dev/null
|
|
}
|
|
|
|
del_lock() {
|
|
flock -u 884 2>/dev/null
|
|
rm -rf "/tmp/lock/openclash_clash_version.lock" 2>/dev/null
|
|
}
|
|
|
|
set_lock
|
|
|
|
TIME=$(date "+%Y-%m-%d-%H")
|
|
CHTIME=$(date "+%Y-%m-%d-%H" -r "/tmp/clash_last_version" 2>/dev/null)
|
|
LAST_OPVER="/tmp/clash_last_version"
|
|
RELEASE_BRANCH=$(uci -q get openclash.config.release_branch || echo "master")
|
|
github_address_mod=$(uci -q get openclash.config.github_address_mod || echo 0)
|
|
if [ -n "$1" ]; then
|
|
github_address_mod="$1"
|
|
fi
|
|
LOG_FILE="/tmp/openclash.log"
|
|
|
|
if [ "$TIME" != "$CHTIME" ]; then
|
|
if [ "$github_address_mod" != "0" ]; then
|
|
if [ "$github_address_mod" == "https://cdn.jsdelivr.net/" ] || [ "$github_address_mod" == "https://fastly.jsdelivr.net/" ] || [ "$github_address_mod" == "https://testingcf.jsdelivr.net/" ]; then
|
|
curl -SsL -m 60 "$github_address_mod"gh/vernesong/OpenClash@core/"$RELEASE_BRANCH"/core_version -o $LAST_OPVER 2>&1 |sed ':a;N;$!ba; s/\n/ /g' | awk -v time="$(date "+%Y-%m-%d %H:%M:%S")" -v file="$LAST_OPVER" '{print time "【" file "】Download Failed:【"$0"】"}' >> "$LOG_FILE"
|
|
else
|
|
curl -SsL -m 60 "$github_address_mod"https://raw.githubusercontent.com/vernesong/OpenClash/core/"$RELEASE_BRANCH"/core_version -o $LAST_OPVER 2>&1 |sed ':a;N;$!ba; s/\n/ /g' | awk -v time="$(date "+%Y-%m-%d %H:%M:%S")" -v file="$LAST_OPVER" '{print time "【" file "】Download Failed:【"$0"】"}' >> "$LOG_FILE"
|
|
fi
|
|
else
|
|
curl -SsL -m 60 https://raw.githubusercontent.com/vernesong/OpenClash/core/"$RELEASE_BRANCH"/core_version -o $LAST_OPVER 2>&1 |sed ':a;N;$!ba; s/\n/ /g' | awk -v time="$(date "+%Y-%m-%d %H:%M:%S")" -v file="$LAST_OPVER" '{print time "【" file "】Download Failed:【"$0"】"}' >> "$LOG_FILE"
|
|
fi
|
|
|
|
if [ "${PIPESTATUS[0]}" -ne 0 ]; then
|
|
rm -rf $LAST_OPVER
|
|
fi
|
|
fi
|
|
del_lock
|