1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-03-09 13:59:49 -04:00
This commit is contained in:
Reinhard Pointner 2016-02-05 15:21:13 +00:00
parent 15962f548b
commit 9ff40f8a23

View File

@ -2,14 +2,20 @@
fetch() fetch()
{ {
FILE="$1" FILE="$1"
LINK="$2" LINK="$2"
TIME="$3" TIME="$3"
echo "Fetch $FILE" echo "Fetch $FILE"
if [ ! -f "$FILE" ] || test "`find $FILE -mtime $TIME`"; then if [ ! -f "$FILE" ] || test "`find $FILE -mtime $TIME`"; then
curl -L -o "$FILE" -z "$FILE" "$LINK" curl -L -o "$FILE" -z "$FILE" "$LINK"
fi if [[ "$FILE" =~ \.gz$ ]]; then
gunzip -k -f "$FILE"
fi
if [[ "$FILE" =~ \.zip$ ]]; then
unzip -o "$FILE"
fi
fi
} }
fetch anidb.txt.gz 'http://anidb.net/api/anime-titles.dat.gz' +5 fetch anidb.txt.gz 'http://anidb.net/api/anime-titles.dat.gz' +5
@ -17,8 +23,7 @@ fetch tvdb.zip 'http://thetvdb.com/api/58B4AA94C59AD656/updates/updates_all.zip'
fetch omdb.zip 'http://beforethecode.com/projects/omdb/download.aspx?e=reinhard.pointner%40gmail.com&tsv=movies' +30 fetch omdb.zip 'http://beforethecode.com/projects/omdb/download.aspx?e=reinhard.pointner%40gmail.com&tsv=movies' +30
fetch osdb.txt 'http://www.opensubtitles.org/addons/export_movie.php' +30 fetch osdb.txt 'http://www.opensubtitles.org/addons/export_movie.php' +30
gunzip -k -f anidb.txt.gz fetch anime-list.xml 'https://raw.githubusercontent.com/ScudLee/anime-lists/master/anime-list.xml' +30
unzip -o tvdb.zip fetch anime-movieset-list.xml 'https://raw.githubusercontent.com/ScudLee/anime-lists/master/anime-movieset-list.xml' +30
unzip -o omdb.zip
echo 'DONE' echo 'DONE'