chiark / gitweb /
Sort out validation errors in dataage and tidy up
[ypp-sc-tools.web-live.git] / yarrg / web / dataage
1 <%doc>
2
3  This is part of the YARRG website.  YARRG is a tool and website
4  for assisting players of Yohoho Puzzle Pirates.
5
6  Copyright (C) 2009 Ian Jackson <ijackson@chiark.greenend.org.uk>
7  Copyright (C) 2009 Clare Boothby
8
9   YARRG's client code etc. is covered by the ordinary GNU GPL (v3 or later).
10   The YARRG website is covered by the GNU Affero GPL v3 or later, which
11    basically means that every installation of the website will let you
12    download the source.
13
14  This program is free software: you can redistribute it and/or modify
15  it under the terms of the GNU Affero General Public License as
16  published by the Free Software Foundation, either version 3 of the
17  License, or (at your option) any later version.
18
19  This program is distributed in the hope that it will be useful,
20  but WITHOUT ANY WARRANTY; without even the implied warranty of
21  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  GNU Affero General Public License for more details.
23
24  You should have received a copy of the GNU Affero General Public License
25  along with this program.  If not, see <http://www.gnu.org/licenses/>.
26
27  Yohoho and Puzzle Pirates are probably trademarks of Three Rings and
28  are used without permission.  This program is not endorsed or
29  sponsored by Three Rings.
30
31
32  This Mason component generates the core of the `data age' query.
33
34
35 </%doc>
36 <%once>
37 my $meta_prettyprint_age= sub {
38     my ($age,$floor,$plus) = @_;
39     return <<END;
40         $age < 60 ?             'less than a minute'                    :
41         $age < 60*2 ?           '1 minute'                              :
42         $age < 3600*2 ?         $floor ($age/60) $plus' minutes'        :
43         $age < 86400*2 ?        $floor ($age/3600) $plus ' hours'       :
44                                 $floor ($age/86400) $plus ' days';
45 END
46 };
47
48 my $prettyprint_age;
49 eval '
50   $prettyprint_age= sub {
51                 my ($age) = @_;
52                 '.$meta_prettyprint_age->('$age','floor','.').'
53   };
54 ' or die "$@";
55
56 </%once>
57
58 <%perl>
59
60 my $now= time;
61
62 my $row;
63 my $sth= $dbh->prepare("SELECT archipelago, islandid, islandname, timestamp
64                                 FROM uploads NATURAL JOIN islands
65                                 ORDER BY archipelago, islandid");
66 $sth->execute();
67
68 </%perl>
69
70 <&| script &>
71   da_pageload= Date.now();
72 </&script>
73
74 <table>
75 <tr>
76 <th>Archipelago
77 <th>Island
78 <th>Age
79 </tr>
80 % my %da_ages;
81 % $da_ages{'daid_loaded'}= 0;
82 % while ($row=$sth->fetchrow_hashref) {
83 %       my $elid= "daid_$row->{'islandid'}";
84 %       my $age= $now - $row->{'timestamp'};
85 %       $da_ages{$elid}= $age;
86 <tr> <td><% $row->{'archipelago'} |h
87  %>  <td><% $row->{'islandname'} |h
88  %>  <td id="<% $elid %>"><% $prettyprint_age->($age) %> </tr>
89 % }
90 </table>
91
92 <p>
93 Time since this page loaded:
94 <span id="daid_loaded">(not known; times above not updating)</span>
95
96 <form action="lookup" method="get">
97 % foreach my $a (keys %ARGS) {
98 <input type="hidden" name="<% $a |h %>" value="<% $ARGS{$a} |h %>">
99 % }
100 <input type=submit name=submit value="Reload">
101 </form>
102
103 <&| script &>
104   da_ages= <% to_json_protecttags(\%da_ages) %>;
105
106   function da_Refresh() {
107     var now= Date.now();
108     debug('updating now='+now);
109     for (var elid in da_ages) {
110       var el= document.getElementById(elid);
111       var oldage= da_ages[elid];
112       var age= oldage + (now - da_pageload) / 1000;
113       var newhtml= <% $meta_prettyprint_age->('age','Math.floor','+') %>
114 % if ($ARGS{debug}) {
115       if (elid == 'daid_loaded')
116         debug('element elid='+elid+' oldage='+oldage+' age='+age+': '+newhtml);
117 % }
118       el.innerHTML= newhtml;
119     }
120   }
121
122   window.onload= da_Refresh;
123   window.setInterval(da_Refresh, 10000);
124 </&script>
125
126 <%init>
127 use POSIX;
128 use CommodsWeb;
129 my $dbh= dbw_connect('Midnight');
130 </%init>