X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FSearchView.pm;h=0ae050529ca0601da056463b11ab5acece6ccf25;hb=23a4e44bedabe5b8b651346cabc2a870c5377a30;hp=ea8a45a4e91f6d4416db9b6792d442d44e150e4a;hpb=e00a6f63ef80f3540a159ef4fdc4bba359dc5596;p=public-inbox.git diff --git a/lib/PublicInbox/SearchView.pm b/lib/PublicInbox/SearchView.pm index ea8a45a4..0ae05052 100644 --- a/lib/PublicInbox/SearchView.pm +++ b/lib/PublicInbox/SearchView.pm @@ -6,10 +6,12 @@ package PublicInbox::SearchView; use strict; use warnings; use PublicInbox::SearchMsg; -use PublicInbox::Hval; +use PublicInbox::Hval qw/ascii_html/; use PublicInbox::View; -use PublicInbox::MID qw(mid2path mid_clean); +use PublicInbox::MID qw(mid2path mid_clean mid_mime); use Email::MIME; +require PublicInbox::Git; +require PublicInbox::Thread; our $LIM = 50; sub sres_top_html { @@ -31,10 +33,10 @@ sub sres_top_html { $total = $mset->get_matches_estimated; }; my $err = $@; - my $res = html_start($q, $ctx) . PublicInbox::Hval::PRE; + my $res = html_start($q, $ctx) . '
';
 	if ($err) {
 		$code = 400;
-		$res .= err_txt($err) . "

" . foot($ctx);
+		$res .= err_txt($ctx, $err) . "

" . foot($ctx);
 	} elsif ($total == 0) {
 		$code = 404;
 		$res .= "\n\n[No results found]

".foot($ctx);
@@ -42,19 +44,21 @@ sub sres_top_html {
 		my $x = $q->{x};
 		return sub { adump($_[0], $mset, $q, $ctx) } if ($x eq 'A');
 
-		$res .= search_nav_top($mset, $q);
+		$res .= search_nav_top($mset, $q) . "\n\n";
 		if ($x eq 't') {
 			return sub { tdump($_[0], $res, $mset, $q, $ctx) };
 		}
-		$res .= "\n\n";
 		dump_mset(\$res, $mset);
-		$res .= search_nav_bot($mset, $q) . "\n\n" . foot($ctx);
+		$res .= '
' . search_nav_bot($mset, $q) . + "\n\n" . foot($ctx); } $res .= ""; [$code, ['Content-Type'=>'text/html; charset=UTF-8'], [$res]]; } +# display non-threaded search results similar to what users expect from +# regular WWW search engines: sub dump_mset { my ($res, $mset) = @_; @@ -65,22 +69,22 @@ sub dump_mset { my $rank = sprintf("%${pad}d", $m->get_rank + 1); my $pct = $m->get_percent; my $smsg = PublicInbox::SearchMsg->load_doc($m->get_document); - my $s = PublicInbox::Hval->new_oneline($smsg->subject); - my $f = $smsg->from_name; - $f = PublicInbox::Hval->new_oneline($f)->as_html; + my $s = ascii_html($smsg->subject); + my $f = ascii_html($smsg->from_name); my $ts = PublicInbox::View::fmt_ts($smsg->ts); my $mid = PublicInbox::Hval->new_msgid($smsg->mid)->as_href; $$res .= qq{$rank. }. - $s->as_html . "\n"; + $s . "\n"; $$res .= "$pfx - by $f @ $ts UTC [$pct%]\n\n"; } } sub err_txt { - my ($err) = @_; - my $u = 'http://xapian.org/docs/queryparser.html'; + my ($ctx, $err) = @_; + my $u = '//xapian.org/docs/queryparser.html'; + $u = PublicInbox::Hval::prurl($ctx->{cgi}->{env}, $u); $err =~ s/^\s*Exception:\s*//; # bad word to show users :P - $err = PublicInbox::Hval->new_oneline($err)->as_html; + $err = ascii_html($err); "\n\nBad query: $err\n" . qq{See $u for Xapian query syntax}; } @@ -102,16 +106,13 @@ sub search_nav_top { my $x = $q->{x}; if ($x eq '') { my $t = $q->qs_html(x => 't'); - $rv .= qq{summary|}; - $rv .= qq{threaded} + $rv .= qq{summary|threaded} } elsif ($q->{x} eq 't') { my $s = $q->qs_html(x => ''); - $rv .= qq{summary|}; - $rv .= qq{threaded}; + $rv .= qq{summary|threaded}; } my $A = $q->qs_html(x => 'A', r => undef); - $rv .= qq{|Atom}; - $rv .= ']'; + $rv .= qq{|Atom feed]}; } sub search_nav_bot { @@ -126,13 +127,13 @@ sub search_nav_bot { if ($n < $total) { my $qs = $q->qs_html(o => $n); - $rv .= qq{, next} + $rv .= qq{, next} } if ($o > 0) { $rv .= $n < $total ? '/' : ', '; my $p = $o - $LIM; my $qs = $q->qs_html(o => ($p > 0 ? $p : 0)); - $rv .= qq{prev}; + $rv .= qq{prev}; } $rv; } @@ -140,7 +141,7 @@ sub search_nav_bot { sub tdump { my ($cb, $res, $mset, $q, $ctx) = @_; my $fh = $cb->([200, ['Content-Type'=>'text/html; charset=UTF-8']]); - $fh->write($res); + $fh->write($res .= ''); my %pct; my @m = map { my $i = $_; @@ -150,32 +151,31 @@ sub tdump { $m; } ($mset->items); - require PublicInbox::Thread; + my @rootset; my $th = PublicInbox::Thread->new(@m); - { - no warnings 'once'; - $Mail::Thread::nosubject = 0; - } $th->thread; - if ($q->{r}) { + if ($q->{r}) { # order by relevance $th->order(sub { sort { (eval { $pct{$b->topmost->messageid} } || 0) <=> (eval { $pct{$a->topmost->messageid} } || 0) } @_; }); - } else { - no warnings 'once'; - $th->order(*PublicInbox::View::rsort_ts); + } else { # order by time (default for threaded view) + $th->order(*PublicInbox::View::sort_ts); } - - require PublicInbox::GitCatFile; - my $git = PublicInbox::GitCatFile->new($ctx->{git_dir}); - my $state = { ctx => $ctx, anchor_idx => 0, pct => \%pct }; + @rootset = $th->rootset; + my $git = $ctx->{git} ||= PublicInbox::Git->new($ctx->{git_dir}); + my $state = { + ctx => $ctx, + anchor_idx => 0, + pct => \%pct, + cur_level => 0, + fh => $fh, + }; $ctx->{searchview} = 1; - tdump_ent($fh, $git, $state, $_, 0) for $th->rootset; - $git = undef; - Email::Address->purge_cache; + tdump_ent($git, $state, $_, 0) for @rootset; + PublicInbox::View::thread_adj_level($state, 0); $fh->write(search_nav_bot($mset, $q). "\n\n" . foot($ctx). ''); @@ -184,26 +184,28 @@ sub tdump { } sub tdump_ent { - my ($fh, $git, $state, $node, $level) = @_; + my ($git, $state, $node, $level) = @_; return unless $node; my $mime = $node->message; if ($mime) { # lazy load the full message from mini_mime: - my $mid = $mime->header('Message-ID'); + my $mid = mid_mime($mime); $mime = eval { my $path = mid2path(mid_clean($mid)); Email::MIME->new($git->cat_file('HEAD:'.$path)); }; } if ($mime) { - PublicInbox::View::index_entry($fh, $mime, $level, $state); + my $end = PublicInbox::View::thread_adj_level($state, $level); + PublicInbox::View::index_entry($mime, $level, $state); + $state->{fh}->write($end) if $end; } else { my $mid = $node->messageid; - $fh->write(PublicInbox::View::ghost_table('', $mid, $level)); + PublicInbox::View::ghost_flush($state, '', $mid, $level); } - tdump_ent($fh, $git, $state, $node->child, $level + 1); - tdump_ent($fh, $git, $state, $node->next, $level); + tdump_ent($git, $state, $node->child, $level + 1); + tdump_ent($git, $state, $node->next, $level); } sub foot { @@ -214,11 +216,10 @@ sub foot { sub html_start { my ($q, $ctx) = @_; - my $query = PublicInbox::Hval->new_oneline($q->{q}); - - my $qh = $query->as_html; + my $qh = ascii_html($q->{'q'}); my $A = $q->qs_html(x => 'A', r => undef); - my $res = "$qh - search results" . + my $res = '' . PublicInbox::Hval::STYLE . + "$qh - search results" . qq{! . qq{} . @@ -226,8 +227,8 @@ sub html_start { $res .= qq{} if $q->{r}; if (my $x = $q->{x}) { - my $xh = PublicInbox::Hval->new_oneline($x)->as_html; - $res .= qq{}; + $x = ascii_html($x); + $res .= qq{}; } $res .= qq{}; @@ -236,10 +237,9 @@ sub html_start { sub adump { my ($cb, $mset, $q, $ctx) = @_; my $fh = $cb->([ 200, ['Content-Type' => 'application/atom+xml']]); - require PublicInbox::GitCatFile; - my $git = PublicInbox::GitCatFile->new($ctx->{git_dir}); + my $git = $ctx->{git} ||= PublicInbox::Git->new($ctx->{git_dir}); my $feed_opts = PublicInbox::Feed::get_feedopts($ctx); - my $x = PublicInbox::Hval->new_oneline($q->{q})->as_html; + my $x = ascii_html($q->{'q'}); $x = qq{$x - search results}; $feed_opts->{atomurl} = $feed_opts->{url} . '?'. $q->qs_html; $feed_opts->{url} .= '?'. $q->qs_html(x => undef); @@ -251,7 +251,6 @@ sub adump { $x = mid2path($x); PublicInbox::Feed::add_to_feed($feed_opts, $fh, $x, $git); } - $git = undef; PublicInbox::Feed::end_feed($fh); } @@ -263,10 +262,11 @@ use PublicInbox::Hval; sub new { my ($class, $cgi) = @_; my $r = $cgi->param('r'); + my ($off) = (($cgi->param('o') || '0') =~ /(\d+)/); bless { q => $cgi->param('q'), x => $cgi->param('x') || '', - o => int($cgi->param('o') || 0) || 0, + o => $off, r => (defined $r && $r ne '0'), }, $class; } @@ -282,7 +282,7 @@ sub qs_html { $self = $tmp; } - my $q = PublicInbox::Hval->new($self->{q})->as_href; + my $q = PublicInbox::Hval->new($self->{'q'})->as_href; $q =~ s/%20/+/g; # improve URL readability my $qs = "q=$q";