randrss/randrss

49 lines
1.2 KiB
Plaintext
Raw Normal View History

2017-04-15 16:24:28 +02:00
#!/bin/bash
set -x
set -e
#TODO: make this more robust
export RANDRSS_ROOT=$(pwd)
2017-04-15 16:33:48 +02:00
random_default=$( shuf -n 1 -i720-753)
2017-04-15 16:24:28 +02:00
DEFAULT_PER_ITEM="1-$random_default"
echo "Current default sleep seconds range: $DEFAULT_PER_ITEM"
if [ $# -lt 1 ] ; then
echo "Usage: $0 inputfile fetchersfile [syncnow]"
2017-04-15 16:24:28 +02:00
exit
fi
inputfile="$1"
fetchersfile="$2"
2017-04-15 16:24:28 +02:00
if [ ! -f "$inputfile" ] ; then
2017-06-21 12:23:53 +02:00
echo "inputfile does not exist or is not readable" 1>&2
exit 1
fi
if [ ! -f "$fetchersfile" ] ; then
echo "fetchersfile does not exist or is not readable" 1>&2
exit 1
fi
2017-06-21 12:23:53 +02:00
syncnow=0
if [ "$3" = "syncnow" ] ; then
syncnow=1
2017-04-15 16:24:28 +02:00
fi
while true ; do
2017-06-21 12:23:53 +02:00
shuf "$inputfile" | while read line ; do
2017-04-15 16:24:28 +02:00
url=$( echo "$line" | cut -d":" -f1,2 )
output=$( echo "$line" | cut -d":" -f3)
range=$( echo "$line" | cut -d":" -f4)
sleepfor=0
if [ -n "$range" ] ; then
sleepfor=$( shuf -i "$range" -n 1)
else
sleepfor=$( shuf -i "$DEFAULT_PER_ITEM" -n 1)
fi
fetcher=$( shuf -n 1 "$fetchersfile" )
[ $syncnow -eq 1 ] || ( echo "Sleeping for $sleepfor seconds for $url, chosen fetcher $fetcher" && sleep "$sleepfor" )
echo "Fetching $url with $fetcher"
torsocks ./$fetcher "$url" "$output" || echo "Failed to fetch $url"
2017-04-15 16:24:28 +02:00
done
2017-06-21 12:23:53 +02:00
[ $syncnow -eq 1 ] && exit
2017-04-15 16:24:28 +02:00
done