2022-02-12 15:40:06 +08:00
|
|
|
|
#!/bin/sh
|
|
|
|
|
# set -x
|
|
|
|
|
|
|
|
|
|
. /lib/functions.sh
|
|
|
|
|
|
|
|
|
|
CONFIG=koolproxy
|
|
|
|
|
KP_DIR=/usr/share/koolproxy
|
|
|
|
|
TMP_DIR=/tmp/koolproxy
|
|
|
|
|
LOGFILE="/var/log/koolproxy.log"
|
|
|
|
|
|
|
|
|
|
config_t_get() {
|
|
|
|
|
local index=0
|
|
|
|
|
[ -n "$4" ] && index=$4
|
|
|
|
|
local ret=$(uci get $CONFIG.@$1[$index].$2 2>/dev/null)
|
|
|
|
|
echo ${ret:=$3}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
limit_log() {
|
|
|
|
|
local log=$1
|
|
|
|
|
[ ! -f "$log" ] && return
|
|
|
|
|
local sc=100
|
|
|
|
|
[ -n "$2" ] && sc=$2
|
|
|
|
|
local count=$(grep -c "" $log)
|
|
|
|
|
if [ $count -gt $sc ];then
|
|
|
|
|
let count=count-$sc
|
|
|
|
|
sed -i "1,$count d" $log
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
init_env() {
|
|
|
|
|
rm -rf "$TMP_DIR"
|
|
|
|
|
mkdir -p "$TMP_DIR"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
restart_koolproxy() {
|
|
|
|
|
/etc/init.d/koolproxy restart
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
__compare_file() {
|
|
|
|
|
local descript=$1
|
|
|
|
|
local localPath=$2
|
|
|
|
|
local remoteUrl=$3
|
|
|
|
|
|
|
|
|
|
echo $(date "+%F %T"): ------------------- $descript更新 ------------------- >>$LOGFILE
|
|
|
|
|
local filename=`basename $localPath`
|
|
|
|
|
local remotePath="$TMP_DIR/$filename"
|
|
|
|
|
wget "$remoteUrl" -q -O "$remotePath"
|
|
|
|
|
if [ "$?" == "0" ]; then
|
|
|
|
|
if [ -f "$localPath" ]; then
|
|
|
|
|
localMD5=`md5sum "$localPath" | awk '{print $1}'`
|
|
|
|
|
localNum=`cat "$localPath" | grep -v '^!' | wc -l`
|
|
|
|
|
else
|
|
|
|
|
localMD5="文件不存在"
|
|
|
|
|
localNum="0"
|
|
|
|
|
fi
|
|
|
|
|
remoteMD5=`md5sum "$remotePath" | awk '{print $1}'`
|
|
|
|
|
remoteNum=`cat "$remotePath" | grep -v '^!' | wc -l`
|
|
|
|
|
|
|
|
|
|
echo $(date "+%F %T"): 本地版本MD5:$localMD5 >>$LOGFILE
|
|
|
|
|
echo $(date "+%F %T"): 本地版本条数:$localNum >>$LOGFILE
|
|
|
|
|
echo >>$LOGFILE
|
|
|
|
|
echo $(date "+%F %T"): 在线版本MD5:$remoteMD5 >>$LOGFILE
|
|
|
|
|
echo $(date "+%F %T"): 在线版本条数:$remoteNum >>$LOGFILE
|
|
|
|
|
echo >>$LOGFILE
|
|
|
|
|
|
|
|
|
|
if [ "$localMD5" != "$remoteMD5" ];then
|
|
|
|
|
echo $(date "+%F %T"): 检测到更新,开始更新规则! >>$LOGFILE
|
|
|
|
|
mv -f "$remotePath" "$localPath"
|
|
|
|
|
echo $(date "+%F %T"): 更新成功! >>$LOGFILE
|
|
|
|
|
echo >>$LOGFILE
|
|
|
|
|
return 0
|
|
|
|
|
fi
|
|
|
|
|
else
|
|
|
|
|
echo "$(date "+%F %T"): 获取在线版本时出现错误! " >>$LOGFILE
|
|
|
|
|
echo >>$LOGFILE
|
|
|
|
|
fi
|
|
|
|
|
return 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
__update_rule() {
|
|
|
|
|
local name
|
|
|
|
|
local file
|
|
|
|
|
local exrule
|
|
|
|
|
local enable
|
|
|
|
|
config_get name $1 name
|
|
|
|
|
config_get file $1 file
|
|
|
|
|
config_get exrule $1 url
|
|
|
|
|
config_get enable $1 load
|
|
|
|
|
if [ -n "$file" ] && [ -n "$exrule" ]; then
|
|
|
|
|
if [ $enable -ne 1 ]; then
|
|
|
|
|
return
|
|
|
|
|
fi
|
|
|
|
|
__compare_file "$name" "$KP_DIR/data/rules/$file" "$exrule"
|
|
|
|
|
if [ "$?" == "0" ]; then
|
|
|
|
|
uci set koolproxy.$1.time="`date +%Y-%m-%d" "%H:%M`"
|
|
|
|
|
uci commit koolproxy
|
|
|
|
|
RESTART_KOOLPROXY=true
|
|
|
|
|
fi
|
|
|
|
|
cat $KP_DIR/data/rules/$file >>$KP_DIR/data/rules/user.txt
|
|
|
|
|
echo >>$LOGFILE
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
update_rss_rules() {
|
|
|
|
|
cp $KP_DIR/data/user.txt $KP_DIR/data/rules/user.txt
|
|
|
|
|
config_load $CONFIG
|
|
|
|
|
config_foreach __update_rule rss_rule
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
update_rules() {
|
|
|
|
|
echo $(date "+%F %T"): ------------------- 内置规则更新 ------------------- >>$LOGFILE
|
2022-10-12 23:56:33 +08:00
|
|
|
|
wget 'https://cdn.jsdelivr.net/gh/yaof2/koolproxy@main/rules/kp.dat' -q -O $KP_DIR/data/rules/kp.dat
|
|
|
|
|
wget 'https://cdn.jsdelivr.net/gh/yaof2/koolproxy@main/rules/daily.txt' -q -O $KP_DIR/data/rules/daily.txt
|
|
|
|
|
wget 'https://cdn.jsdelivr.net/gh/yaof2/koolproxy@main/rules/koolproxy.txt' -q -O $KP_DIR/data/rules/koolproxy.txt
|
|
|
|
|
wget 'https://cdn.jsdelivr.net/gh/yaof2/koolproxy@main/rules/yhosts.txt' -q -O $KP_DIR/data/rules/yhosts.txt
|
|
|
|
|
wget 'https://cdn.jsdelivr.net/gh/yaof2/koolproxy@main/rules/steven.txt' -q -O $KP_DIR/data/rules/steven.txt
|
|
|
|
|
wget 'https://cdn.jsdelivr.net/gh/yaof2/koolproxy@main/rules/adg.txt' -q -O $KP_DIR/data/rules/adg.txt
|
|
|
|
|
wget 'https://cdn.jsdelivr.net/gh/yaof2/koolproxy@main/rules/antiad.txt' -q -O $KP_DIR/data/rules/antiad.txt
|
|
|
|
|
wget 'https://cdn.jsdelivr.net/gh/yaof2/koolproxy@main/rules/adgk.txt' -q -O $KP_DIR/data/rules/adgk.txt
|
|
|
|
|
wget 'https://cdn.jsdelivr.net/gh/yaof2/koolproxy@main/rules/koolproxy_ipset.conf' -q -O $KP_DIR/koolproxy_ipset.conf
|
|
|
|
|
wget 'https://cdn.jsdelivr.net/gh/yaof2/koolproxy@main/rules/dnsmasq.adblock' -q -O $KP_DIR/dnsmasq.adblock
|
2022-02-12 15:40:06 +08:00
|
|
|
|
adg_rules_local=`cat /usr/share/koolproxy/data/rules/adg.txt | sed -n '4p'|awk '{print $4}'`
|
|
|
|
|
steven_rules_local=`cat /usr/share/koolproxy/data/rules/steven.txt | sed -n '2p'|awk '{print $3,$4,$5,$6}'`
|
|
|
|
|
yhosts_rules_local=`cat /usr/share/koolproxy/data/rules/yhosts.txt | sed -n '1p' | cut -d ":" -f2`
|
|
|
|
|
antiad_rules_local=`cat /usr/share/koolproxy/data/rules/antiad.txt | sed -n '2p' | cut -d "=" -f2`
|
|
|
|
|
koolproxy_rules_local=`cat /usr/share/koolproxy/data/rules/koolproxy.txt | sed -n '3p'|awk '{print $3,$4}'`
|
|
|
|
|
adgk_rules_local=`cat /usr/share/koolproxy/data/rules/adgk.txt | sed -n '1p'|awk '{print $3}'`
|
|
|
|
|
echo $(date "+%F %T"): -------------------AdGuard规则 Version $adg_rules_local >>$LOGFILE
|
|
|
|
|
echo $(date "+%F %T"): -------------------Steven规则 Version $steven_rules_local >>$LOGFILE
|
|
|
|
|
echo $(date "+%F %T"): -------------------Yhosts规则 Version $yhosts_rules_local >>$LOGFILE
|
|
|
|
|
echo $(date "+%F %T"): -------------------AntiAD规则 Version $antiad_rules_local >>$LOGFILE
|
|
|
|
|
echo $(date "+%F %T"): -------------------坂本规则 Version $adgk_rules_local >>$LOGFILE
|
|
|
|
|
echo $(date "+%F %T"): -------------------静态规则 Version $koolproxy_rules_local >>$LOGFILE
|
|
|
|
|
echo $(date "+%F %T"): ------------------- 内置规则更新成功! ------------------- >>$LOGFILE
|
|
|
|
|
RESTART_KOOLPROXY=true
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
update_adb_host() {
|
|
|
|
|
/usr/sbin/adblockplus >>$LOGFILE 2>&1 &
|
|
|
|
|
if [ "$?" == "0" ]; then
|
|
|
|
|
RESTART_DNSMASQ=true
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# main process
|
|
|
|
|
init_env
|
|
|
|
|
limit_log $LOGFILE
|
|
|
|
|
|
|
|
|
|
# update rules
|
|
|
|
|
update_rules
|
|
|
|
|
|
|
|
|
|
# update user rules
|
|
|
|
|
update_rss_rules
|
|
|
|
|
|
|
|
|
|
koolproxy_mode=$(config_t_get global koolproxy_mode 1)
|
|
|
|
|
koolproxy_host=$(config_t_get global koolproxy_host 0)
|
|
|
|
|
|
|
|
|
|
# update ADB Plus Host
|
|
|
|
|
if [ "$koolproxy_mode" == "2" ] && [ "$koolproxy_host" == "1" ];then
|
|
|
|
|
update_adb_host
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ $RESTART_KOOLPROXY ]; then
|
|
|
|
|
restart_koolproxy
|
|
|
|
|
echo $(date "+%F %T"): 重启koolproxy进程 >>$LOGFILE
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
init_env
|