]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/View.pm
wwwstream: prioritize search in top title bar
[public-inbox.git] / lib / PublicInbox / View.pm
index 054b358003b95edf1c77e49f0004a46d80b1740e..e0d81f0029b9c1a1f5584eb6cf76578b74302f5c 100644 (file)
@@ -8,8 +8,6 @@ use strict;
 use warnings;
 use URI::Escape qw/uri_escape_utf8/;
 use Date::Parse qw/str2time/;
-use Encode::MIME::Header;
-use Plack::Util;
 use PublicInbox::Hval qw/ascii_html/;
 use PublicInbox::Linkify;
 use PublicInbox::MID qw/mid_clean id_compress mid_mime/;
@@ -53,14 +51,22 @@ sub msg_reply {
        my $p_url =
         'https://en.wikipedia.org/wiki/Posting_style#Interleaved_style';
 
+       my $info = '';
+       if (my $url = $ctx->{-inbox}->{infourl}) {
+               $url = PublicInbox::Hval::prurl($ctx->{env}, $url);
+               $info = qq(\n  List information: <a\nhref="$url">$url</a>\n);
+       }
+
        my ($arg, $link) = mailto_arg_link($hdr);
        push @$arg, '/path/to/YOUR_REPLY';
-       $arg = join(" \\\n    ", '', @$arg);
+       $arg = ascii_html(join(" \\\n    ", '', @$arg));
        <<EOF
-<pre
-id=R>You may reply publically to <a
-href=#t>this message</a> via
-plain-text email using any one of the following methods:
+<hr><pre
+id=R><b>Reply instructions:</b>
+
+You may reply publically to <a
+href=#t>this message</a> via plain-text email
+using any one of the following methods:
 
 * Save the following mbox file, import it into your mail client,
   and reply-to-all from there: <a
@@ -69,7 +75,7 @@ href=raw>mbox</a>
   Avoid top-posting and favor interleaved quoting:
   <a
 href="$p_url">$p_url</a>
-
+$info
 * Reply to all the recipients using the <b>--to</b>, <b>--cc</b>,
   and <b>--in-reply-to</b> switches of git-send-email(1):
 
@@ -322,10 +328,12 @@ sub thread_html {
        return missing_thread($ctx) if $nr == 0;
        my $skel = '<hr><pre>';
        $skel .= $nr == 1 ? 'only message in thread' : 'end of thread';
-       $skel .= ", back to <a\nhref=\"../../\">index</a>";
-       $skel .= "\n<a\nid=t>$nr+ messages in thread:</a> (download: ";
-       $skel .= "<a\nhref=\"../t.mbox.gz\">mbox.gz</a>";
+       $skel .= ", back to <a\nhref=\"../../\">index</a>\n\n";
+       $skel .= "<b\nid=t>Thread overview:</b> ";
+       $skel .= $nr == 1 ? '(only message)' : "$nr+ messages";
+       $skel .= " (download: <a\nhref=\"../t.mbox.gz\">mbox.gz</a>";
        $skel .= " / follow: <a\nhref=\"../t.atom\">Atom feed</a>)\n";
+       $skel .= "-- links below jump to the message on this page --\n";
        $ctx->{-upfx} = '../../';
        $ctx->{cur_level} = 0;
        $ctx->{dst} = \$skel;
@@ -519,6 +527,7 @@ sub thread_skel {
                        qq(/ <a\nhref="${tpfx}t.atom">Atom feed</a>);
 
        my $parent = in_reply_to($hdr);
+       $$dst .= "\n<b>Thread overview: </b>";
        if ($nr <= 1) {
                if (defined $parent) {
                        $$dst .= "($expand)\n ";
@@ -610,15 +619,15 @@ sub mailto_arg_link {
        my $subj = $hdr->header('Subject') || '';
        $subj = "Re: $subj" unless $subj =~ /\bRe:/i;
        my $mid = $hdr->header_raw('Message-ID');
-       push @arg, '--in-reply-to='.ascii_html(squote_maybe(mid_clean($mid)));
+       push @arg, '--in-reply-to='.squote_maybe(mid_clean($mid));
        my $irt = uri_escape_utf8($mid);
        delete $cc{$to};
-       push @arg, '--to=' . ascii_html($to);
+       push @arg, "--to=$to";
        $to = uri_escape_utf8($to);
        $subj = uri_escape_utf8($subj);
-       my $cc = join(',', sort values %cc);
-       push @arg, '--cc=' . ascii_html($cc);
-       $cc = uri_escape_utf8($cc);
+       my @cc = sort values %cc;
+       push(@arg, map { "--cc=$_" } @cc);
+       my $cc = uri_escape_utf8(join(',', @cc));
        my $href = "mailto:$to?In-Reply-To=$irt&Cc=${cc}&Subject=$subj";
        $href =~ s/%20/+/g;
 
@@ -841,84 +850,91 @@ sub _tryload_ghost ($$) {
 }
 
 # accumulate recent topics if search is supported
-# returns 1 if done, undef if not
-sub add_topic {
+# returns 200 if done, 404 if not
+sub acc_topic {
        my ($ctx, $level, $node) = @_;
        my $srch = $ctx->{srch};
        my $mid = $node->messageid;
        my $x = $node->message || _tryload_ghost($srch, $mid);
        my ($subj, $ts);
+       my $topic;
        if ($x) {
                $x = $x->header_obj;
-               $subj = $x->header('Subject');
+               $subj = $x->header('Subject') || '';
                $subj = $srch->subject_normalized($subj);
                $ts = $x->header('X-PI-TS');
-       } else { # ghost message, do not bump level
-               $ts = -666;
-               $subj = "<$mid>";
-       }
-       if (++$ctx->{subjs}->{$subj} == 1) {
-               push @{$ctx->{order}}, [ $level, $subj ];
-       }
-       my $exist = $ctx->{latest}->{$subj};
-       if (!$exist || $exist->[1] < $ts) {
-               $ctx->{latest}->{$subj} = [ $mid, $ts ];
+               if ($level == 0) {
+                       $topic = [ $ts, 1, { $subj => $mid }, $subj ];
+                       $ctx->{-cur_topic} = $topic;
+                       push @{$ctx->{order}}, $topic;
+                       return;
+               }
+
+               $topic = $ctx->{-cur_topic}; # should never be undef
+               $topic->[0] = $ts if $ts > $topic->[0];
+               $topic->[1]++;
+               my $seen = $topic->[2];
+               if (scalar(@$topic) == 3) { # parent was a ghost
+                       push @$topic, $subj;
+               } elsif (!$seen->{$subj}) {
+                       push @$topic, $level, $subj;
+               }
+               $seen->{$subj} = $mid; # latest for subject
+       } else { # ghost message
+               return if $level != 0; # ignore child ghosts
+               $topic = [ -666, 0, {} ];
+               $ctx->{-cur_topic} = $topic;
+               push @{$ctx->{order}}, $topic;
        }
 }
 
-sub topics {
+sub dump_topics {
        my ($ctx) = @_;
-       my $order = $ctx->{order};
-       my $subjs = $ctx->{subjs};
-       my $latest = $ctx->{latest};
+       my $order = delete $ctx->{order}; # [ ts, subj1, subj2, subj3, ... ]
        if (!@$order) {
                $ctx->{-html_tip} = '<pre>[No topics in range]</pre>';
                return 404;
        }
-       my $pfx;
-       my $prev = 0;
-       my $prev_attr = '';
-       my $cur;
-       my @recent;
-       while (defined(my $info = shift @$order)) {
-               my ($level, $subj) = @$info;
-               my $n = delete $subjs->{$subj};
-               my ($mid, $ts) = @{delete $latest->{$subj}};
-               my $href = PublicInbox::Hval->new_msgid($mid)->as_href;
-               $pfx = indent_for($level);
-               my $nl = $level == $prev ? "\n" : '';
-               if ($nl && $cur) {
-                       push @recent, $cur;
-                       $cur = undef;
-               }
-               $cur ||= [ $ts, '' ];
-               $cur->[0] = $ts if $ts > $cur->[0];
-               $cur->[1] .= $nl . $pfx . th_pfx($level);
-               if ($ts == -666) { # ghost
-                       $cur->[1] .= ghost_parent('', $mid) . "\n";
-                       next; # child will have mbox / atom link
-               }
 
-               $subj = PublicInbox::Hval->new($subj)->as_html;
-               $cur->[1] .= "<a\nhref=\"$href/T/#u\"><b>$subj</b></a>\n";
+       my @out;
+
+       # sort by recency, this allows new posts to "bump" old topics...
+       foreach my $topic (sort { $b->[0] <=> $a->[0] } @$order) {
+               my ($ts, $n, $seen, $top, @ex) = @$topic;
+               @$topic = ();
+               next unless defined $top;  # ghost topic
+               my $mid = delete $seen->{$top};
+               my $href = PublicInbox::Hval->new_msgid($mid)->as_href;
+               $top = PublicInbox::Hval->new($top)->as_html;
                $ts = fmt_ts($ts);
-               my $attr = " $ts UTC";
 
                # $n isn't the total number of posts on the topic,
                # just the number of posts in the current results window
-               $n = $n == 1 ? '' : " ($n+ messages)";
-
-               if ($level == 0 || $attr ne $prev_attr) {
-                       my $mbox = qq(<a\nhref="$href/t.mbox.gz">mbox.gz</a>);
-                       my $atom = qq(<a\nhref="$href/t.atom">Atom</a>);
-                       $pfx .= INDENT if $level > 0;
-                       $cur->[1] .= $pfx . $attr . $n . " - $mbox / $atom\n";
-                       $prev_attr = $attr;
+               my $anchor;
+               if ($n == 1) {
+                       $n = '';
+                       $anchor = '#u'; # top of only message
+               } else {
+                       $n = " ($n+ messages)";
+                       $anchor = '#t'; # thread skeleton
+               }
+
+               my $mbox = qq(<a\nhref="$href/t.mbox.gz">mbox.gz</a>);
+               my $atom = qq(<a\nhref="$href/t.atom">Atom</a>);
+               my $s = "<a\nhref=\"$href/T/$anchor\"><b>$top</b></a>\n" .
+                       " $ts UTC $n - $mbox / $atom\n";
+               for (my $i = 0; $i < scalar(@ex); $i += 2) {
+                       my $level = $ex[$i];
+                       my $sub = $ex[$i + 1];
+                       $mid = delete $seen->{$sub};
+                       $sub = PublicInbox::Hval->new($sub)->as_html;
+                       $href = PublicInbox::Hval->new_msgid($mid)->as_href;
+                       $s .= indent_for($level) . TCHILD;
+                       $s .= "<a\nhref=\"$href/T/#u\">$sub</a>\n";
                }
+               push @out, $s;
        }
-       push @recent, $cur if $cur;
-       @recent = map { $_->[1] } sort { $b->[0] <=> $a->[0] } @recent;
-       $ctx->{-html_tip} = join('', '<pre>', @recent, '</pre>');
+       $ctx->{-html_tip} = '<pre>' . join("\n", @out) . '</pre>';
        200;
 }
 
@@ -949,21 +965,18 @@ sub index_nav { # callback for WwwStream
 sub index_topics {
        my ($ctx) = @_;
        my ($off) = (($ctx->{qp}->{o} || '0') =~ /(\d+)/);
-       my $order = $ctx->{order} = [];
-       $ctx->{subjs} = {};
-       $ctx->{latest} = {};
-       my $max = 25;
-       my %opts = ( offset => $off, limit => $max * 4 );
-       while (scalar @{$ctx->{order}} < $max) {
-               my $sres = $ctx->{srch}->query('', \%opts);
-               my $nr = scalar @{$sres->{msgs}} or last;
+       my $opts = { offset => $off, limit => 200 };
+
+       $ctx->{order} = [];
+       my $sres = $ctx->{srch}->query('', $opts);
+       my $nr = scalar @{$sres->{msgs}};
+       if ($nr) {
                $sres = load_results($sres);
-               walk_thread(thread_results($sres), $ctx, *add_topic);
-               $opts{offset} += $nr;
+               walk_thread(thread_results($sres), $ctx, *acc_topic);
        }
-       $ctx->{-next_o} = $opts{offset};
+       $ctx->{-next_o} = $off+ $nr;
        $ctx->{-cur_o} = $off;
-       PublicInbox::WwwStream->response($ctx, topics($ctx), *index_nav);
+       PublicInbox::WwwStream->response($ctx, dump_topics($ctx), *index_nav);
 }
 
 sub thread_adj_level {