Browse Source

feat: get qqwry.dat via socks5 link

master
dnomd343 3 years ago
parent
commit
6c6b1870b3
  1. 16
      backend/qqwryUpdate.sh

16
backend/qqwryUpdate.sh

@ -1,10 +1,19 @@
#!/bin/sh
ua="Mozilla/3.0 (compatible; Indy Library)"
cd `dirname $0`
mkdir -p temp
cd temp
wget http://update.cz88.net/ip/copywrite.rar
wget http://update.cz88.net/ip/qqwry.rar
if [ -n "$SOCKS5_CN" ]; then
socks5=" --socks5 $SOCKS5_CN"
else
socks5=""
fi
curl http://update.cz88.net/ip/copywrite.rar -o copywrite.rar$socks5 --user-agent '$ua'
curl http://update.cz88.net/ip/qqwry.rar -o qqwry.rar$socks5 --user-agent '$ua'
cat > unlock.php <<EOF
<?php
@ -31,10 +40,11 @@ php unlock.php
file_size=`du qqwry.dat | awk '{print $1}'`
if [ $file_size = "0" ]; then
echo "qqwry.dat update fail."
cd .. && rm -rf temp/
exit
fi
cd ..
cp -f temp/qqwry.dat qqwry.dat
rm -rf temp/
echo "qqwry.dat update complete."
echo "qqwry.dat update complete."

Loading…
Cancel
Save