chiark / gitweb /
Invokes "routetrade" component to get answers
[ypp-sc-tools.db-live.git] / yarrg / web / routetextstring
1 <%args>
2 $ocean
3 $format
4 $ctype => undef
5 $string
6 </%args>
7 <%perl>
8
9 # typical url for this script:
10 #  http://www.chiark.greenend.org.uk/ucgi/~clareb/mason/pirates/routetextstring?format=json&ocean=Midnight&string=d
11
12
13 use CommodsWeb;
14 use HTML::Entities;
15 use JSON;
16
17 db_setocean($ocean);
18 db_connect();
19
20 my $sth= $dbh->prepare("SELECT archipelago,islandid,islandname
21                                 FROM islands WHERE islandname LIKE ?
22         UNION ALL       SELECT DISTINCT archipelago,NULL,archipelago
23                                 FROM islands WHERE archipelago LIKE ?");
24
25 my (@results, $canontext);
26 my ($output, $output_wrong);
27
28 if ($format =~ 'json') {
29         $r->content_type($ctype or $format);
30         $output= sub { print to_json({
31                 success => 1,
32                 show => length $canontext ? encode_entities($canontext)
33                         : '&nbsp;',
34                 })};
35         $output_wrong= sub { print to_json({
36                 success => 0,
37                 show => $_[0],
38                 })};
39 }
40 if ($format =~ 'return') {
41         $output= sub { return { Error => '', Results => \@results }; };
42         $output_wrong= sub { return { Error => $_[0] }; };
43 }
44
45 foreach my $each (split m#[/|,]#, $string) {
46         $each =~ s/^\s*//;  $each =~ s/\s*$//;  $each =~ s/\s+/ /g;
47         next if !length $each;
48         my $err= sub {
49                 my $msg= sprintf $_[0], encode_entities($each);
50                 $output_wrong->($msg);
51                 $m->abort();
52         };
53         my %m;
54         my $results;
55         foreach my $pat ("$each\%", "\%$each\%") {
56                 $sth->execute($pat,$pat);
57                 $results= $sth->fetchall_arrayref();
58                 last if @$results==1;
59                 map { $m{ $_->[2] }=1 } @$results;
60                 $results= undef;
61         }
62         if (!$results) {
63                 if (!%m) {
64                         return $err->('no island or arch matches "%s"');
65                 } elsif (%m > 5) {
66                         return $err->('&nbsp;');
67                 } else {
68                         return $err->('ambiguous island or arch "%s",'.
69                                 ' could be '.join(', ', sort keys %m));
70                 }
71         }
72         push @results, $results->[0];
73 }
74
75 $canontext= join ' | ', map { $_->[2] } @results;
76
77 return $output->();
78
79 </%perl>