X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FSearchView.pm;h=6b36f795e69539c4984c330c48cc3cd510f47770;hb=af0b0fb7a454470a32c452119d0392e0dedb3fe1;hp=7521a66ddb82c51bc2a6b9b7b1b77772403d2531;hpb=6c853f5256f3a324c018a37a9e8a6b9fc8fdc063;p=public-inbox.git diff --git a/lib/PublicInbox/SearchView.pm b/lib/PublicInbox/SearchView.pm index 7521a66d..6b36f795 100644 --- a/lib/PublicInbox/SearchView.pm +++ b/lib/PublicInbox/SearchView.pm @@ -1,11 +1,11 @@ -# Copyright (C) 2015-2020 all contributors +# Copyright (C) 2015-2021 all contributors # License: AGPL-3.0+ # # Displays search results for the web interface package PublicInbox::SearchView; use strict; use v5.10.1; -use List::Util qw(max); +use List::Util qw(min max); use URI::Escape qw(uri_unescape); use PublicInbox::Smsg; use PublicInbox::Hval qw(ascii_html obfuscate_addrs mid_href fmt_ts); @@ -14,7 +14,7 @@ use PublicInbox::WwwAtomStream; use PublicInbox::WwwStream qw(html_oneshot); use PublicInbox::SearchThread; use PublicInbox::SearchQuery; -use PublicInbox::Search qw(mdocid); +use PublicInbox::Search; my %rmap_inc; sub mbox_results { @@ -30,7 +30,7 @@ sub mbox_results { sub sres_top_html { my ($ctx) = @_; - my $srch = $ctx->{-inbox}->search or + my $srch = $ctx->{ibx}->isrch or return PublicInbox::WWW::need($ctx, 'Search'); my $q = PublicInbox::SearchQuery->new($ctx->{qp}); my $x = $q->{x}; @@ -47,7 +47,6 @@ sub sres_top_html { my $opts = { limit => $q->{l}, offset => $o, - mset => 1, relevance => $q->{r}, thread => $q->{t}, asc => $asc, @@ -55,7 +54,7 @@ sub sres_top_html { my ($mset, $total, $err, $html); retry: eval { - $mset = $srch->query($query, $opts); + $mset = $srch->mset($query, $opts); $total = $mset->get_matches_estimated; }; $err = $@; @@ -94,10 +93,11 @@ sub mset_summary { my $pad = length("$total"); my $pfx = ' ' x $pad; my $res = \($ctx->{-html_tip}); - my $ibx = $ctx->{-inbox}; + my $ibx = $ctx->{ibx}; my $obfs_ibx = $ibx->{obfuscate} ? $ibx : undef; - my @nums = @{$ibx->search->mset_to_artnums($mset)}; + my @nums = @{$ibx->isrch->mset_to_artnums($mset)}; my %num2msg = map { $_->{num} => $_ } @{$ibx->over->get_all(@nums)}; + my ($min, $max); foreach my $m ($mset->items) { my $rank = sprintf("%${pad}d", $m->get_rank + 1); @@ -112,6 +112,11 @@ sub mset_summary { }; $ctx->{-t_max} //= $smsg->{ts}; + # only when sorting by relevance, ->items is always + # ordered descending: + $max //= $pct; + $min = $pct; + my $s = ascii_html($smsg->{subject}); my $f = ascii_html($smsg->{from_name}); if ($obfs_ibx) { @@ -125,6 +130,10 @@ sub mset_summary { $s . "\n"; $$res .= "$pfx - by $f @ $date UTC [$pct%]\n\n"; } + if ($q->{r}) { # for descriptions in search_nav_bot + $q->{-min_pct} = $min; + $q->{-max_pct} = $max; + } $$res .= search_nav_bot($mset, $q); undef; } @@ -147,7 +156,7 @@ sub path2inc ($) { sub err_txt { my ($ctx, $err) = @_; - my $u = $ctx->{-inbox}->base_url($ctx->{env}) . '_/text/help/'; + my $u = $ctx->{ibx}->base_url($ctx->{env}) . '_/text/help/'; $err =~ s/^\s*Exception:\s*//; # bad word to show users :P $err =~ s!(\S+)!path2inc($1)!sge; $err = ascii_html($err); @@ -192,7 +201,7 @@ sub search_nav_top { } my $A = $q->qs_html(x => 'A', r => undef); $rv .= qq{|Atom feed]}; - if ($ctx->{-inbox}->search->has_threadid) { + if ($ctx->{ibx}->isrch->has_threadid) { $rv .= qq{\n\t\t\tdownload mbox.gz: } . # we set name=z w/o using it since it seems required for # lynx (but works fine for w3m). @@ -218,42 +227,46 @@ sub search_nav_bot { my $beg = $off + 1; if ($beg <= $end) { - $rv .= "Results $beg-$end of $total"; - $rv .= ' (estimated)' if $end != $total; + my $approx = $end == $total ? '' : '~'; + $rv .= "Results $beg-$end of $approx$total"; } else { $rv .= "No more results, only $total"; } - my ($next, $join, $prev); + my ($next, $join, $prev, $nd, $pd); if ($o >= 0) { # sort descending my $n = $o + $l; if ($n < $total) { $next = $q->qs_html(o => $n, l => $l); + $nd = $q->{r} ? "[<= $q->{-min_pct}%]" : '(older)'; } if ($o > 0) { - $join = $n < $total ? '/' : ' '; + $join = $n < $total ? ' | ' : "\t"; my $p = $o - $l; $prev = $q->qs_html(o => ($p > 0 ? $p : 0)); + $pd = $q->{r} ? "[>= $q->{-max_pct}%]" : '(newer)'; } } else { # o < 0, sort ascending my $n = $o - $l; if (-$n < $total) { $next = $q->qs_html(o => $n, l => $l); + $nd = $q->{r} ? "[<= $q->{-min_pct}%]" : '(newer)'; } if ($o < -1) { - $join = -$n < $total ? '/' : ' '; + $join = -$n < $total ? ' | ' : "\t"; my $p = $o + $l; $prev = $q->qs_html(o => ($p < 0 ? $p : 0)); + $pd = $q->{r} ? "[>= $q->{-max_pct}%]" : '(older)'; } } - $rv .= qq{ next} if $next; + $rv .= qq{ next $nd} if $next; $rv .= $join if $join; - $rv .= qq{prev} if $prev; + $rv .= qq{prev $pd} if $prev; my $rev = $q->qs_html(o => $o < 0 ? 0 : -1); - $rv .= qq{ | reverse results}; + $rv .= qq{ | reverse}; } sub sort_relevance { @@ -273,12 +286,16 @@ sub get_pct ($) { sub mset_thread { my ($ctx, $mset, $q) = @_; - my $ibx = $ctx->{-inbox}; - my $nshard = $ibx->search->{nshard} // 1; - my %pct = map { mdocid($nshard, $_) => get_pct($_) } $mset->items; - my $msgs = $ibx->over->get_all(keys %pct); - $_->{pct} = $pct{$_->{num}} for @$msgs; + my $ibx = $ctx->{ibx}; + my @pct = map { get_pct($_) } $mset->items; + my $msgs = $ibx->isrch->mset_to_smsg($ibx, $mset); + my $i = 0; + $_->{pct} = $pct[$i++] for @$msgs; my $r = $q->{r}; + if ($r) { # for descriptions in search_nav_bot + $q->{-min_pct} = min(@pct); + $q->{-max_pct} = max(@pct); + } my $rootset = PublicInbox::SearchThread::thread($msgs, $r ? \&sort_relevance : \&PublicInbox::View::sort_ds, $ctx); @@ -336,7 +353,7 @@ sub ctx_prepare { sub adump { my ($cb, $mset, $q, $ctx) = @_; - $ctx->{ids} = $ctx->{-inbox}->search->mset_to_artnums($mset); + $ctx->{ids} = $ctx->{ibx}->isrch->mset_to_artnums($mset); $ctx->{search_query} = $q; # used by WwwAtomStream::atom_header PublicInbox::WwwAtomStream->response($ctx, 200, \&adump_i); } @@ -345,7 +362,7 @@ sub adump { sub adump_i { my ($ctx) = @_; while (my $num = shift @{$ctx->{ids}}) { - my $smsg = eval { $ctx->{-inbox}->over->get_art($num) } or next; + my $smsg = eval { $ctx->{ibx}->over->get_art($num) } or next; return $smsg; } }