39 lines
1.3 KiB
Bash
39 lines
1.3 KiB
Bash
#!/bin/bash
|
|
. /usr/share/openclash/openclash_curl.sh
|
|
|
|
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)
|
|
DOWNLOAD_FILE="/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
|
|
|
|
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
|
|
DOWNLOAD_URL="${github_address_mod}gh/vernesong/OpenClash@core/${RELEASE_BRANCH}/core_version"
|
|
else
|
|
DOWNLOAD_URL="${github_address_mod}https://raw.githubusercontent.com/vernesong/OpenClash/core/${RELEASE_BRANCH}/core_version"
|
|
fi
|
|
else
|
|
DOWNLOAD_URL="https://raw.githubusercontent.com/vernesong/OpenClash/core/${RELEASE_BRANCH}/core_version"
|
|
fi
|
|
|
|
DOWNLOAD_FILE_CURL "$DOWNLOAD_URL" "$DOWNLOAD_FILE"
|
|
fi
|
|
del_lock
|