Links to full access-point listing.
[irspy-moved-to-github.git] / web / htdocs / details / full.mc
1 %# $Id: full.mc,v 1.29 2007-06-28 12:00:31 mike Exp $
2 <%args>
3 $id
4 </%args>
5 <%perl>
6 my $conn = new ZOOM::Connection("localhost:8018/IR-Explain---1");
7 $conn->option(elementSetName => "zeerex");
8 my $query = cql_target($id);
9 my $rs = $conn->search(new ZOOM::Query::CQL($query));
10 my $n = $rs->size();
11 if ($n == 0) {
12     $m->comp("/details/error.mc",
13              title => "Error", message => "No such ID '$id'");
14 } else {
15     my $xc = irspy_xpath_context($rs->record(0));
16     my @fields = (
17                   [ Name => "e:databaseInfo/e:title",
18                     lang => "en", primary => "true" ],
19                   [ Country => "i:status/i:country" ],
20                   [ "Last Checked" => "i:status/i:probe[last()]" ],
21                   [ Protocol => "e:serverInfo/\@protocol" ],
22                   [ Host => "e:serverInfo/e:host" ],
23                   [ Port => "e:serverInfo/e:port" ],
24                   [ "Database Name" => "e:serverInfo/e:database" ],
25                   [ "Type of Library" => "i:status/i:libraryType" ],
26 #                 [ "Username (if needed)" => "e:serverInfo/e:authentication/e:user" ],
27 #                 [ "Password (if needed)" => "e:serverInfo/e:authentication/e:password" ],
28                   [ "Server ID" => 'i:status/i:serverImplementationId/@value' ],
29                   [ "Server Name" => 'i:status/i:serverImplementationName/@value' ],
30                   [ "Server Version" => 'i:status/i:serverImplementationVersion/@value' ],
31                   [ Description => "e:databaseInfo/e:description",
32                     lang => "en", primary => "true" ],
33                   [ Author => "e:databaseInfo/e:author" ],
34                   [ Contact => "e:databaseInfo/e:contact" ],
35                   [ "URL to Hosting Organisation" => "i:status/i:hostURL" ],
36                   [ Extent => "e:databaseInfo/e:extent" ],
37                   [ History => "e:databaseInfo/e:history" ],
38                   [ "Language of Records" => "e:databaseInfo/e:langUsage" ],
39                   [ Restrictions => "e:databaseInfo/e:restrictions" ],
40                   [ Subjects => "e:databaseInfo/e:subjects" ],
41                   [ "Implementation ID" => "i:status/i:implementationId" ],
42                   [ "Implementation Name" => "i:status/i:implementationName" ],
43                   [ "Implementation Version" => "i:status/i:implementationVersion" ],
44                   [ "Reliability/reliability" => \&calc_reliability, $xc ],
45                   [ "Services" => \&calc_init_options, $xc ],
46                   [ "Bib-1 Use attributes" => \&calc_ap, $xc, "bib-1" ],
47                   [ "Dan-1 Use attributes" => \&calc_ap, $xc, "dan-1" ],
48                   [ "Operators" => \&calc_boolean, $xc ],
49                   [ "Named Result Sets" => \&calc_nrs, $xc ],
50                   [ "Record syntaxes" => \&calc_recsyn, $xc ],
51                   [ "Explain" => \&calc_explain, $xc ],
52                   );
53     my $title = $xc->find("e:databaseInfo/e:title");
54 </%perl>
55      <h2><% xml_encode($title, "") %></h2>
56      <table class="fullrecord" border="1" cellspacing="0" cellpadding="5" width="100%">
57 <%perl>
58     foreach my $ref (@fields) {
59         my($caption, $xpath, @args) = @$ref;
60         my($data, $linkURL);
61         if (ref $xpath && ref($xpath) eq "CODE") {
62             ($data, $linkURL) = &$xpath($id, @args);
63         } else {
64             $data = $xc->find($xpath);
65         }
66         if ($data) {
67             print "      <tr>\n";
68             $caption =~ s/\/(.*)//;
69             my $help = $1;
70             my($linkstart, $linkend) = ("", "");
71             if (defined $linkURL) {
72                 $linkstart = '<a href="' . xml_encode($linkURL) . '">';
73                 $linkend = "</a>";
74             }
75 </%perl>
76        <th><% xml_encode($caption) %><%
77         !defined $help ? "" : $m->comp("/help/link.mc", help =>"info/$help")
78         %></th>
79        <td><% $linkstart . xml_encode($data) . $linkend %></td>
80       </tr>
81 %       }
82 %   }
83      </table>
84      <p>
85       <a href="<% xml_encode("http://targettest.indexdata.com/targettest/search/index.zap?" .
86         join("&",
87              "target=" . uri_escape_utf8(irspy_identifier2target($id)),
88              "name=" . uri_escape_utf8($title),
89              "attr=" . join(" ", _list_ap($xc, "bib-1")),
90              "formats=" . calc_recsyn($id, $xc, " ")))
91         %>">Search this target.</a>
92      </p>
93 % }
94 <%perl>
95
96 sub calc_reliability {
97     my($id, $xc) = @_;
98
99     my @allpings = $xc->findnodes("i:status/i:probe");
100     my $nall = @allpings;
101     return "[untested]" if $nall == 0;
102     my @okpings = $xc->findnodes('i:status/i:probe[@ok = "1"]');
103     my $nok = @okpings;
104     return "$nok/$nall = " . int(100*$nok/$nall) . "%";
105 }
106
107 sub calc_init_options {
108     my($id, $xc) = @_;
109
110     my @ops;
111     my @nodes = $xc->findnodes('e:configInfo/e:supports/@type');
112     foreach my $node (@nodes) {
113         my $type = $node->value();
114         if ($type =~ s/^z3950_//) {
115             push @ops, $type;
116         }
117     }
118
119     return join(", ", @ops);
120 }
121
122 sub calc_ap {
123     my($id, $xc, $set) = @_;
124
125     my @aps = _list_ap($xc, $set);
126     my $n = @aps;
127     return "[none]" if $n == 0;
128
129     my $res = "";
130     my($first, $last);
131     foreach my $ap (@aps) {
132         if (!defined $first) {
133             $first = $last = $ap;
134         } elsif ($ap == $last+1) {
135             $last++;
136         } else {
137             # Got a complete range
138             $res .= ", " if $res ne "";
139             $res .= "$first";
140             $res .= "-$last" if $last > $first;
141             $first = $last = $ap;
142         }
143     }
144
145     # Leftovers
146     if (defined $first) {
147         $res .= ", " if $res ne "";
148         $res .= "$first";
149         $res .= "-$last" if $last > $first;
150     }
151
152     return ("$n access points: $res",
153             "/ap.html?id=$id&set=$set");
154 }
155
156 sub _list_ap {
157     my($xc, $set) = @_;
158
159     my $expr = 'e:indexInfo/e:index[@search = "true"]/e:map/e:attr[
160         @set = "'.$set.'" and @type = "1"]';
161     my @nodes = $xc->findnodes($expr);
162     return sort { $a <=> $b } map { $_->findvalue(".") } @nodes;
163 }
164
165 sub calc_boolean {
166     my($id, $xc) = @_;
167
168     ### Note that we are currently interrogating an IRSpy extension.
169     #   The standard ZeeRex record should be extended with a
170     #   "supports" type for this.
171     my @nodes = $xc->findnodes('i:status/i:boolean[@ok = "1"]');
172     my $res = join(", ", map { $_->findvalue('@operator') } @nodes);
173     $res = "[none]" if $res eq "";
174     return $res;
175 }
176
177 sub calc_nrs {
178     my($id, $xc) = @_;
179
180     my @nodes = $xc->findnodes('i:status/i:named_resultset[@ok = "1"]');
181     return @nodes ? "Yes" : "No";
182 }
183
184 sub calc_recsyn {
185     my($id, $xc, $sep) = @_;
186     $sep = ", " if !defined $sep;
187
188     my @nodes = $xc->findnodes('e:recordInfo/e:recordSyntax');
189     my $res = join($sep, map { $_->findvalue('@name') } @nodes);
190     $res = "[none]" if $res eq "";
191     return $res;
192 }
193
194 sub calc_explain {
195     my($id, $xc) = @_;
196
197     my @nodes = $xc->findnodes('i:status/i:explain[@ok = "1"]');
198     my $res = join(", ", map { $_->findvalue('@category') } @nodes);
199     $res = "[none]" if $res eq "";
200     return $res;
201 }
202 </%perl>