1 # Copyright (C) 2013-2020 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 # Used for generating Atom feeds for web-accessible mailing list archives.
5 package PublicInbox::Feed;
9 use PublicInbox::WwwAtomStream;
10 use PublicInbox::Smsg; # this loads w/o Search::Xapian
14 shift @{$ctx->{msgs}};
20 my $msgs = $ctx->{msgs} = recent_msgs($ctx);
21 return _no_thread() unless @$msgs;
22 PublicInbox::WwwAtomStream->response($ctx, 200, \&generate_i);
25 sub generate_thread_atom {
27 my $msgs = $ctx->{msgs} = $ctx->{-inbox}->over->get_thread($ctx->{mid});
28 return _no_thread() unless @$msgs;
29 PublicInbox::WwwAtomStream->response($ctx, 200, \&generate_i);
32 sub generate_html_index {
34 # if the 'r' query parameter is given, it is a legacy permalink
35 # which we must continue supporting:
37 my $ibx = $ctx->{-inbox};
38 if ($qp && !$qp->{r} && $ibx->over) {
39 return PublicInbox::View::index_topics($ctx);
42 my $env = $ctx->{env};
43 my $url = $ibx->base_url($env) . 'new.html';
44 my $qs = $env->{QUERY_STRING};
45 $url .= "?$qs" if $qs ne '';
46 [302, [ 'Location', $url, 'Content-Type', 'text/plain'],
47 [ "Redirecting to $url\n" ] ];
52 $ctx->zmore($ctx->html_top) if exists $ctx->{-html_tip};
54 $eml and return PublicInbox::View::eml_entry($ctx, $eml);
55 my $smsg = shift @{$ctx->{msgs}} or
56 $ctx->zmore(PublicInbox::View::pagination_footer(
63 my $msgs = $ctx->{msgs} = recent_msgs($ctx);
65 return [404, ['Content-Type', 'text/plain'],
66 ["No messages, yet\n"] ];
68 $ctx->{-html_tip} = '<pre>';
71 PublicInbox::WwwStream::aresponse($ctx, 200, \&new_html_i);
77 [404, ['Content-Type', 'text/plain'], ["No feed found for thread\n"]];
82 my $ibx = $ctx->{-inbox};
83 my $max = $ibx->{feedmax};
84 return PublicInbox::View::paginate_recent($ctx, $max) if $ibx->over;
86 # only for rare v1 inboxes which aren't indexed at all
89 my $addmsg = qr!^:000000 100644 \S+ (\S+) A\t${hex}{2}/${hex}{38}$!;
90 my $delmsg = qr!^:100644 000000 (\S+) \S+ D\t(${hex}{2}/${hex}{38})$!;
91 my $refhex = qr/(?:HEAD|${hex}{4,40})(?:~[0-9]+)?/;
93 # revision ranges may be specified
95 my $r = $qp->{r} if $qp;
96 if ($r && ($r =~ /\A(?:$refhex\.\.)?$refhex\z/o)) {
100 # get recent messages
101 # we could use git log -z, but, we already know ssoma will not
102 # leave us with filenames with spaces in them..
103 my $log = $ibx->git->popen(qw/log
104 --no-notes --no-color --raw -r
105 --no-abbrev --abbrev-commit/,
106 "--format=%H", $range);
107 my %deleted; # only an optimization at this point
112 while (defined(my $line = <$log>)) {
113 if ($line =~ /$addmsg/o) {
115 next if $deleted{$add}; # optimization-only
117 if (scalar(@oids) >= $max) {
121 } elsif ($line =~ /$delmsg/o) {
128 while (my $line = <$log>) {
129 if ($line =~ /^(${hex}{7,40})/) {
136 $ctx->{next_page} = "r=$last_commit" if $last_commit;
137 [ map { bless {blob => $_ }, 'PublicInbox::Smsg' } @oids ];