chiark / gitweb /
b91e55c461bf6e53bf4749ed79a9e6a83bd16960
[ypp-sc-tools.db-test.git] / yarrg / web / query_route
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 `trade route' query.
33
34
35 </%doc>
36 <%args>
37 $quri
38 $qa
39 $routestring => '';
40 </%args>
41 <%perl>
42
43 my @archipelagoes;
44 my @islandids;
45 my %islandid2;
46
47 </%perl>
48
49 %#---------- textbox, user enters route as string ----------
50 % if (!$qa->{Dropdowns}) {
51
52 <h1>Specify route</h1>
53
54 <form action="<% $quri->() |h %>" method="get">
55
56 <&| qtextstring, qa => $qa, thingstring => 'routestring' &>
57  size=80
58 </&>
59
60 % } else { #---------- dropdowns, user selects from menus ----------
61
62 <%perl>
63 my ($sth,$row);;
64 my @archlistdata;
65 my %islandlistdata;
66 $islandlistdata{'none'}= [ [ "none", "Select island..." ] ];
67
68 my $optionlistmap= sub {
69         my ($optlist, $selected) = @_;
70         my $out='';
71         foreach my $entry (@$optlist) {
72                 $out.= sprintf('<option value="%s" %s>%s</option>',
73                         encode_entities($entry->[0]),
74                         defined $selected && $entry->[0] eq $selected
75                                 ? 'selected' : '',
76                         encode_entities($entry->[1]));
77         }
78         return $out;
79 };
80
81 my $dbh= dbw_connect($qa->{Ocean});
82
83 $sth= $dbh->prepare("SELECT DISTINCT archipelago FROM islands
84                             ORDER BY archipelago;");
85 $sth->execute();
86
87 while ($row=$sth->fetchrow_arrayref) {
88         my ($arch)= @$row;
89         push @archlistdata, [ $arch, $arch ];
90         $islandlistdata{$arch}= [ [ "none", "Whole arch" ] ];
91 }
92
93 $sth= $dbh->prepare("SELECT islandid,islandname,archipelago
94                             FROM islands
95                             ORDER BY islandname;");
96 $sth->execute();
97
98 while ($row=$sth->fetchrow_arrayref) {
99         my $arch= $row->[2];
100         push @{ $islandlistdata{'none'} }, [ @$row ];
101         push @{ $islandlistdata{$arch} }, [ @$row ];
102         $islandid2{$row->[0]}= { Name => $row->[1], Arch => $arch };
103 }
104
105 my %resetislandlistdata;
106 foreach my $arch (keys %islandlistdata) {
107         $resetislandlistdata{$arch}=
108                 $optionlistmap->($islandlistdata{$arch}, '');
109 }
110
111 </%perl>
112
113 <input type=hidden name=dropdowns value="<% $qa->{Dropdowns} |h %>">
114
115 <&| script &>
116 ms_lists= <% to_json_protecttags(\%resetislandlistdata) %>;
117 function ms_Setarch(dd) {
118   debug('ms_SetArch '+dd+' arch='+arch);
119   var arch= document.getElementsByName('archipelago'+dd).item(0).value;
120   var got= ms_lists[arch];
121   if (got == undefined) return; // unknown arch ?  hrm
122   debug('ms_SetArch '+dd+' arch='+arch+' got ok');
123   var select= document.getElementsByName('islandid'+dd).item(0);
124   select.innerHTML= got;
125   debug('ms_SetArch '+dd+' arch='+arch+' innerHTML set');
126 }
127 </&script>
128
129 <table style="table-layout:fixed; width:90%;">
130
131 <tr>
132 %       for my $dd (0..$qa->{Dropdowns}-1) {
133 <td>
134 <select name="archipelago<% $dd %>" onchange="ms_Setarch(<% $dd %>)">
135 <option value="none">Whole ocean</option>
136 <% $optionlistmap->(\@archlistdata, $ARGS{"archipelago$dd"}) %></select></td>
137 %       }
138 </tr>
139
140 <tr>
141 %       for my $dd (0..$qa->{Dropdowns}-1) {
142 %               my $arch= $ARGS{"archipelago$dd"};
143 %               $arch= 'none' if !defined $arch;
144 <td>
145 <select name="islandid<% $dd %>">
146 <% $optionlistmap->($islandlistdata{$arch}, $ARGS{"islandid$dd"}) %>
147 </select></td>
148 %       }
149 </tr>
150
151 </table>
152
153 % } #---------- end of dropdowns, now common middle of page code ----------
154
155 <input type=submit name=submit value="Go">
156 </form>
157
158 <%perl>
159 #========== result computations ==========
160
161 my $results_head;
162 $results_head= sub {
163         print "<h1>Results</h1>\n";
164         $results_head= sub { };
165 };
166
167 #---------- result computation - textstring ----------
168 if (!$qa->{Dropdowns}) {
169   if (length $routestring) {
170         $results_head->();
171         my $rsr= $m->comp('routetextstring',
172                 ocean => $qa->{Ocean},
173                 string => $routestring,
174                 format => 'return'
175         );
176         if (length $rsr->{Error}) {
177                 print encode_entities($rsr->{Error});
178         } else {
179                 foreach my $entry (@{ $rsr->{Results} }) {
180                         push @archipelagoes,
181                                 defined $entry->[1] ? undef : $entry->[0];
182                         push @islandids, $entry->[1];
183                 } 
184         }
185   }
186
187 } else { #---------- results - dropdowns ----------
188
189 my $argorundef= sub {
190         my ($dd,$base) = @_;
191         my $thing= $ARGS{"${base}${dd}"};
192         $thing= undef if defined $thing and $thing eq 'none';
193         return $thing;
194 };
195
196 for my $dd (0..$qa->{Dropdowns}-1) {
197         my $arch= $argorundef->($dd,'archipelago');
198         my $island= $argorundef->($dd,'islandid');
199         next unless defined $arch or defined $island;
200         if (defined $island and defined $arch) {
201                 my $ii= $islandid2{$island};
202                 my $iarch= $ii->{Arch};
203                 if ($iarch ne $arch) {
204                         $results_head->();
205 </%perl>
206  Specified archipelago <% $arch %> but
207  island <% $ii->{Name} %>
208  which is in <% $iarch %>; using the island.<br>
209 <%perl>
210                 }
211                 $arch= undef;
212         }
213         push @archipelagoes, $arch;
214         push @islandids, $island;
215 }
216
217 }#---------- result processing, common stuff
218 </%perl>
219
220 % if (@islandids) {
221 %       $results_head->();
222
223 <& routetrade, islandids => \@islandids, archipelagoes => \@archipelagoes &>
224
225 % }