1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00
uBlock/assets/update-3rdparties.sh
2014-06-23 19:36:45 -04:00

100 lines
5.2 KiB
Bash
Executable File

#!/bin/bash
#
# This script assumes a linux environment
TEMPFILE=/tmp/httpsb-asset
echo "*** uBlock: updating remote assets..."
THIRDPARTY_REMOTEURLS=(
'https://raw.githubusercontent.com/gorhill/httpswitchboard/master/assets/httpsb/blacklist.txt'
'http://mirror1.malwaredomains.com/files/immortal_domains.txt'
'http://mirror1.malwaredomains.com/files/justdomains'
'http://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&showintro=1&startdate%5Bday%5D=&startdate%5Bmonth%5D=&startdate%5Byear%5D=&mimetype=plaintext'
'http://www.malwaredomainlist.com/hostslist/hosts.txt'
'http://hosts-file.net/.%5Cad_servers.txt'
'http://someonewhocares.org/hosts/hosts'
'http://winhelp2002.mvps.org/hosts.txt'
'http://spam404bl.com/spam404scamlist.txt'
'http://publicsuffix.org/list/effective_tld_names.dat'
'https://easylist-downloads.adblockplus.org/easylist.txt'
'https://easylist-downloads.adblockplus.org/easylist_noelemhide.txt'
'https://easylist-downloads.adblockplus.org/easyprivacy.txt'
'https://easylist-downloads.adblockplus.org/fanboy-annoyance.txt'
'http://www.fanboy.co.nz/enhancedstats.txt'
'https://easylist-downloads.adblockplus.org/easylistgermany.txt'
'https://easylist-downloads.adblockplus.org/easylistitaly.txt'
'https://easylist-downloads.adblockplus.org/easylistdutch.txt'
'https://easylist-downloads.adblockplus.org/liste_fr.txt'
'https://easylist-downloads.adblockplus.org/advblock.txt'
'https://easylist-downloads.adblockplus.org/easylistchina.txt'
'http://adblock-chinalist.googlecode.com/svn/trunk/adblock.txt'
'https://adblock-plus-japanese-filter.googlecode.com/hg/abp_jp.txt'
'http://margevicius.lt/AdBlockPlusLithuania.txt'
'http://stanev.org/abp/adblock_bg.txt'
'http://indonesianadblockrules.googlecode.com/hg/subscriptions/abpindo.txt'
'http://liste-ar-adblock.googlecode.com/hg/Liste_AR.txt'
'http://adblock-czechoslovaklist.googlecode.com/svn/filters.txt'
'https://raw.githubusercontent.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt'
'https://raw.githubusercontent.com/AdBlockPlusIsrael/EasyListHebrew/master/EasyListHebrew.txt'
'http://download.wiltteri.net/wiltteri.txt'
'http://adblock.gardar.net/is.abp.txt'
'http://www.void.gr/kargig/void-gr-filters.txt'
'http://abp.mozilla-hispano.org/nauscopio/filtros.txt'
)
THIRDPARTY_LOCALURLS=(
'thirdparties/raw.githubusercontent.com/gorhill/httpswitchboard/master/assets/httpsb/blacklist.txt'
'thirdparties/mirror1.malwaredomains.com/files/immortal_domains.txt'
'thirdparties/mirror1.malwaredomains.com/files/justdomains'
'thirdparties/pgl.yoyo.org/as/serverlist'
'thirdparties/www.malwaredomainlist.com/hostslist/hosts.txt'
'thirdparties/hosts-file.net/ad-servers'
'thirdparties/someonewhocares.org/hosts/hosts'
'thirdparties/winhelp2002.mvps.org/hosts.txt'
'thirdparties/spam404bl.com/spam404scamlist.txt'
'thirdparties/publicsuffix.org/list/effective_tld_names.dat'
'thirdparties/easylist-downloads.adblockplus.org/easylist.txt'
'thirdparties/easylist-downloads.adblockplus.org/easylist_noelemhide.txt'
'thirdparties/easylist-downloads.adblockplus.org/easyprivacy.txt'
'thirdparties/easylist-downloads.adblockplus.org/fanboy-annoyance.txt'
'thirdparties/www.fanboy.co.nz/enhancedstats.txt'
'thirdparties/easylist-downloads.adblockplus.org/easylistgermany.txt'
'thirdparties/easylist-downloads.adblockplus.org/easylistitaly.txt'
'thirdparties/easylist-downloads.adblockplus.org/easylistdutch.txt'
'thirdparties/easylist-downloads.adblockplus.org/liste_fr.txt'
'thirdparties/easylist-downloads.adblockplus.org/advblock.txt'
'thirdparties/easylist-downloads.adblockplus.org/easylistchina.txt'
'thirdparties/adblock-chinalist.googlecode.com/svn/trunk/adblock.txt'
'thirdparties/adblock-plus-japanese-filter.googlecode.com/hg/abp_jp.txt'
'thirdparties/margevicius.lt/AdBlockPlusLithuania.txt'
'thirdparties/stanev.org/abp/adblock_bg.txt'
'thirdparties/indonesianadblockrules.googlecode.com/hg/subscriptions/abpindo.txt'
'thirdparties/liste-ar-adblock.googlecode.com/hg/Liste_AR.txt'
'thirdparties/adblock-czechoslovaklist.googlecode.com/svn/filters.txt'
'thirdparties/raw.githubusercontent.com/adblockpolska/Adblock_PL_List/master/adblock_polska.txt'
'thirdparties/raw.githubusercontent.com/AdBlockPlusIsrael/EasyListHebrew/master/EasyListHebrew.txt'
'thirdparties/download.wiltteri.net/wiltteri.txt'
'thirdparties/adblock.gardar.net/is.abp.txt'
'thirdparties/www.void.gr/kargig/void-gr-filters.txt'
'thirdparties/abp.mozilla-hispano.org/nauscopio/filtros.txt'
)
ENTRY_INDEX=0
for THIRDPARTY_REMOTEURL in ${THIRDPARTY_REMOTEURLS[@]}; do
THIRDPARTY_LOCALURL=${THIRDPARTY_LOCALURLS[ENTRY_INDEX]}
echo "*** Downloading" $THIRDPARTY_REMOTEURL
if wget -q -T 30 -O $TEMPFILE -- $THIRDPARTY_REMOTEURL; then
if [ -s $TEMPFILE ]; then
if ! cmp -s $TEMPFILE $THIRDPARTY_LOCALURL; then
echo " New version found: $THIRDPARTY_LOCALURL"
if [ "$1" != "dry" ]; then
mv $TEMPFILE $THIRDPARTY_LOCALURL
fi
fi
fi
fi
let ENTRY_INDEX+=1
done