Help link for Reliability.
[irspy-moved-to-github.git] / web / htdocs / details / found.mc
index a358498..040318e 100644 (file)
@@ -1,28 +1,88 @@
-%# $Id: found.mc,v 1.4 2006-09-19 11:12:33 mike Exp $
+%# $Id: found.mc,v 1.28 2007-04-26 13:57:17 mike Exp $
 <%once>
-use XML::LibXML;
-use XML::LibXML::XPathContext;
+sub print_navlink {
+    my($params, $cond, $caption, $skip) = @_;
+
+    if ($cond) {
+       print('     <a href="', navlink($params, $caption, $skip),
+             '"', ">$caption</a>\n");
+    } else {
+       print qq[     <span class="disabled">$caption</span>\n];
+    }
+}
+
+sub navlink {
+    my($params, $caption, $skip) = @_;
+    local $params->{_skip} = $skip;
+    my $url = "?" . join("&", map { "$_=" . $params->{$_}  } sort keys %$params);
+    $url = xml_encode($url);
+    return $url;
+}
+
+# Identical to the same-named function in full.mc
+# So maybe this should go into IRSpy::Utils.pm?
+#
+sub calc_reliability {
+    my($xc) = @_;
+
+    my @allpings = $xc->findnodes("i:status/i:probe");
+    my $nall = @allpings;
+    return "[untested]" if $nall == 0;
+    my @okpings = $xc->findnodes('i:status/i:probe[@ok = "1"]');
+    my $nok = @okpings;
+    return "$nok/$nall = " . int(100*$nok/$nall) . "%";
+}
+
+
+# Just make this once; forge the connection on first use
+our $conn = undef;
 </%once>
 <%perl>
-my %params = map { ( $_, $r->param($_)) } $r->param();
-my $query = "";
-foreach my $key (keys %params) {
-    next if $key =~ /^_/;
-    my $val = $params{$key};
-    next if $val eq "";
-    $query .= " and " if $query ne "";
-    $query .= "$key = ($val)";
+my %params = map { ( $_, $r->param($_)) } grep { $r->param($_) } $r->param();
+my $query;
+if ($params{_query}) {
+    $query = $params{_query};
+} else {
+    $query = "";
+    foreach my $key (keys %params) {
+       next if $key =~ /^_/;
+       my $val = $params{$key};
+       next if $val eq "";
+       $query .= " and " if $query ne "";
+       $query .= "$key = ($val)";
+    }
+}
+$query = 'cql.allRecords=1' if $query eq "";
+
+my $sort = $params{"_sort"};
+if ($sort) {
+    my $modifiers = "";
+    if ($sort =~ s/(\/.*)//) {
+       $modifiers = $1;
+    }
+    $query .= " or $sort=/sort";
+    $query .= "-desc" if $params{_desc};
+    $query .= $modifiers;
+    $query .= " 0";
+}
+
+my $tried_to_open = 0;
+if (!defined $conn) {
+  OPEN:
+    $conn = new ZOOM::Connection("localhost:8018/IR-Explain---1");
+    $conn->option(elementSetName => "zeerex");
 }
-$query = 'cql.allRecords=x' if $query eq "";
 
-### We can think about keeping the Connection object open to re-use
-# for multiple requests, but that may not get us much.  Same applies
-# for the XML parser.
-my $conn = new ZOOM::Connection("localhost:1313/IR-Explain---1");
-$conn->option(elementSetName => "zeerex");
-my $parser = new XML::LibXML();
+my $rs;
+eval { $rs = $conn->search(new ZOOM::Query::CQL($query)) };
+if ($@ && ref $@ && $@->isa('ZOOM::Exception') &&
+    $@->code() == ZOOM::Error::CONNECTION_LOST && !$tried_to_open) {
+    $tried_to_open = 1;
+    goto OPEN;
+} elsif ($@) {
+    die $@;
+}
 
-my $rs = $conn->search(new ZOOM::Query::CQL($query));
 my $n = $rs->size();
 
 my $skip = $params{"_skip"} || 0;
@@ -32,9 +92,11 @@ my $first = $skip+1;
 my $last = $first+$count-1;
 $last = $n if $last > $n;
 </%perl>
+     <form method="get" action=""><p>
+      <input type="text" name="_query" size="60" value="<% xml_encode($query) %>"/>
+      <input type="submit" name="_search" value="Search"/>
+     </p></form>
      <p>
-      <b><% $query %></b>
-      <br/>
 % if ($n == 0) {
       No matches
 % } elsif ($first > $n) {
@@ -43,20 +105,8 @@ $last = $n if $last > $n;
 % } else {
       Records <% $first %> to <% $last %> of <% $n %><br/>
 <%perl>
-if ($skip > 0) {
-    $params{_skip} = $count < $skip ? $skip-$count : 0;
-    my $prev = "?" . join("&", map { "$_=" . $params{$_}  } sort keys %params);
-    print qq[     <a href="$prev">Prev</a>\n];
-} else {
-    print qq[     <span class="disabled">Prev</span>\n];
-}
-if ($last < $n) {
-    $params{_skip} = $skip+$count;
-    my $next = "?" . join("&", map { "$_=" . $params{$_}  } sort keys %params);
-    print qq[     <a href="$next">Next</a>\n];
-} else {
-    print qq[     <span class="disabled">Next</span>\n];
-}
+print_navlink(\%params, $skip > 0, "Prev", $count < $skip ? $skip-$count : 0);
+print_navlink(\%params, $last < $n, "Next", $skip+$count);
 </%perl>
 % }
      </p>
@@ -65,37 +115,59 @@ if ($last < $n) {
       <tr class="thleft">
        <th>#</th>
        <th>Title</th>
+       <th>Reliability <& /help/link.mc, help => "info/reliability" &>
+       </th>
        <th>Host</th>
        <th>Port</th>
        <th>DB</th>
        <th></th>
        <th></th>
       </tr>
+% my @ids;
 % foreach my $i ($first .. $last) {
 <%perl>
-my $rec = $rs->record($i-1);
-my $xml = $rec->render();
-my $doc = $parser->parse_string($xml);
-my $root = $doc->getDocumentElement();
-my $xc = XML::LibXML::XPathContext->new($root);
-$xc->registerNs(e => 'http://explain.z3950.org/dtd/2.0/');
-my $title = $xc->find("e:databaseInfo/e:title");
+my $xc = irspy_xpath_context($rs->record($i-1));
+my $title = $xc->find("e:databaseInfo/e:title") || "[UNTITLED]";
+my $reliability = calc_reliability($xc);
 my $host = $xc->find("e:serverInfo/e:host");
 my $port = $xc->find("e:serverInfo/e:port");
 my $db = $xc->find("e:serverInfo/e:database");
 my $id = $xc->find("concat(e:serverInfo/e:host, ':',
                            e:serverInfo/e:port, '/',
                            e:serverInfo/e:database)");
+push @ids, $id;
 </%perl>
       <tr style="background: <% ($i % 2) ? '#ffffc0' : 'white' %>">
        <td><% $i %></td>
-       <td><% $title %></td>
-       <td><% $host %></td>
-       <td><% $port %></td>
-       <td><% $db %></td>
-       <td><a href="<% "/check.html?id=$id" %>">[Check]</a></td>
-       <td><a href="<% "/raw.html?id=$id" %>">[Raw]</a></td>
+       <td><a href="<% xml_encode("/full.html?id=" . uri_escape($id))
+               %>"><% xml_encode($title) %></a></td>
+       <td><% xml_encode($reliability, "", { nbsp => 1 }) %></td>
+       <td><% xml_encode($host, "") %></td>
+       <td><% xml_encode($port, "") %></td>
+       <td><% xml_encode($db, "") %></td>
+       <td>
+       <a href="<% xml_encode("/admin/check.html?id=" . uri_escape($id))
+               %>" title="Test this target">Test</a
+       >&nbsp;<a href="<% xml_encode("/admin/edit.html?op=edit&id=" .
+               uri_escape($id))
+               %>" title="Edit this target's record">Edit</a
+       >&nbsp;<a href="<% xml_encode("/raw.html?id=" . uri_escape($id))
+               %>" title="Raw XML record">XML</a>
+       </td>
       </tr>
-%}
+% }
      </table>
+<%perl>
+print_navlink(\%params, $skip > 0, "Prev", $count < $skip ? $skip-$count : 0);
+print_navlink(\%params, $last < $n, "Next", $skip+$count);
+</%perl>
+     <p>
+      <a href="<% "/admin/check.html?" .
+       xml_encode(join("&", map { "id=" . uri_escape($_) } @ids))
+       %>">[Test all targets on this list]</a>
+     </p>
+     <p>
+      <a href="<% "/stats.html?query=" . xml_encode(uri_escape($query))
+       %>">[Statistics for targets on this list]</a>
+     </p>
 % }