]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Feed.pm
view: introduce WwwStream interface
[public-inbox.git] / lib / PublicInbox / Feed.pm
index d433726fb8d624506fa423bb3b2fd6f589566fa7..045e495fae9ed8acfe133743451f126014dd3323 100644 (file)
@@ -5,13 +5,13 @@
 package PublicInbox::Feed;
 use strict;
 use warnings;
-use Email::Address;
 use Email::MIME;
 use Date::Parse qw(strptime);
 use PublicInbox::Hval qw/ascii_html/;
 use PublicInbox::Git;
 use PublicInbox::View;
 use PublicInbox::MID qw/mid_clean mid2path/;
+use PublicInbox::Address;
 use POSIX qw/strftime/;
 use constant {
        DATEFMT => '%Y-%m-%dT%H:%M:%SZ', # Atom standard
@@ -61,9 +61,9 @@ sub atom_header {
 
 sub emit_atom {
        my ($cb, $ctx) = @_;
+       my $feed_opts = get_feedopts($ctx);
        my $fh = $cb->([ 200, ['Content-Type' => 'application/atom+xml']]);
        my $max = $ctx->{max} || MAX_PER_PAGE;
-       my $feed_opts = get_feedopts($ctx);
        my $x = atom_header($feed_opts);
        my $git = $ctx->{git} ||= PublicInbox::Git->new($ctx->{git_dir});
        each_recent_blob($ctx, sub {
@@ -86,7 +86,6 @@ sub _no_thread {
 
 sub end_feed {
        my ($fh) = @_;
-       Email::Address->purge_cache;
        $fh->write('</feed>');
        $fh->close;
 }
@@ -95,8 +94,8 @@ sub emit_atom_thread {
        my ($cb, $ctx) = @_;
        my $res = $ctx->{srch}->get_thread($ctx->{mid});
        return _no_thread($cb) unless $res->{total};
-       my $fh = $cb->([200, ['Content-Type' => 'application/atom+xml']]);
        my $feed_opts = get_feedopts($ctx);
+       my $fh = $cb->([200, ['Content-Type' => 'application/atom+xml']]);
 
        my $html_url = $feed_opts->{atomurl} = $ctx->{self_url};
        $html_url =~ s!/t\.atom\z!/!;
@@ -110,20 +109,11 @@ sub emit_atom_thread {
        end_feed($fh);
 }
 
-sub emit_html_index {
-       my ($res, $ctx) = @_;
-       my $fh = $res->([200,['Content-Type'=>'text/html; charset=UTF-8']]);
-
-       my $max = $ctx->{max} || MAX_PER_PAGE;
-       my $feed_opts = get_feedopts($ctx);
+sub _html_index_top {
+       my ($feed_opts, $srch) = @_;
 
        my $title = ascii_html($feed_opts->{description} || '');
-       my ($footer, $param, $last);
-       my $state = { ctx => $ctx, seen => {}, anchor_idx => 0, fh => $fh };
-       my $srch = $ctx->{srch};
-
        my $top = "<b>$title</b> (<a\nhref=\"new.atom\">Atom feed</a>)";
-
        if ($srch) {
                $top = qq{<form\naction=""><pre>$top} .
                          qq{ <input\nname=q\ntype=text />} .
@@ -133,16 +123,29 @@ sub emit_html_index {
                $top = '<pre>' . $top . "\n";
        }
 
-       $fh->write("<html><head><title>$title</title>" .
-                  "<link\nrel=alternate\ntitle=\"Atom feed\"\n".
-                  "href=\"new.atom\"\ntype=\"application/atom+xml\"/>" .
-                  PublicInbox::Hval::STYLE .
-                  "</head><body>$top");
+       "<html><head><title>$title</title>" .
+               "<link\nrel=alternate\ntitle=\"Atom feed\"\n".
+               "href=\"new.atom\"\ntype=\"application/atom+xml\"/>" .
+               PublicInbox::Hval::STYLE .
+               "</head><body>$top";
+}
+
+sub emit_html_index {
+       my ($res, $ctx) = @_;
+       my $feed_opts = get_feedopts($ctx);
+       my $fh = $res->([200,['Content-Type'=>'text/html; charset=UTF-8']]);
+
+       my $max = $ctx->{max} || MAX_PER_PAGE;
+
+       my ($footer, $param, $last);
+       my $state = { ctx => $ctx, seen => {}, anchor_idx => 0, fh => $fh };
+       my $srch = $ctx->{srch};
+       $fh->write(_html_index_top($feed_opts, $srch));
 
        # if the 'r' query parameter is given, it is a legacy permalink
        # which we must continue supporting:
-       my $cgi = $ctx->{cgi};
-       if ($cgi && !$cgi->param('r') && $srch) {
+       my $qp = $ctx->{qp};
+       if ($qp && !$qp->{r} && $srch) {
                $state->{srch} = $srch;
                $last = PublicInbox::View::emit_index_topics($state);
                $param = 'o';
@@ -150,7 +153,7 @@ sub emit_html_index {
                $last = emit_index_nosrch($ctx, $state);
                $param = 'r';
        }
-       $footer = nav_footer($cgi, $last, $feed_opts, $state, $param);
+       $footer = nav_footer($ctx, $last, $feed_opts, $state, $param);
        if ($footer) {
                my $list_footer = $ctx->{footer};
                $footer .= "\n\n" . $list_footer if $list_footer;
@@ -171,14 +174,13 @@ sub emit_index_nosrch {
                PublicInbox::View::index_entry($mime, 0, $state);
                1;
        });
-       Email::Address->purge_cache;
        $last;
 }
 
 sub nav_footer {
-       my ($cgi, $last, $feed_opts, $state, $param) = @_;
-       $cgi or return '';
-       my $old_r = $cgi->param($param);
+       my ($ctx, $last, $feed_opts, $state, $param) = @_;
+       my $qp = $ctx->{qp} or return '';
+       my $old_r = $qp->{$param};
        my $head = '    ';
        my $next = '    ';
        my $first = $state->{first};
@@ -188,7 +190,7 @@ sub nav_footer {
                $next = qq!<a\nhref="?$param=$last"\nrel=next>next</a>!;
        }
        if ($old_r) {
-               $head = $cgi->path_info;
+               $head = $ctx->{env}->{PATH_INFO};
                $head = qq!<a\nhref="$head">head</a>!;
        }
        my $atom = "<a\nhref=\"$feed_opts->{atomurl}\">Atom feed</a>";
@@ -202,11 +204,11 @@ sub each_recent_blob {
        my $addmsg = qr!^:000000 100644 \S+ \S+ A\t(${hex}{2}/${hex}{38})$!;
        my $delmsg = qr!^:100644 000000 \S+ \S+ D\t(${hex}{2}/${hex}{38})$!;
        my $refhex = qr/(?:HEAD|${hex}{4,40})(?:~\d+)?/;
-       my $cgi = $ctx->{cgi};
+       my $qp = $ctx->{qp};
 
        # revision ranges may be specified
        my $range = 'HEAD';
-       my $r = $cgi->param('r') if $cgi;
+       my $r = $qp->{r} if $qp;
        if ($r && ($r =~ /\A(?:$refhex\.\.)?$refhex\z/o)) {
                $range = $r;
        }
@@ -224,6 +226,7 @@ sub each_recent_blob {
        my $nr = 0;
        my ($cur_commit, $first_commit, $last_commit);
        my ($ts, $subj, $u);
+       local $/ = "\n";
        while (defined(my $line = <$log>)) {
                if ($line =~ /$addmsg/o) {
                        my $add = $1;
@@ -244,6 +247,7 @@ sub each_recent_blob {
        }
 
        if ($last) {
+               local $/ = "\n";
                while (my $line = <$log>) {
                        if ($line =~ /^(${hex}{7,40})/o) {
                                $last_commit = $1;
@@ -260,17 +264,17 @@ sub each_recent_blob {
 sub get_feedopts {
        my ($ctx) = @_;
        my $pi_config = $ctx->{pi_config};
-       my $listname = $ctx->{listname};
+       my $inbox = $ctx->{inbox};
+       my $obj = $ctx->{-inbox};
        my $cgi = $ctx->{cgi};
-       my %rv;
-       if (open my $fh, '<', "$ctx->{git_dir}/description") {
-               chomp($rv{description} = <$fh>);
-       } else {
-               $rv{description} = '($GIT_DIR/description missing)';
-       }
-
-       if ($pi_config && defined $listname && $listname ne '') {
-               my $addr = $pi_config->get($listname, 'address') || "";
+       my %rv = ( description => $obj ? $obj->description : 'FIXME' );
+
+       if ($obj) {
+               $rv{address} = $obj->{address};
+               $rv{id_addr} = $obj->{-primary_address};
+       } elsif ($pi_config && defined $inbox && $inbox ne '') {
+               # TODO: remove
+               my $addr = $pi_config->get($inbox, 'address') || "";
                $rv{address} = $addr;
                $addr = $addr->[0] if ref($addr);
                $rv{id_addr} = $addr;
@@ -278,19 +282,19 @@ sub get_feedopts {
        $rv{id_addr} ||= 'public-inbox@example.com';
 
        my $url_base;
-       if ($cgi) {
-               $url_base = $cgi->base->as_string . $listname;
+       if ($obj) {
+               $url_base = $obj->base_url($cgi); # CGI may be undef
                if (my $mid = $ctx->{mid}) { # per-thread feed:
-                       $rv{atomurl} = "$url_base/$mid/t.atom";
+                       $rv{atomurl} = "$url_base$mid/t.atom";
                } else {
-                       $rv{atomurl} = "$url_base/new.atom";
+                       $rv{atomurl} = $url_base."new.atom";
                }
        } else {
-               $url_base = "http://example.com";
-               $rv{atomurl} = "$url_base/new.atom";
+               $url_base = 'http://example.com/';
+               $rv{atomurl} = $url_base.'new.atom';
        }
-       $rv{url} ||= "$url_base/";
-       $rv{midurl} = "$url_base/";
+       $rv{url} ||= $url_base;
+       $rv{midurl} = $url_base;
 
        \%rv;
 }
@@ -315,11 +319,11 @@ sub add_to_feed {
        my $mid = $header_obj->header_raw('Message-ID');
        defined $mid or return 0;
        $mid = PublicInbox::Hval->new_msgid($mid);
-       my $href = $mid->as_href;
-       my $content = PublicInbox::View->feed_entry($mime);
-       defined($content) or return 0;
-       $mime = undef;
+       my $href = $midurl.$mid->as_href;
 
+       my $content = qq(<pre\nstyle="white-space:pre-wrap">) .
+               PublicInbox::View::multipart_text_as_html($mime, $href) .
+               '</pre>';
        my $date = $header_obj->header('Date');
        my $updated = feed_updated($date);
 
@@ -328,9 +332,9 @@ sub add_to_feed {
        $title = title_tag($title);
 
        my $from = $header_obj->header('From') or return 0;
-       my @from = Email::Address->parse($from) or return 0;
-       my $name = ascii_html($from[0]->name);
-       my $email = $from[0]->address;
+       my ($email) = PublicInbox::Address::emails($from);
+       my $name = PublicInbox::Address::from_name($from);
+       $name = ascii_html($name);
        $email = ascii_html($email);
 
        if (delete $feed_opts->{emit_header}) {
@@ -346,7 +350,7 @@ sub add_to_feed {
        my $h = '[a-f0-9]';
        my (@uuid5) = ($add =~ m!\A($h{8})($h{4})($h{4})($h{4})($h{12})!o);
        my $id = 'urn:uuid:' . join('-', @uuid5);
-       $fh->write(qq!</div></content><link\nhref="$midurl$href/"/>!.
+       $fh->write(qq!</div></content><link\nhref="$href/"/>!.
                   "<id>$id</id></entry>");
        1;
 }