source: other-projects/gti/gti-wget-status-page.sh

Last change on this file was 30605, checked in by ak19, 8 years ago

Committing the changes necessary to get the GTI crons to work on the new GTI machine.

  • Property svn:executable set to *
File size: 2.2 KB
Line 
1#!/bin/bash
2
3# The original version of a script by this name had gone missing
4# I have guessed at the logic it contained based on the script's name
5# of "wget-status-page"
6# This script wgets the dynamic status page at
7# http://puka.cs.waikato.ac.nz/cgi-bin/gti/linux/library.cgi?a=gti&p=status
8# and saves it into /greenstone/custom/gti/etc/status.html so that it
9# can then be viewed statically at http://www.greenstone.org/gti/status.html
10# ak19, 17 May 2012
11
12#url="http://puka.cs.waikato.ac.nz/cgi-bin/gti/linux/library.cgi?a=gti&p=status"
13##url="http://localhost:80/cgi-bin/gti/linux/library.cgi?a=gti&p=status"
14#url="http://gti.cms.waikato.ac.nz/cgi-bin/library.cgi?a=gti&p=status"
15url="http://gti.greenstone.org/cgi-bin/library.cgi?a=gti&p=status"
16savedas_filename="library.cgi?a=gti&p=status"
17output_filename="etc/status.html"
18old_output_filename="$output_filename.orig"
19
20echo "WGetting translation status page from dynamic URL: $url."
21echo "This may take some time because the page, being dynamic, is first generated."
22
23# wait 10 mins=600s before giving up (at the moment it takes <5 mins to work)
24# the dynamic GTI translation status page takes quite some time to generate
25# the data, but we try only once
26if test -f $output_filename ; then
27 mv $output_filename $old_output_filename
28fi
29wget $url --tries=1 --timeout=600
30
31returnval=$?
32
33# If we succeeded, the return value is 0 and we have a file saved under
34# $savedas_filename. In that case, we get rid of the previous status page
35# If wget failed or the expected file is not saved, we keep the previous
36# day's status page, but with a log message about why.
37if [ "$returnval" == "0" ]; then
38 if test -f $savedas_filename ; then
39 mv $savedas_filename $output_filename
40 if test -f $old_output_filename ; then
41 rm $old_output_filename
42 fi
43 else
44 echo "Wget succeeded yet the expected page $savedas_filename"
45 echo "does not exist. Resorting to previous version of file $output_filename"
46 if test -f $old_output_filename ; then
47 mv $old_output_filename $output_filename
48 else
49 echo "Previous version of $output_filename does not exist either."
50 fi
51 fi
52else
53 echo "wget did not succeed in retrieving $url."
54 echo "Return value was: $returnval"
55fi
Note: See TracBrowser for help on using the repository browser.