mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-08-11 09:03:42 +08:00
109 lines
2.8 KiB
Bash
Executable File
109 lines
2.8 KiB
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
STOP=10
|
|
|
|
enable=$(uci get unblockmusic.@unblockmusic[0].enabled)
|
|
TYPE=$(uci get unblockmusic.@unblockmusic[0].musicapptype)
|
|
AUTOUPDATE=$(uci get unblockmusic.@unblockmusic[0].autoupdate)
|
|
|
|
CRON_FILE=/etc/crontabs/root
|
|
|
|
ipt_n="iptables -t nat"
|
|
|
|
add_rule()
|
|
{
|
|
ipset -! -N music hash:ip
|
|
$ipt_n -N cloud_music
|
|
$ipt_n -A cloud_music -d 0.0.0.0/8 -j RETURN
|
|
$ipt_n -A cloud_music -d 10.0.0.0/8 -j RETURN
|
|
$ipt_n -A cloud_music -d 127.0.0.0/8 -j RETURN
|
|
$ipt_n -A cloud_music -d 169.254.0.0/16 -j RETURN
|
|
$ipt_n -A cloud_music -d 172.16.0.0/12 -j RETURN
|
|
$ipt_n -A cloud_music -d 192.168.0.0/16 -j RETURN
|
|
$ipt_n -A cloud_music -d 224.0.0.0/4 -j RETURN
|
|
$ipt_n -A cloud_music -d 240.0.0.0/4 -j RETURN
|
|
$ipt_n -A cloud_music -p tcp --dport 80 -j REDIRECT --to-ports 5200
|
|
$ipt_n -A cloud_music -p tcp --dport 443 -j REDIRECT --to-ports 5201
|
|
$ipt_n -I PREROUTING -p tcp -m set --match-set music dst -j cloud_music
|
|
iptables -I OUTPUT -d 223.252.199.10 -j DROP
|
|
}
|
|
|
|
del_rule(){
|
|
$ipt_n -D PREROUTING -p tcp -m set --match-set music dst -j cloud_music 2>/dev/null
|
|
$ipt_n -F cloud_music 2>/dev/null
|
|
$ipt_n -X cloud_music 2>/dev/null
|
|
iptables -D OUTPUT -d 223.252.199.10 -j DROP 2>/dev/null
|
|
|
|
rm -f /tmp/dnsmasq.d/dnsmasq-163.conf
|
|
/etc/init.d/dnsmasq reload >/dev/null 2>&1
|
|
}
|
|
|
|
set_firewall(){
|
|
rm -f /tmp/dnsmasq.d/dnsmasq-163.conf
|
|
mkdir -p /tmp/dnsmasq.d
|
|
cat <<-EOF > "/tmp/dnsmasq.d/dnsmasq-163.conf"
|
|
ipset=/.music.163.com/music
|
|
ipset=/interface.music.163.com/music
|
|
ipset=/interface3.music.163.com/music
|
|
ipset=/apm.music.163.com/music
|
|
ipset=/apm3.music.163.com/music
|
|
ipset=/clientlog.music.163.com/music
|
|
ipset=/clientlog3.music.163.com/music
|
|
EOF
|
|
/etc/init.d/dnsmasq reload >/dev/null 2>&1
|
|
|
|
add_rule
|
|
|
|
mkdir -p /var/etc
|
|
echo -e "/etc/init.d/unblockmusic restart" > "/var/etc/unblockmusic.include"
|
|
}
|
|
|
|
add_cron()
|
|
{
|
|
if [ $AUTOUPDATE -eq 1 ]; then
|
|
sed -i '/update_core.sh/d' $CRON_FILE
|
|
echo '0 2 * * * /usr/share/UnblockNeteaseMusic/update_core.sh 2>&1' >> $CRON_FILE
|
|
crontab $CRON_FILE
|
|
fi
|
|
}
|
|
|
|
del_cron()
|
|
{
|
|
sed -i '/update_core.sh/d' $CRON_FILE
|
|
/etc/init.d/cron restart
|
|
}
|
|
|
|
start()
|
|
{
|
|
stop
|
|
|
|
[ $enable -eq "0" ] && exit 0
|
|
|
|
rm -f /tmp/unblockmusic.log
|
|
echo "$(date -R) # Start UnblockNeteaseMusic" >/tmp/unblockmusic.log
|
|
|
|
if [ $TYPE = "default" ]; then
|
|
musictype=" "
|
|
else
|
|
musictype="-o $TYPE"
|
|
fi
|
|
|
|
node /usr/share/UnblockNeteaseMusic/app.js -e http://music.163.com -p 5200:5201 $musictype >>/tmp/unblockmusic.log 2>&1 &
|
|
|
|
set_firewall
|
|
add_cron
|
|
|
|
/usr/share/UnblockNeteaseMusic/logcheck.sh >/dev/null 2>&1 &
|
|
}
|
|
|
|
stop()
|
|
{
|
|
kill -9 $(busybox ps -w | grep UnblockNeteaseMusic/app.js | grep -v grep | awk '{print $1}') >/dev/null 2>&1
|
|
kill -9 $(busybox ps -w | grep logcheck.sh | grep -v grep | awk '{print $1}') >/dev/null 2>&1
|
|
rm -f /tmp/unblockmusic.log
|
|
|
|
del_rule
|
|
del_cron
|
|
}
|