summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2012-05-10 02:13:27 +0000
committerroot <root@vm-staticweb.spline.inf.fu-berlin.de>2012-05-10 02:13:27 +0000
commitf627125c0fa9fdcc4a0650ab3626330a16e992a8 (patch)
tree9661b56aec83d78d5143696362a1a2115f3705a0 /bin
parent94c28d2746e96fe4414c7d2374910bfac56539b0 (diff)
downloadcomics-f627125c0fa9fdcc4a0650ab3626330a16e992a8.tar.gz
comics-f627125c0fa9fdcc4a0650ab3626330a16e992a8.tar.bz2
comics-f627125c0fa9fdcc4a0650ab3626330a16e992a8.zip
bin/comics: add script for updating xkcd, add $state_file config
xkcd is special (read: other than all others scripts) because it does not contain a timestamp information in the comics. we have to track the last script that was added to our mirror. so the xkcd script needs a state-file containing the last xkcd that was mirrored. the date of the xkcd is the day of the first discovery of a new comic.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/comics/xkcd45
1 files changed, 45 insertions, 0 deletions
diff --git a/bin/comics/xkcd b/bin/comics/xkcd
new file mode 100755
index 0000000..5af680b
--- /dev/null
+++ b/bin/comics/xkcd
@@ -0,0 +1,45 @@
+#!/bin/bash
+
+source $(pwd)/$(dirname $0)/../../etc/settings.sh
+tmp=$(mktemp -d)
+cd "${tmp}"
+
+browser="Mozilla/4.76 [de] (X11; U; Linux 2.2.18 i586)"
+newn="${day}.png"
+
+wget ${wget_args} -U "$browser" http://www.xkcd.com -O index.html
+
+url=$(grep -A 1 "Image URL" index.html | sed 'N;s/.*\(http.*png\)<\?.*/\1/')
+imgname=$(echo "$url" | tr '/' '\n' | tail -1)
+
+# get additional information
+img_tag=$(grep -A2 "src=\"${url}" index.html | sed 'N;N;s/.*\(<img [^>]\+>\).*/\1/')
+title=$(sed 's/.*title="\([^"]*\)".*/\1/'<<< $img_tag)
+alt=$(sed 's/.*alt="\([^"]*\)".*/\1/'<<< $img_tag)
+
+if [ ! -s "${image_dir}/$newn" ]; then
+ # no image availalable for current date
+
+ if ! grep -q "${url}" "${state_file}" >/dev/null; then
+ # new image
+ echo $url > "${state_file}"
+
+ wget ${wget_args} -U "$browser" -O "${tmp}/${newn}" \
+ --header="Referer: http://www.xkcd.com/" "$url"
+
+ if [ -s "${tmp}/${newn}" ]; then
+ # save
+ mv "${tmp}/${newn}" "${image_dir}/$newn"
+ echo "$title" > "${image_dir}/${day}.title"
+ echo "$alt" > "${image_dir}/${day}.alt"
+
+ # update symlinks
+ rm -f "${comic_dir}/latest.png" "${comic_dir}/latest.title" "${comic_dir}/latest.alt"
+ ln -s "${image_offset}/$newn" "${comic_dir}/latest.png"
+ ln -s "${image_offset}/${day}.title" "${comic_dir}/latest.title"
+ ln -s "${image_offset}/${day}.alt" "${comic_dir}/latest.alt"
+ fi
+ fi
+fi
+
+rm -rf ${tmp}