]> Sergey Matveev's repositories - public-inbox.git/blob - public-inbox-cgi
cgi: /$LISTNAME/ and /$LISTNAME/index.html are equal
[public-inbox.git] / public-inbox-cgi
1 #!/usr/bin/perl -w
2 # Copyright (C) 2014, Eric Wong <normalperson@yhbt.net> and all contributors
3 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
4 #
5 # We focus on the lowest common denominators here:
6 # - targeted at text-only console browsers (lynx, w3m, etc..)
7 # - Only basic HTML, CSS only for line-wrapping <pre> text content for GUIs
8 # - No JavaScript, graphics or icons allowed.
9 # - Must not rely on static content
10 # - UTF-8 is only for user-content, 7-bit US-ASCII for us
11
12 use 5.008;
13 use strict;
14 use warnings;
15 use CGI qw(:cgi :escapeHTML -nosticky); # PSGI/FastCGI/mod_perl compat
16 use Encode qw(decode_utf8);
17 use PublicInbox::Config;
18 use Digest::SHA qw(sha1_hex);
19 our $LISTNAME_RE = qr!\A/([\w\.\-]+)!;
20 our $pi_config;
21 BEGIN {
22         $pi_config = PublicInbox::Config->new;
23         # TODO: detect and reload config as needed
24         if ($ENV{MOD_PERL}) {
25                 CGI->compile;
26         }
27 }
28
29 my $ret = main();
30
31 my ($status, $headers, $body) = @$ret;
32 set_binmode($headers);
33 if (@ARGV && $ARGV[0] eq 'static') {
34         print $body;
35 } else { # CGI
36         print "Status: $status\r\n";
37         while (my ($k, $v) = each %$headers) {
38                 print "$k: $v\r\n";
39         }
40         print "\r\n", $body;
41 }
42
43 # TODO: plack support
44
45 # private functions below
46
47 sub main {
48         my $cgi = CGI->new;
49         my %ctx;
50         if ($cgi->request_method !~ /\AGET|HEAD\z/) {
51                 return r("405 Method Not Allowed");
52         }
53         my $path_info = decode_utf8($ENV{PATH_INFO});
54
55         # top-level indices and feeds
56         if ($path_info eq "/") {
57                 r404();
58         } elsif ($path_info =~ m!$LISTNAME_RE(?:/|/index\.html)?\z!o) {
59                 invalid_list(\%ctx, $1) || get_index(\%ctx, $cgi, 1);
60         } elsif ($path_info =~ m!$LISTNAME_RE/index\.atom\.xml\z!o) {
61                 invalid_list(\%ctx, $1) || get_atom(\%ctx, $cgi, 1);
62         } elsif ($path_info =~ m!$LISTNAME_RE/all\.atom\.xml\z!o) {
63                 invalid_list(\%ctx, $1) || get_atom(\%ctx, $cgi, 0);
64
65         # single-message pages
66         } elsif ($path_info =~ m!$LISTNAME_RE/m/(\S+)\.txt\z!o) {
67                 invalid_list_mid(\%ctx, $1, $2) || get_mid_txt(\%ctx, $cgi);
68         } elsif ($path_info =~ m!$LISTNAME_RE/m/(\S+)\.html\z!o) {
69                 invalid_list_mid(\%ctx, $1, $2) || get_mid_html(\%ctx, $cgi);
70         } elsif ($path_info =~ m!$LISTNAME_RE/m/(\S+)\z!o) {
71                 redirect_mid_html($cgi, $1, $2);
72         } else {
73                 r404();
74         }
75 }
76
77 sub r404 { r("404 Not Found") }
78
79 # simple response for errors
80 sub r { [ $_[0], { 'Content-Type' => 'text/plain' }, '' ] }
81
82 # returns undef if valid, array ref response if invalid
83 sub invalid_list {
84         my ($ctx, $listname) = @_;
85         my $git_dir = $pi_config->get($listname, "mainrepo");
86         if (defined $git_dir) {
87                 $ctx->{git_dir} = $git_dir;
88                 $ctx->{listname} = $listname;
89                 return undef;
90         }
91         r404();
92 }
93
94 # returns undef if valid, array ref response if invalid
95 sub invalid_list_mid {
96         my ($ctx, $listname, $mid) = @_;
97         my $ret = invalid_list($ctx, $listname, $mid) and return $ret;
98         $ctx->{mid} = $mid;
99         undef;
100 }
101
102 sub get_atom {
103         my ($ctx, $cgi, $top) = @_;
104         require PublicInbox::Feed;
105         [ '200 OK', { 'Content-Type' => 'application/xml' },
106           PublicInbox::Feed->generate({
107                         git_dir => $ctx->{git_dir},
108                         listname => $ctx->{listname},
109                         pi_config => $pi_config,
110                         cgi => $cgi,
111                         top => $top,
112                 })
113         ];
114 }
115
116 sub get_index {
117         my ($ctx, $cgi, $top) = @_;
118         require PublicInbox::Feed;
119         [ '200 OK', { 'Content-Type' => 'text/html' },
120           PublicInbox::Feed->generate_html_index({
121                         git_dir => $ctx->{git_dir},
122                         listname => $ctx->{listname},
123                         pi_config => $pi_config,
124                         cgi => $cgi,
125                         top => $top,
126                 })
127         ];
128 }
129
130 sub mid2blob {
131         my ($ctx) = @_;
132         local $ENV{GIT_DIR} = $ctx->{git_dir};
133         my $hex = sha1_hex($ctx->{mid});
134         $hex =~ /\A([a-f0-9]{2})([a-f0-9]{38})\z/i or
135                         die "BUG: not a SHA-1 hex: $hex";
136         my $blob = `git cat-file blob HEAD:$1/$2 2>/dev/null`;
137         $? == 0 ? \$blob : undef;
138 }
139
140 sub get_mid_txt {
141         my ($ctx, $cgi) = @_;
142         my $x = mid2blob($ctx);
143         $x ? [ "200 OK", {'Content-Type' => 'text/plain'}, $$x ] : r404();
144 }
145
146 sub set_binmode {
147         my ($headers) = @_;
148         if ($headers->{'Content-Type'} eq 'text/plain') {
149                 # no way to validate raw messages, mixed encoding is possible.
150                 binmode STDOUT;
151         } else { # strict encoding for HTML and XML
152                 binmode STDOUT, ':encoding(UTF-8)';
153         }
154 }