]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/WWW.pm
Merge remote-tracking branch 'origin/search'
[public-inbox.git] / lib / PublicInbox / WWW.pm
index 898f42a8c56379ab48bfde3ad34ca11f97a32bd8..bbd438a2d939bc1d42d9fbbcc83b1634ec74d0e8 100644 (file)
@@ -13,6 +13,8 @@ use strict;
 use warnings;
 use PublicInbox::Config;
 use URI::Escape qw(uri_escape_utf8 uri_unescape);
+use constant SSOMA_URL => 'http://ssoma.public-inbox.org/';
+use constant PI_URL => 'http://public-inbox.org/';
 our $LISTNAME_RE = qr!\A/([\w\.\-]+)!;
 our $pi_config;
 BEGIN {
@@ -47,9 +49,20 @@ sub run {
        } elsif ($path_info =~ m!$LISTNAME_RE/f/(\S+)\.html\z!o) {
                invalid_list_mid(\%ctx, $1, $2) || get_full_html(\%ctx, $cgi);
 
+       # thread display
+       } elsif ($path_info =~ m!$LISTNAME_RE/t/(\S+)\.html\z!o) {
+               invalid_list_mid(\%ctx, $1, $2) || get_thread(\%ctx, $cgi);
+
+       # subject_path display
+       } elsif ($path_info =~ m!$LISTNAME_RE/s/(\S+)\.html\z!o) {
+               my $sp = $2;
+               invalid_list(\%ctx, $1) || get_subject_path(\%ctx, $cgi, $sp);
+
        # convenience redirects, order matters
-       } elsif ($path_info =~ m!$LISTNAME_RE/(?:m|f)/(\S+)\z!o) {
-               invalid_list_mid(\%ctx, $1, $2) || redirect_mid(\%ctx, $cgi);
+       } elsif ($path_info =~ m!$LISTNAME_RE/(m|f|t|s)/(\S+)\z!o) {
+               my $pfx = $2;
+               invalid_list_mid(\%ctx, $1, $3) ||
+                       redirect_mid(\%ctx, $cgi, $2);
 
        } else {
                r404();
@@ -119,6 +132,7 @@ sub get_index {
                        listname => $ctx->{listname},
                        pi_config => $pi_config,
                        cgi => $cgi,
+                       footer => footer($ctx),
                        top => $top,
                }) ]
        ];
@@ -127,13 +141,10 @@ sub get_index {
 # just returns a string ref for the blob in the current ctx
 sub mid2blob {
        my ($ctx) = @_;
-       require Digest::SHA;
-       my $hex = Digest::SHA::sha1_hex($ctx->{mid});
-       $hex =~ /\A([a-f0-9]{2})([a-f0-9]{38})\z/i or
-                       die "BUG: not a SHA-1 hex: $hex";
-
+       require PublicInbox::MID;
+       my $path = PublicInbox::MID::mid2path($ctx->{mid});
        my @cmd = ('git', "--git-dir=$ctx->{git_dir}",
-                       qw(cat-file blob), "HEAD:$1/$2");
+                       qw(cat-file blob), "HEAD:$path");
        my $cmd = join(' ', @cmd);
        my $pid = open my $fh, '-|';
        defined $pid or die "fork failed: $!\n";
@@ -161,12 +172,13 @@ sub get_mid_html {
        return r404() unless $x;
 
        require PublicInbox::View;
-       my $mid_href = PublicInbox::Hval::ascii_html(
-                                               uri_escape_utf8($ctx->{mid}));
-       my $pfx = "../f/$mid_href.html";
+       my $pfx = msg_pfx($ctx);
+       my $foot = footer($ctx);
        require Email::MIME;
+       my $mime = Email::MIME->new($x);
+       my $srch = searcher($ctx);
        [ 200, [ 'Content-Type' => 'text/html; charset=UTF-8' ],
-               [ PublicInbox::View->msg_html(Email::MIME->new($x), $pfx) ] ];
+         [ PublicInbox::View->msg_html($mime, $pfx, $foot, $srch) ] ];
 }
 
 # /$LISTNAME/f/$MESSAGE_ID.html                   -> HTML content (fullquotes)
@@ -175,9 +187,37 @@ sub get_full_html {
        my $x = mid2blob($ctx);
        return r404() unless $x;
        require PublicInbox::View;
+       my $foot = footer($ctx);
        require Email::MIME;
-       [ 200, [ 'Content-Type' => 'text/html' ],
-               [ PublicInbox::View->msg_html(Email::MIME->new($x))] ];
+       my $mime = Email::MIME->new($x);
+       my $srch = searcher($ctx);
+       [ 200, [ 'Content-Type' => 'text/html; charset=UTF-8' ],
+         [ PublicInbox::View->msg_html($mime, undef, $foot, $srch)] ];
+}
+
+# /$LISTNAME/t/$MESSAGE_ID.html
+sub get_thread {
+       my ($ctx, $cgi) = @_;
+       my $srch = searcher($ctx) or return need_search($ctx);
+       require PublicInbox::View;
+       my $foot = footer($ctx);
+       my $body = PublicInbox::View->thread_html($ctx, $foot, $srch) or
+               return r404();
+       [ 200, [ 'Content-Type' => 'text/html; charset=UTF-8' ],
+         [ $body ] ];
+}
+
+# /$LISTNAME/s/$SUBJECT_PATH.html
+sub get_subject_path {
+       my ($ctx, $cgi, $sp) = @_;
+       $ctx->{subject_path} = $sp;
+       my $srch = searcher($ctx) or return need_search($ctx);
+       require PublicInbox::View;
+       my $foot = footer($ctx);
+       my $body = PublicInbox::View->subject_path_html($ctx, $foot, $srch) or
+               return r404();
+       [ 200, [ 'Content-Type' => 'text/html; charset=UTF-8' ],
+         [ $body ] ];
 }
 
 sub self_url {
@@ -191,10 +231,13 @@ sub redirect_list_index {
 }
 
 sub redirect_mid {
-       my ($ctx, $cgi) = @_;
+       my ($ctx, $cgi, $pfx) = @_;
        my $url = self_url($cgi);
-       $url =~ s!/f/!/m/!;
-       do_redirect($url . '.html');
+       my $anchor = '';
+       if (lc($pfx) eq 't') {
+               $anchor = '#u'; # <u id='#u'> is used to highlight in View.pm
+       }
+       do_redirect($url . ".html$anchor");
 }
 
 sub do_redirect {
@@ -205,4 +248,95 @@ sub do_redirect {
        ]
 }
 
+sub ctx_get {
+       my ($ctx, $key) = @_;
+       my $val = $ctx->{$key};
+       (defined $val && length $val) or die "BUG: bad ctx, $key unusable\n";
+       $val;
+}
+
+sub try_cat {
+       my ($path) = @_;
+       my $rv;
+       if (open(my $fh, '<', $path)) {
+               local $/;
+               $rv = <$fh>;
+               close $fh;
+       }
+       $rv;
+}
+
+sub footer {
+       my ($ctx) = @_;
+       return '' unless $ctx;
+       my $git_dir = ctx_get($ctx, 'git_dir');
+
+       # favor user-supplied footer
+       my $footer = try_cat("$git_dir/public-inbox/footer.html");
+       if (defined $footer) {
+               chomp $footer;
+               return $footer;
+       }
+
+       # auto-generate a footer
+       my $listname = ctx_get($ctx, 'listname');
+       my $desc = try_cat("$git_dir/description");
+       $desc = '$GIT_DIR/description missing' unless defined $desc;
+       chomp $desc;
+
+       my $urls = try_cat("$git_dir/cloneurl");
+       my @urls = split(/\r?\n/, $urls || '');
+       my $nurls = scalar @urls;
+       if ($nurls == 0) {
+               $urls = '($GIT_DIR/cloneurl missing)';
+       } elsif ($nurls == 1) {
+               $urls = "git URL for <a\nhref=\"" . SSOMA_URL .
+                       '">ssoma</a>: ' . $urls[0];
+       } else {
+               $urls = "git URLs for <a\nhref=\"" . SSOMA_URL .
+                       "\">ssoma</a>:\n" . join("\n", map { "\t$_" } @urls);
+       }
+
+       my $addr = $pi_config->get($listname, 'address');
+       if (ref($addr) eq 'ARRAY') {
+               $addr = $addr->[0]; # first address is primary
+       }
+
+       $addr = "<a\nhref=\"mailto:$addr\">$addr</a>";
+       $desc =  $desc;
+       join("\n",
+               '- ' . $desc,
+               "A <a\nhref=\"" . PI_URL .  '">public-inbox</a>, ' .
+                       'anybody may post in plain-text (not HTML):',
+               $addr,
+               $urls
+       );
+}
+
+# search support is optional, returns undef if Xapian is not installed
+# or not configured for the given GIT_DIR
+sub searcher {
+       my ($ctx) = @_;
+       eval {
+               require PublicInbox::Search;
+               PublicInbox::Search->new($ctx->{git_dir});
+       };
+}
+
+sub need_search {
+       my ($ctx) = @_;
+       my $msg = <<EOF;
+<html><head><title>Search not available for this
+public-inbox</title><body><pre>Search is not available for this public-inbox
+<a href="../">Return to index</a></pre></body></html>
+EOF
+       [ 501, [ 'Content-Type' => 'text/html; charset=UTF-8' ], [ $msg ] ];
+}
+
+sub msg_pfx {
+       my ($ctx) = @_;
+       my $href = PublicInbox::Hval::ascii_html(uri_escape_utf8($ctx->{mid}));
+       "../f/$href.html";
+}
+
 1;