chiark / gitweb /
Fix some warnings
[ypp-sc-tools.db-live.git] / yarrg / web / lookup
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 main `lookup' page, including
33  all the entry boxes etc. for every query.
34
35
36 </%doc>
37 <%perl>
38 my %a;
39 my %ahtml;
40 my @vars;
41
42 #---------- "mode" argument parsing and mode menu at top of page ----------
43
44 # for debugging, invoke as
45 #  http://www.chiark.greenend.org.uk/ucgi/~clareb/mason/pirates/pirate-route?debug=1
46
47 @vars= ({       Name => 'Ocean',
48                 Before => 'Ocean: ',
49                 CmpCanon => sub { ucfirst lc $_[0] },
50                 Values => [ ocean_list() ]
51         }, {    Name => 'Dropdowns',
52                 Before => 'Interface: ',
53                 CmpCanon => sub { !!$_[0] },
54                 Values => [     [ 0, 'Type in names' ],
55                                 [ 4, 'Select from menus' ] ]
56         }, {    Name => 'Query',
57                 Before => 'Query: ',
58                 Values => [     [ 'route', 'Trades for route' ],
59                                 [ 'commod', 'Prices for commodity' ],
60                                 [ 'age', 'Data age' ] ]
61         });
62
63 foreach my $var (@vars) {
64         my $name= $var->{Name};
65         my $lname= lc $name;
66         $var->{Before}= '' unless exists $var->{Before};
67         $var->{CmpCanon}= sub { $_[0]; } unless exists $var->{CmpCanon};
68         foreach my $val (@{ $var->{Values} }) {
69                 next if ref $val;
70                 $val= [ $val, encode_entities($val) ];
71         }
72         if (exists $ARGS{$lname}) {
73                 $a{$name}= $ARGS{$lname};
74                 my @html= grep { $_->[0] eq $a{$name} } @{ $var->{Values} };
75                 $ahtml{$name}= @html==1 ? $html[0][1] : '???';
76         } else {
77                 $a{$name}= $var->{Values}[0][0];
78                 $ahtml{$name}= $var->{Values}[0][1];
79         }
80 }
81
82 </%perl>
83 <html><head><title><% ucfirst $ahtml{Query} %> - YARRG</title></head><body>
84
85 <a href="<% $m->current_comp()->name() |u %>">YARRG</a> -
86  Yet Another Revenue Research Gatherer
87 |
88 <a href="docs">documentation</a>
89 <p>
90 <%perl>
91
92 my %baseqf;
93 foreach my $var (@vars) {
94         my $lname= lc $var->{Name};
95         next unless exists $ARGS{$lname};
96         $baseqf{$lname}= $ARGS{$lname};
97 }
98
99 my %queryqf;
100 foreach my $var (keys %ARGS) {
101         next unless $var =~
102                 m/^(?:routestring|islandid\d|archipelago\d|debug)$/;
103         my $val= $ARGS{$var};
104         next if $val eq 'none';
105         $queryqf{$var}= $val;
106 }
107
108 my $quri= sub {
109         my $uri= URI->new('lookup');
110         $uri->query_form(@_);
111         $uri->path_query();
112 };
113
114 foreach my $var (@vars) {
115         my $name= $var->{Name};
116         my $lname= lc $var->{Name};
117         my $delim= $var->{Before};
118         my $canon= &{$var->{CmpCanon}}($a{$name});
119         my $cvalix= 0;
120         foreach my $valr (@{ $var->{Values} }) {
121                 print $delim;  $delim= "\n|\n";
122                 my ($value,$html) = @$valr;
123                 my $iscurrent= &{$var->{CmpCanon}}($value) eq $canon;
124                 my $after;
125                 if ($iscurrent) {
126                         print '<b>';
127                         $after= '</b>';
128                 } else {
129                         my %qf= (%baseqf,%queryqf);
130                         delete $qf{$lname};
131                         $qf{$lname}= $value if $cvalix;
132 </%perl>
133 <a href="<% $quri->(%qf) |h %>">
134 <%perl>
135                         $after= '</a>';
136                 }
137                 print $html, $after;
138                 $cvalix++;
139         }
140         print "<p>\n\n";
141 }
142
143 #---------- initial checks, startup, main entry form ----------
144
145 die if $a{Query} =~ m/[^a-z]/;
146
147 dbw_connect($a{Ocean});
148
149 </%perl>
150 <%args>
151 $debug => 0
152 </%args>
153
154 <hr>
155
156 <& "query_$a{Query}", %baseqf, %queryqf, quri => $quri, qa => \%a &>
157
158 <p>
159
160 %#---------- debugging and epilogue ----------
161
162 % if ($debug) {
163 <p>
164 <pre id="debug_log">
165 Debug log:
166 </pre>
167 % }
168
169 <&| script &>
170 function debug (m) {
171 % if ($debug) {
172   var node= document.getElementById('debug_log');
173   node.innerHTML += "\n" + m + "\n";
174 % }
175 }
176 </&script>
177
178 <& footer &>
179
180 <%init>
181 use CommodsWeb;
182 use HTML::Entities;
183 use URI::Escape;
184
185 </%init>