]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/Feed.pm
www: more descriptive pagination
[public-inbox.git] / lib / PublicInbox / Feed.pm
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>
3 #
4 # Used for generating Atom feeds for web-accessible mailing list archives.
5 package PublicInbox::Feed;
6 use strict;
7 use warnings;
8 use PublicInbox::View;
9 use PublicInbox::WwwAtomStream;
10 use PublicInbox::Smsg; # this loads w/o Search::Xapian
11
12 sub generate_i {
13         my ($ctx) = @_;
14         shift @{$ctx->{msgs}};
15 }
16
17 # main function
18 sub generate {
19         my ($ctx) = @_;
20         my $msgs = $ctx->{msgs} = recent_msgs($ctx);
21         return _no_thread() unless @$msgs;
22         PublicInbox::WwwAtomStream->response($ctx, 200, \&generate_i);
23 }
24
25 sub generate_thread_atom {
26         my ($ctx) = @_;
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);
30 }
31
32 sub generate_html_index {
33         my ($ctx) = @_;
34         # if the 'r' query parameter is given, it is a legacy permalink
35         # which we must continue supporting:
36         my $qp = $ctx->{qp};
37         my $ibx = $ctx->{-inbox};
38         if ($qp && !$qp->{r} && $ibx->over) {
39                 return PublicInbox::View::index_topics($ctx);
40         }
41
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" ] ];
48 }
49
50 sub new_html_i {
51         my ($ctx, $eml) = @_;
52         $ctx->zmore($ctx->html_top) if exists $ctx->{-html_tip};
53
54         $eml and return PublicInbox::View::eml_entry($ctx, $eml);
55         my $smsg = shift @{$ctx->{msgs}} or
56                 $ctx->zmore(PublicInbox::View::pagination_footer(
57                                                 $ctx, './new.html'));
58         $smsg;
59 }
60
61 sub new_html {
62         my ($ctx) = @_;
63         my $msgs = $ctx->{msgs} = recent_msgs($ctx);
64         if (!@$msgs) {
65                 return [404, ['Content-Type', 'text/plain'],
66                         ["No messages, yet\n"] ];
67         }
68         $ctx->{-html_tip} = '<pre>';
69         $ctx->{-upfx} = '';
70         $ctx->{-hr} = 1;
71         PublicInbox::WwwStream::aresponse($ctx, 200, \&new_html_i);
72 }
73
74 # private subs
75
76 sub _no_thread () {
77         [404, ['Content-Type', 'text/plain'], ["No feed found for thread\n"]];
78 }
79
80 sub recent_msgs {
81         my ($ctx) = @_;
82         my $ibx = $ctx->{-inbox};
83         my $max = $ibx->{feedmax};
84         return PublicInbox::View::paginate_recent($ctx, $max) if $ibx->over;
85
86         # only for rare v1 inboxes which aren't indexed at all
87         my $qp = $ctx->{qp};
88         my $hex = '[a-f0-9]';
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]+)?/;
92
93         # revision ranges may be specified
94         my $range = 'HEAD';
95         my $r = $qp->{r} if $qp;
96         if ($r && ($r =~ /\A(?:$refhex\.\.)?$refhex\z/o)) {
97                 $range = $r;
98         }
99
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
108         my $last;
109         my $last_commit;
110         local $/ = "\n";
111         my @oids;
112         while (defined(my $line = <$log>)) {
113                 if ($line =~ /$addmsg/o) {
114                         my $add = $1;
115                         next if $deleted{$add}; # optimization-only
116                         push @oids, $add;
117                         if (scalar(@oids) >= $max) {
118                                 $last = 1;
119                                 last;
120                         }
121                 } elsif ($line =~ /$delmsg/o) {
122                         $deleted{$1} = 1;
123                 }
124         }
125
126         if ($last) {
127                 local $/ = "\n";
128                 while (my $line = <$log>) {
129                         if ($line =~ /^(${hex}{7,40})/) {
130                                 $last_commit = $1;
131                                 last;
132                         }
133                 }
134         }
135
136         $last_commit and
137                 $ctx->{next_page} = qq[<a\nhref="?r=$last_commit"\nrel=next>] .
138                                         'next (older)</a>';
139
140         [ map { bless {blob => $_ }, 'PublicInbox::Smsg' } @oids ];
141 }
142
143 1;