1 # Copyright (C) 2014, Eric Wong <normalperson@yhbt.net> and all contributors
2 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
3 package PublicInbox::View;
6 use URI::Escape qw/uri_escape_utf8/;
7 use Date::Parse qw/str2time/;
8 use Encode qw/find_encoding/;
9 use Encode::MIME::Header;
10 use Email::MIME::ContentType qw/parse_content_type/;
11 use PublicInbox::Hval;
12 use PublicInbox::MID qw/mid_clean mid_compress mid2path/;
16 # TODO: make these constants tunable
17 use constant MAX_INLINE_QUOTED => 12; # half an 80x24 terminal
18 use constant MAX_TRUNC_LEN => 72;
19 use constant PRE_WRAP => "<pre\nstyle=\"white-space:pre-wrap\">";
20 use constant T_ANCHOR => '#u';
22 *ascii_html = *PublicInbox::Hval::ascii_html;
24 my $enc_utf8 = find_encoding('UTF-8');
28 my ($ctx, $mime, $full_pfx, $footer) = @_;
29 if (defined $footer) {
30 $footer = "\n" . $footer;
34 my $srch = $ctx->{srch} if $ctx;
35 headers_to_html_header($mime, $full_pfx, $srch) .
36 multipart_text_as_html($mime, $full_pfx) .
38 html_footer($mime, 1, $full_pfx, $ctx) .
40 '</pre></body></html>';
44 my ($class, $mime, $full_pfx) = @_;
46 PRE_WRAP . multipart_text_as_html($mime, $full_pfx) . '</pre>';
49 # this is already inside a <pre>
51 my ($fh, $mime, $level, $state) = @_;
52 my $midx = $state->{anchor_idx}++;
53 my $ctx = $state->{ctx};
54 my $srch = $ctx->{srch};
55 my ($prev, $next) = ($midx - 1, $midx + 1);
57 my $enc = enc_for($mime->header("Content-Type"));
58 my $subj = $mime->header('Subject');
59 my $header_obj = $mime->header_obj;
61 my $mid_raw = $header_obj->header('Message-ID');
62 my $id = anchor_for($mid_raw);
63 my $seen = $state->{seen};
64 $seen->{$id} = "#$id"; # save the anchor for later
66 my $mid = PublicInbox::Hval->new_msgid($mid_raw);
67 my $from = PublicInbox::Hval->new_oneline($mime->header('From'))->raw;
68 my @from = Email::Address->parse($from);
69 $from = $from[0]->name;
71 $from = PublicInbox::Hval->new_oneline($from)->as_html;
72 $subj = PublicInbox::Hval->new_oneline($subj)->as_html;
73 my $more = 'permalink';
74 my $root_anchor = $state->{root_anchor};
75 my $path = $root_anchor ? '../../' : '';
76 my $href = $mid->as_href;
77 my $irt = $header_obj->header('In-Reply-To');
78 my ($anchor_idx, $anchor, $t_anchor);
80 $anchor_idx = anchor_for($irt);
81 $anchor = $seen->{$anchor_idx};
87 $subj = "<a\nhref=\"${path}t/$href/#u\">$subj</a>";
89 if ($root_anchor && $root_anchor eq $id) {
90 $subj = "<u\nid=\"u\">$subj</u>";
93 my $ts = $mime->header('X-PI-TS');
94 unless (defined $ts) {
95 $ts = msg_timestamp($mime);
97 $ts = POSIX::strftime('%Y-%m-%d %H:%M', gmtime($ts));
99 my $rv = "<table\nsummary=l$level><tr>";
101 $rv .= '<td><pre>' . (' ' x $level) . '</pre></td>';
103 $rv .= "<td\nid=s$midx>" . PRE_WRAP;
104 $rv .= "<b\nid=\"$id\">$subj</b>\n";
105 $rv .= "- by $from @ $ts UTC - ";
106 $rv .= "<a\nhref=\"#s$next\">next</a>";
108 $rv .= "/<a\nhref=\"#s$prev\">prev</a>";
110 $fh->write($rv .= "\n\n");
112 my ($fhref, $more_ref);
113 my $mhref = "${path}m/$href/";
115 $fhref = "${path}f/$href/";
118 # scan through all parts, looking for displayable text
119 $mime->walk_parts(sub {
120 index_walk($fh, $_[0], $enc, \$part_nr, $fhref, $more_ref);
124 my $txt = "${path}m/$href/raw";
125 $rv = "\n<a\nhref=\"$mhref\">$more</a> <a\nhref=\"$txt\">raw</a> ";
126 $rv .= html_footer($mime, 0, undef, $ctx);
129 unless (defined $anchor) {
130 my $v = PublicInbox::Hval->new_msgid($irt);
132 $anchor = "${path}m/$v/";
133 $seen->{$anchor_idx} = $anchor;
135 $rv .= " <a\nhref=\"$anchor\">parent</a>";
139 $rv .= " <a\nhref=\"${path}t/$href/$t_anchor\">" .
143 $fh->write($rv .= '</pre></td></tr></table>');
147 my ($ctx, $foot, $srch) = @_;
148 sub { emit_thread_html($_[0], $ctx, $foot, $srch) }
151 # only private functions below.
153 sub emit_thread_html {
154 my ($cb, $ctx, $foot, $srch) = @_;
155 my $mid = mid_compress($ctx->{mid});
156 my $res = $srch->get_thread($mid);
157 my $msgs = load_results($res);
158 my $nr = scalar @$msgs;
159 return missing_thread($cb) if $nr == 0;
160 my $fh = $cb->([200,['Content-Type'=>'text/html; charset=UTF-8']]);
161 my $th = thread_results($msgs);
165 root_anchor => anchor_for($mid),
169 require PublicInbox::GitCatFile;
170 my $git = PublicInbox::GitCatFile->new($ctx->{git_dir});
171 thread_entry($fh, $git, $state, $_, 0) for $th->rootset;
173 my $final_anchor = $state->{anchor_idx};
174 my $next = "<a\nid=\"s$final_anchor\">";
175 $next .= $final_anchor == 1 ? 'only message in' : 'end of';
176 $next .= " thread</a>, back to <a\nhref=\"../../\">index</a>\n";
177 # $mid = PublicInbox::Hval->new_msgid($mid)->as_href;
178 $next .= "download: <a\nhref=\"mbox.gz\">mbox.gz</a>\n\n";
179 $fh->write("<hr />" . PRE_WRAP . $next . $foot .
180 "</pre></body></html>");
185 my ($fh, $part, $enc, $part_nr, $fhref, $more) = @_;
186 my $s = add_text_body($enc, $part, $part_nr, $fhref);
189 # drop the remainder of git patches, they're usually better
190 # to review when the full message is viewed
191 $s =~ s!^---+\n.*\z!!ms and $$more = 'more...';
194 $s =~ s/^-- \n.*\z//ms and $$more = 'more...';
197 # kill any leading or trailing whitespace lines
202 # kill per-line trailing whitespace
203 $s =~ s/[ \t]+$//sgm;
204 $s .= "\n" unless $s =~ /\n\z/s;
210 my ($ct, $default) = @_;
211 $default ||= $enc_utf8;
212 defined $ct or return $default;
213 my $ct_parsed = parse_content_type($ct);
215 if (my $charset = $ct_parsed->{attributes}->{charset}) {
216 my $enc = find_encoding($charset);
223 sub multipart_text_as_html {
224 my ($mime, $full_pfx, $srch) = @_;
227 my $enc = enc_for($mime->header("Content-Type"));
229 # scan through all parts, looking for displayable text
230 $mime->walk_parts(sub {
232 $rv .= add_text_body($enc, $part, \$part_nr, $full_pfx);
238 sub add_filename_line {
242 $fn = $enc->decode($fn);
244 $pad x= ($len/2) if ($len > 0);
245 "$pad " . ascii_html($fn) . " $pad\n";
248 my $LINK_RE = qr!\b((?:ftp|https?|nntp)://[@\w\+\&\?\.\%\;/#=-]+)!;
251 # no newlines added here since it'd break the splitting we do
253 $_[0] =~ s!$LINK_RE!<a\nhref="$1">$1</a>!g;
257 my ($quot, $n, $part_nr, $full_pfx, $final) = @_;
260 if (!$final && scalar(@$quot) <= MAX_INLINE_QUOTED) {
262 my $rv = join('', map { linkify($_); $_ } @$quot);
267 # show a short snippet of quoted text and link to full version:
268 @$quot = map { s/^(?:>\s*)+//gm; $_ } @$quot;
269 my $cur = join(' ', @$quot);
270 @$quot = split(/\s+/, $cur);
273 my $tmp = shift(@$quot);
274 my $len = length($tmp) + length($cur);
275 if ($len > MAX_TRUNC_LEN) {
280 } while (@$quot && length($cur) < MAX_TRUNC_LEN);
282 $cur =~ s/ \z/ .../s;
284 "> [<a\nhref=\"$full_pfx#q${part_nr}_$nr\">$cur</a>]\n";
286 # show everything in the full version with anchor from
287 # short version (see above)
289 my $rv = "<a\nid=q${part_nr}_$nr></a>";
290 $rv .= join('', map { linkify($_); $_ } @$quot);
297 my ($enc_msg, $part, $part_nr, $full_pfx) = @_;
298 return '' if $part->subparts;
300 my $ct = $part->content_type;
301 # account for filter bugs...
302 if (defined $ct && $ct =~ m!\btext/[xh]+tml\b!i) {
306 my $enc = enc_for($ct, $enc_msg);
311 $s = $enc->decode($s);
313 my @lines = split(/^/m, $s);
317 my $fn = $part->filename;
318 defined($fn) or $fn = "part #" . ($$part_nr + 1);
319 $s .= add_filename_line($enc, $fn);
323 while (defined(my $cur = shift @lines)) {
324 if ($cur !~ /^>/) {
325 # show the previously buffered quote inline
327 $s .= flush_quote(\@quot, \$n, $$part_nr,
338 $s .= flush_quote(\@quot, \$n, $$part_nr, $full_pfx, 1) if scalar @quot;
339 $s .= "\n" unless $s =~ /\n\z/s;
344 sub headers_to_html_header {
345 my ($mime, $full_pfx, $srch) = @_;
349 my $header_obj = $mime->header_obj;
350 my $mid = $header_obj->header('Message-ID');
351 $mid = PublicInbox::Hval->new_msgid($mid);
352 my $mid_href = $mid->as_href;
353 foreach my $h (qw(From To Cc Subject Date)) {
354 my $v = $mime->header($h);
355 defined($v) && length($v) or next;
356 $v = PublicInbox::Hval->new_oneline($v);
359 my @from = Email::Address->parse($v->raw);
360 $title[1] = ascii_html($from[0]->name);
361 } elsif ($h eq 'Subject') {
362 $title[0] = $v->as_html;
364 $rv .= "$h: <a\nhref=\"../../t/$mid_href/\">";
365 $rv .= $v->as_html . "</a>\n";
369 $rv .= "$h: " . $v->as_html . "\n";
373 $rv .= 'Message-ID: <' . $mid->as_html . '> ';
374 my $raw_ref = $full_pfx ? 'raw' : "../../m/$mid_href/raw";
375 $rv .= "(<a\nhref=\"$raw_ref\">raw</a>)\n";
377 my $irt = $header_obj->header('In-Reply-To');
379 my $v = PublicInbox::Hval->new_msgid($irt);
380 my $html = $v->as_html;
381 my $href = $v->as_href;
382 $rv .= "In-Reply-To: <";
383 $rv .= "<a\nhref=\"../$href/\">$html</a>>\n";
386 my $refs = $header_obj->header('References');
388 # avoid redundant URLs wasting bandwidth
390 $seen{mid_clean($irt)} = 1 if defined $irt;
392 my @raw_refs = ($refs =~ /<([^>]+)>/g);
393 foreach my $ref (@raw_refs) {
396 push @refs, linkify_ref($ref);
400 $rv .= 'References: '. join(' ', @refs) . "\n";
406 ("<html><head><title>". join(' - ', @title) .
407 '</title></head><body>' . PRE_WRAP . $rv);
411 my ($mime, $standalone, $full_pfx, $ctx) = @_;
412 my %cc; # everyone else
413 my $to; # this is the From address
415 foreach my $h (qw(From To Cc)) {
416 my $v = $mime->header($h);
417 defined($v) && length($v) or next;
418 my @addrs = Email::Address->parse($v);
419 foreach my $recip (@addrs) {
420 my $address = $recip->address;
421 my $dst = lc($address);
422 $cc{$dst} ||= $address;
426 Email::Address->purge_cache if $standalone;
428 my $subj = $mime->header('Subject') || '';
429 $subj = "Re: $subj" unless $subj =~ /\bRe:/i;
430 my $mid = $mime->header('Message-ID');
431 my $irt = uri_escape_utf8($mid);
433 $to = uri_escape_utf8($to);
434 $subj = uri_escape_utf8($subj);
436 my $cc = uri_escape_utf8(join(',', sort values %cc));
437 my $href = "mailto:$to?In-Reply-To=$irt&Cc=${cc}&Subject=$subj";
439 my $srch = $ctx->{srch} if $ctx;
440 my $idx = $standalone ? " <a\nhref=\"../../\">index</a>" : '';
442 $irt = $mime->header('In-Reply-To') || '';
443 $mid = mid_compress(mid_clean($mid));
444 my $t_anchor = length $irt ? T_ANCHOR : '';
445 $idx = " <a\nhref=\"../../t/$mid/$t_anchor\">".
446 "threadlink</a>$idx";
447 my $res = $srch->get_followups($mid);
448 if (my $c = $res->{total}) {
449 my $nr = scalar @{$res->{msgs}};
451 $c = "$nr of $c followups";
453 $c = $c == 1 ? '1 followup' : "$c followups";
456 $res->{srch} = $srch;
457 thread_followups(\$idx, $mime, $res);
459 $idx .= "\n(no followups, yet)\n";
462 $irt = PublicInbox::Hval->new_msgid($irt);
463 $irt = $irt->as_href;
464 $irt = "<a\nhref=\"../$irt/\">parent</a> ";
466 $irt = ' ' x length('parent ');
472 "$irt<a\nhref=\"" . ascii_html($href) . '">reply</a>' . $idx;
476 my $v = PublicInbox::Hval->new_msgid($_[0]);
477 my $html = $v->as_html;
478 my $href = $v->as_href;
479 "<<a\nhref=\"../$href/\">$html</a>>";
485 if ($id !~ /\A[a-f0-9]{40}\z/) {
486 $id = mid_compress(mid_clean($id), 1);
492 my ($dst, $root, $node, $level) = @_;
494 # $root = [ undef, \%seen, $srch ];
495 if (my $x = $node->message) {
496 my $f = $x->header('X-PI-From');
497 my $d = $x->header('X-PI-Date');
498 if (defined $f && defined $d) {
499 my $mid = $x->header('Message-ID');
500 my $pfx = ' ' x $level;
502 my $s = $x->header('Subject');
503 my $h = $root->[2]->subject_path($s);
504 if ($root->[1]->{$h}) {
507 $root->[1]->{$h} = 1;
508 $s = PublicInbox::Hval->new($s);
511 my $m = PublicInbox::Hval->new_msgid($mid);
512 $f = PublicInbox::Hval->new($f);
513 $d = PublicInbox::Hval->new($d);
514 $m = '../' . $m->as_href . '/';
516 $d = $d->as_html . ' UTC';
517 if (length($s) == 0) {
518 $$dst .= "` <a\nhref=\"$m\">$f @ $d</a>\n";
520 $$dst .= "` <a\nhref=\"$m\">$s</a>\n" .
525 simple_dump($dst, $root, $node->child, $level+1);
526 simple_dump($dst, $root, $node->next, $level);
529 sub thread_followups {
530 my ($dst, $root, $res) = @_;
531 $root->header_set('X-PI-TS', '0');
532 my $msgs = load_results($res);
534 my $th = thread_results($msgs);
535 my $srch = $res->{srch};
536 my $subj = $srch->subject_path($root->header('Subject'));
537 my %seen = ($subj => 1);
538 $root = [ undef, \%seen, $srch ];
539 simple_dump($dst, $root, $_, 0) for $th->rootset;
542 sub thread_html_head {
544 my $s = PublicInbox::Hval->new_oneline($mime->header('Subject'));
546 "<html><head><title>$s</title></head><body>";
550 my ($fh, $git, $state, $node, $level) = @_;
552 if (my $mime = $node->message) {
554 # lazy load the full message from mini_mime:
555 my $path = mid2path(mid_clean($mime->header('Message-ID')));
556 $mime = eval { Email::MIME->new($git->cat_file("HEAD:$path")) };
558 if ($state->{anchor_idx} == 0) {
559 $fh->write(thread_html_head($mime));
561 index_entry($fh, $mime, $level, $state);
564 thread_entry($fh, $git, $state, $node->child, $level + 1);
565 thread_entry($fh, $git, $state, $node->next, $level);
571 [ map { $_->mini_mime } @{delete $res->{msgs}} ];
576 my $ts = eval { str2time($mime->header('Date')) };
577 defined($ts) ? $ts : 0;
582 require PublicInbox::Thread;
583 my $th = PublicInbox::Thread->new(@$msgs);
586 $th->order(*PublicInbox::Thread::sort_ts);
592 my $title = 'Thread does not exist';
593 $cb->([404, ['Content-Type' => 'text/html']])->write(<<EOF);
594 <html><head><title>$title</title></head><body><pre>$title
595 <a href="../../">Return to index</a></pre></body></html>