1
0
mirror of https://github.com/danog/gigaclone.git synced 2024-11-26 20:14:58 +01:00
gigaclone/mkurllist

108 lines
3.2 KiB
Plaintext
Raw Normal View History

2015-11-23 22:29:53 +01:00
#!/bin/bash
2015-11-24 21:51:59 +01:00
dir="$PWD"
2015-11-23 22:29:53 +01:00
tmp="$dir/tmp"
rm -r $tmp
2015-12-26 15:33:08 +01:00
mkdir -p $tmp
2015-11-23 22:29:53 +01:00
cd $tmp
2015-12-08 14:57:48 +01:00
{
extractlog() {
tar -xzf logs.tgz
cd log
for f in ./*;do {
echo "Working... for $f"
sed -i '/200\|206\|302\|301/!d;s/\sHTTP.*//g;s/.*\s/http:\/\/profile\.gigaset\.net/g;/http:\/\/profile\.gigaset\.net\"\"/d;s/?.*//g;s/\.net\/device/\.net\/chagall/g;s/^\.$//g' $f
echo "Remove duplicates for $f"
awk '!seen[$0]++' $f>>$tmp/tmp
};done
md5sum $tmp/logs.tgz >$dir/.md5sum
2016-03-26 15:32:10 +01:00
rm $tmp/logs.tgz
2015-12-08 14:57:48 +01:00
rdupes $tmp/tmp
}
rdupes() {
2016-03-26 21:15:10 +01:00
[ "$1" != "" ] && {
echo "Remove all duplicates for $*"
2016-06-27 16:07:34 +02:00
awk -niord '{printf RT?$0chr("0x"substr(RT,2)):$0}' RS=%.. $* $dir/urllist | awk '!seen[$0]++' >$dir/final
2016-03-26 17:44:57 +01:00
2016-03-26 21:15:10 +01:00
mv $dir/final $dir/urllist
rm $*
}
2016-04-08 21:42:41 +02:00
sed -i 's/\/\//\//g;s/\/$//g;s/http:\//http:\/\//g;s/http:\/\/\//http:\/\//g' $dir/urllist
for dl in $(cat $dir/urllist); do {
2016-03-31 04:05:38 +02:00
a=$(curl -w "%{url_effective}\n" -L -f -s -I -S "$dl" -o /dev/null)
[ $? = "0" ] && echo "$a" >> $dir/final
};done
mv $dir/final $dir/urllist
awk '!seen[$0]++' $dir/urllist >$dir/final
mv $dir/final $dir/urllist
2015-12-08 14:57:48 +01:00
}
extractbin() {
echo "Extracting urls..."
2015-12-08 14:57:48 +01:00
cd $tmp
for f in $(grep "\.bin" $dir/urllist);do {
2016-03-26 14:59:32 +01:00
[ $(wget -S --spider "$f" 2>&1 | sed '/Length/!d;s/Length\: //g;s/\s.*//g;s/\s//g;s/[^0-9]*//g' | tr -d "\n") -lt 52428800 ] && {
file=$(wget -qO- "$f" | strings)
echo "$file" | sed '/http:\/\//!d;/profile.gigaset.net\|update.gigaset.net/!d;s/.*http:\/\//http:\/\//g;s/update\.gigaset/profile\.gigaset/g'>>$tmp/tmp
2016-03-31 17:06:02 +02:00
baseurl="$(dirname "$f")"/
url=$(echo "$file" | sed '/http/d;/\.bin/!d')
for e in $url;do echo "$baseurl$e">>$tmp/tmp;done
}
2015-12-08 14:57:48 +01:00
}; done
rdupes $tmp/tmp
}
2016-03-26 14:59:32 +01:00
treegen() {
echo "Creating tree..."
2016-03-30 20:02:59 +02:00
cd $dir
2016-03-26 20:50:21 +01:00
rm -r tree
mkdir tree
cd tree
2015-12-08 14:57:48 +01:00
for f in $(sed 's/http:\/\/profile.gigaset.net\///g;s/^\/*//g' $dir/urllist);do {
2016-03-31 04:05:38 +02:00
mkdir -p $(dirname "$f")&>/dev/null
2016-03-26 17:44:57 +01:00
touch "$f"
2015-12-08 14:57:48 +01:00
};done
2016-04-10 22:10:47 +02:00
for f in $(find . -type d);do a=$(echo "$f" | sed 's/\.\///g'); cd $f; index="$(tree -a -T "profile.gigaset.net" -C -H "http://profile.gigaset.net/"$a -L 1 | sed 's/net\/\.\//net\//g;s/class=\"DIR\" href=\"http\:\/\/profile\.gigaset\.net/class=\"DIR\" href=\"http\:\/\/daniil\.it\/gigaclone\/tree/g;s/<\/a>/<\/a><br>/g;s/<\/a><br><br>/<\/a><br>/g')"; echo "$index">index.html; cd $OLDPWD; done
2016-03-26 20:50:21 +01:00
find . -not -iname "index.html" -type f -a -not -name "." -exec rm {} \;
2015-12-08 14:57:48 +01:00
}
wget http://profile.gigaset.net/logs.tgz -qO logs.tgz
2015-12-08 14:57:48 +01:00
[ "$(md5sum $tmp/logs.tgz)" != "$(cat $dir/.md5sum)" ] && {
extractlog
extractbin
}
2016-03-31 04:05:38 +02:00
[ "$1" = 'check' ] && { extractbin; }
2016-03-30 20:02:59 +02:00
cd $dir
sort urllist > final
mv final urllist
2016-03-26 14:59:32 +01:00
treegen
2015-12-08 14:57:48 +01:00
cd $dir
rm -rf $tmp/
mkdir $tmp
git clone https://$GH_TOKEN@github.com/danog/gigaclone.git $tmp/git
cd $tmp/git
2016-03-30 21:41:32 +02:00
rm -r tree
2016-03-26 21:07:01 +01:00
cp -a $dir/* .
2016-03-26 14:59:32 +01:00
rm -rf tmp gigaclone.log
2015-12-08 14:57:48 +01:00
git add -A
git commit -m "Updated url list"
git push origin master &>/dev/null
git checkout gh-pages
2016-03-26 21:07:01 +01:00
rm -r tree
cp -a $dir/tree .
2015-12-08 14:57:48 +01:00
git add -A
git commit -m "Updated dir tree"
git push origin gh-pages &>/dev/null
cd $dir
echo "Clean up."
rm -rf $tmp
2016-03-26 14:59:32 +01:00
} &> $dir/gigaclone.log